:root {
  --bg: #f6f4ff;
  --paper: #ffffff;
  --ink: #241a35;
  --muted: #5d4d74;
  --line: #d8cff6;
  --accent: #6f5bff;
  --accent-soft: #eee9ff;
  --accent-2: #ff67b3;
  --u-cyan: #69e7ff;
  --u-mint: #84ffcc;
  --u-violet: #b58cff;
  --u-pink: #ff8fd5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at -10% -20%, #ffd5f1 0%, transparent 58%),
    radial-gradient(1100px 650px at 120% 10%, #c8f6ff 0%, transparent 56%),
    radial-gradient(900px 520px at 40% 115%, #d9d3ff 0%, transparent 60%),
    var(--bg);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  padding: 28px clamp(16px, 4vw, 48px) 36px;
  position: relative;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.26;
}

.hero {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px) clamp(16px, 3vw, 30px);
  border: 2px solid #e7dfff;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 255, 0.96)),
    linear-gradient(120deg, rgba(255, 143, 213, 0.14), rgba(105, 231, 255, 0.18));
  box-shadow: 0 18px 44px rgba(111, 91, 255, 0.16);
  transform: translateY(10px);
  opacity: 0;
  animation: reveal 540ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.kicker {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a3fd9;
  font-weight: 700;
  font-size: 0.78rem;
}

h1 {
  margin: 8px 0 12px;
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(130deg, #6f5bff 10%, #ff67b3 52%, #69e7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  color: #5f4d79;
  max-width: 65ch;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

main {
  max-width: 920px;
  margin: 24px auto 0;
}

.section-head {
  margin: 16px 2px 10px;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tool-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tool-card {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 255, 0.98));
  box-shadow: 0 12px 30px rgba(113, 86, 173, 0.14);
  display: grid;
  gap: 10px;
  transform: translateY(12px);
  opacity: 0;
  animation: reveal 500ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.tool-card:nth-child(2) {
  animation-delay: 60ms;
}

.tool-card:nth-child(3) {
  animation-delay: 120ms;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--u-violet), var(--u-pink), var(--u-cyan));
  box-shadow: 0 0 0 3px #efe8ff;
}

.tool-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.desc {
  margin: 0;
  color: #614f7a;
  font-size: 0.94rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  font-size: 0.76rem;
  border: 1px solid #dbcff9;
  border-radius: 999px;
  padding: 2px 9px;
  background: #faf7ff;
}

.launch {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  min-height: 40px;
  padding: 0 14px;
  background: linear-gradient(135deg, #6f5bff, #ff67b3 60%, #69e7ff);
  transition: transform 160ms ease, filter 160ms ease;
}

.launch:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
}

.launch.soon {
  background: linear-gradient(135deg, #998bb8, #7e71a4);
  pointer-events: none;
  opacity: 0.9;
}

.footer {
  max-width: 920px;
  margin: 20px auto 0;
  padding: 8px 2px;
  display: flex;
  justify-content: space-between;
  color: #665580;
  font-size: 0.85rem;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 18px;
  }

  .hero {
    border-radius: 18px;
  }

  .tool-card {
    border-radius: 14px;
  }
}
