:root {
  color-scheme: dark;
  --bg: #16051c;
  --panel: rgb(46 16 53 / 0.82);
  --line: rgb(255 255 255 / 0.12);
  --text: #fff7fb;
  --muted: #f9a8d4;
  --accent: #f472b6;
  --accent-2: #8b5cf6;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgb(244 114 182 / 0.2), transparent 20%),
    radial-gradient(circle at 100% 12%, rgb(139 92 246 / 0.18), transparent 18%),
    linear-gradient(180deg, #15041b 0%, #0d0716 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.topbar, main { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 32px; height: auto; }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.hero { display: grid; grid-template-columns: 1fr 420px; gap: 44px; align-items: center; padding: 40px 0 72px; }
.eyebrow { margin: 0 0 14px; color: #fbcfe8; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.hero h1, .section-heading h2, .cta h2 { margin: 0; font-family: "Outfit", "Space Grotesk", sans-serif; font-size: clamp(48px, 8vw, 92px); line-height: 0.92; }
.hero p, .feature-card p, .level-card p { color: #f5d0fe; font-size: 18px; line-height: 1.78; }
.actions { margin-top: 28px; }
.primary-button {
  display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 22px;
  background: linear-gradient(135deg, #fff7fb 0%, #f472b6 100%); color: #2d0d25; font-weight: 700;
}
.secondary-button {
  display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 22px;
  border: 1px solid var(--line); background: rgb(255 255 255 / 0.06); color: var(--text); font-weight: 700;
}
.board-card, .level-card, .feature-card, .cta { border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(12px); }
.board-card {
  min-height: 460px; padding: 26px; border-radius: 34px;
  background:
    radial-gradient(circle at top, rgb(250 204 21 / 0.14), transparent 16%),
    linear-gradient(180deg, #30103b 0%, #1a0b24 100%);
}
.app-icon { width: 74px; height: 74px; border-radius: 22px; object-fit: cover; box-shadow: 0 18px 38px rgb(0 0 0 / 0.28); }
.memory-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
}
.memory-grid span {
  display: grid; min-height: 72px; place-items: center; border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.04)); font-size: 30px;
}
.section-block, .cta { padding: 44px 0 82px; }
.section-heading { margin-bottom: 28px; }
.section-heading h2, .cta h2 { font-size: clamp(38px, 6vw, 68px); }
.level-grid, .feature-row { display: grid; gap: 18px; }
.level-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.level-card, .feature-card { padding: 26px; border-radius: 28px; }
.level-card span, .feature-card h3 { display: block; margin: 0 0 14px; font-size: 22px; font-weight: 700; }
.level-card span { color: #fbcfe8; }
.cta { padding: 40px; border-radius: 34px; text-align: center; }
.cta h2 { margin-bottom: 22px; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (max-width: 960px) {
  .hero, .level-grid, .feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar, main { width: min(100%, calc(100% - 32px)); }
  .topbar { flex-direction: column; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; }
  .level-card, .feature-card, .cta { padding: 24px; border-radius: 24px; }
}
