/* Egg Academy — purple-forward base + warm accents (green/gold) */
:root {
  /* Surfaces (lavender-tinted neutrals — purple reads as the “paper”) */
  --surface-page: #f6f3fc;
  --surface-raised: #ffffff;
  --surface-beige: #ede8f4;
  --surface-lavender: #e8e0fc;
  --surface-mint: #edf0fc;

  /* Brand chroma */
  --leaf-900: #0d3d2a;
  --leaf-700: #158056;
  --leaf-500: #1f9d6a;
  --leaf-300: #34d399;
  --leaf-mint: #a7f3d0;
  --purple-950: #2d1a4d;
  --purple-800: #5b21b6;
  --purple-700: #5529b4;
  --purple-600: #6d28d9;
  --purple-500: #7c3aed;
  --purple-400: #a78bfa;
  --purple-200: #e9d5ff;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --yolk: var(--gold);

  /* Legacy names → light system (keeps shared selectors working) */
  --egg-void: var(--surface-page);
  --egg-deep: var(--surface-beige);
  --egg-panel: var(--surface-raised);
  --egg-panel-2: var(--surface-beige);
  --egg-cream: #f7f3eb;
  --egg-shell: #ebe4d8;
  --egg-brown: #6b6578;
  --egg-walnut: #4a4458;

  --void: var(--surface-page);
  --void-2: var(--surface-beige);
  --panel: var(--surface-raised);
  --panel-2: var(--surface-beige);
  --stroke: #c9bddb;
  --stroke-hot: var(--purple-600);
  --border-strong: rgba(109, 40, 217, 0.18);
  --ink: #1e1633;
  --text: var(--ink);
  --text-dim: #5c5678;
  --lime: var(--leaf-500);
  --lime-dim: var(--leaf-700);
  --hot: var(--purple-600);
  --cyan: var(--leaf-mint);
  --violet: var(--purple-400);

  /* Type: Bakbak One (brand / landing primary) + DM Sans (non-landing body) + IBM Plex Mono (labels) */
  --font-display: "Bakbak One", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  /* Condensed poster / “tactical UI” headlines (Valorant-adjacent), landing only */
  --font-valorant: "Teko", "Bahnschrift", "Arial Narrow", system-ui, sans-serif;

  /* Landing “hard graphic” panels — border + offset shadow, same solid color (see STYLEGUIDE.md) */
  --eg-ink: #1e1633;
  --eg-leaf: #1f9d6a;
  --eg-purple: #6d28d9;
  --eg-gold: #c9a227;
  --eg-mint: #34d399;
  --eg-cream: #fef3c7;
  --eg-w: 4px;
  --eg-shift: 14px;
  --eg-w-tight: 3px;
  --eg-shift-tight: 9px;
  /* Horizontal inset for .shell (nav, footer, main columns) — scales with viewport */
  --shell-gutter: clamp(1.5rem, 5.5vw, 3rem);
  --shell: min(1140px, calc(100% - (2 * var(--shell-gutter))));
  --header-h: 76px;
  --radius-chunky: 18px;
  /* Buttons: ring + solid offset drop (same hue as border; offset kept modest vs old 10px block) */
  --shadow-pop: 0 0 0 2px var(--border-strong), 4px 4px 0 var(--purple-800);
  --shadow-pop-sm: 0 0 0 2px rgba(30, 22, 51, 0.1), 3px 3px 0 var(--purple-800);
  --shadow-soft: 0 8px 32px rgba(30, 22, 51, 0.06);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.arcade {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
}

body.arcade::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(109, 40, 217, 0.038) 3px,
      rgba(109, 40, 217, 0.038) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(91, 33, 182, 0.028) 3px,
      rgba(91, 33, 182, 0.028) 4px
    );
}

/* Exclude header so `position: sticky` on .site-header is not overridden (higher-specificity
   child selector would win). Exclude skip-link so it keeps `position: absolute`. */
body.arcade
  > *:not(.motion-field):not(.motion-noise):not(.site-header):not(.skip-link):not(.header-float-ui) {
  position: relative;
  z-index: 1;
}

/* Bakbak One is a single-weight display face — keep at 400 everywhere it’s used */
body.arcade .skip-link,
body.arcade .logo,
body.arcade .nav-list a,
body.arcade .btn,
body.arcade .section-head h2,
body.arcade .feature-card h3,
body.arcade .split-copy h2,
body.arcade .rarity,
body.arcade .price-card h3,
body.arcade .price-tag,
body.arcade .price-tag strong,
body.arcade .price-badge,
body.arcade .blog-card h3,
body.arcade .faq-item summary,
body.arcade .cta-inner h2,
body.arcade .parents-title,
body.arcade .parents-h2,
body.arcade .progress-step h3 {
  font-weight: 400;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--leaf-300);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-pop-sm);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.6s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.feature-grid .feature-card:nth-child(1) {
  transition-delay: 0ms;
}
.feature-grid .feature-card:nth-child(2) {
  transition-delay: 0.06s;
}
.feature-grid .feature-card:nth-child(3) {
  transition-delay: 0.12s;
}
.feature-grid .feature-card:nth-child(4) {
  transition-delay: 0.18s;
}
.feature-grid .feature-card:nth-child(5) {
  transition-delay: 0.24s;
}
.feature-grid .feature-card:nth-child(6) {
  transition-delay: 0.3s;
}

.blog-grid .blog-card:nth-child(1) {
  transition-delay: 0ms;
}
.blog-grid .blog-card:nth-child(2) {
  transition-delay: 0.08s;
}
.blog-grid .blog-card:nth-child(3) {
  transition-delay: 0.16s;
}

.faq .faq-item:nth-child(1) {
  transition-delay: 0ms;
}
.faq .faq-item:nth-child(2) {
  transition-delay: 0.05s;
}
.faq .faq-item:nth-child(3) {
  transition-delay: 0.1s;
}
.faq .faq-item:nth-child(4) {
  transition-delay: 0.15s;
}

.pricing-grid .price-card:nth-child(1) {
  transition-delay: 0ms;
}
.pricing-grid .price-card:nth-child(2) {
  transition-delay: 0.1s;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--stroke);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Do not set width: 100% here — it overrides .shell and pins nav to the viewport edges */
  max-width: 100%;
  padding-block: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  text-decoration: none;
  color: var(--purple-600);
}

.logo-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(109, 40, 217, 0.2));
}

.logo--footer .logo-mark {
  width: 32px;
  height: 32px;
}

.nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.nav-list a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-list a:hover {
  color: var(--ink);
  background: var(--surface-lavender);
  border-color: transparent;
  text-decoration: none;
}

.nav-cta-item {
  display: none;
  list-style: none;
}

.nav-cta {
  text-decoration: none;
}

.nav-cta:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--border-strong);
  background: var(--panel);
  color: var(--leaf-700);
  cursor: pointer;
  border-radius: 12px;
  box-shadow: var(--shadow-pop-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
  margin-inline: auto;
}

.header-cta {
  flex-shrink: 0;
}

.parent-banner {
  margin: 0;
  padding: 10px 16px;
  background: linear-gradient(90deg, #e4d9fc 0%, var(--surface-lavender) 45%, #ddd4f0 100%);
  border-bottom: 1px solid rgba(109, 40, 217, 0.2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
}

.parent-banner-inner {
  display: block;
}

.parent-banner a {
  color: var(--purple-600);
  text-decoration: none;
  margin-left: 6px;
  font-weight: 700;
}

.parent-banner a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 14px;
  border: 2px solid var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: var(--shadow-pop-sm);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--purple-600), 4px 4px 0 var(--purple-600);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 2px var(--border-strong), 2px 2px 0 var(--purple-800);
}

.btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
  border-radius: 12px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
}

.btn-lg:hover {
  box-shadow: 0 0 0 2px var(--purple-600), 5px 5px 0 var(--purple-600);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(145deg, var(--leaf-300) 0%, var(--gold-soft) 45%, #bbf7d0 100%);
  color: var(--ink);
  border-color: rgba(31, 157, 106, 0.35);
  box-shadow: 0 0 0 2px rgba(31, 157, 106, 0.5), 3px 3px 0 var(--leaf-900);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--leaf-700), 4px 4px 0 var(--leaf-900);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 2px rgba(31, 157, 106, 0.55), 2px 2px 0 var(--leaf-900);
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btn-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%,
  70% {
    transform: translateX(-100%);
  }
  85% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.btn-ghost {
  background: var(--surface-raised);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: 0 0 0 2px var(--border-strong), 3px 3px 0 var(--purple-800);
}

.btn-ghost:hover {
  background: var(--surface-lavender);
  border-color: var(--purple-600);
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--purple-600), 4px 4px 0 var(--purple-600);
}

.btn-ghost:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 2px var(--border-strong), 2px 2px 0 var(--purple-800);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 2px solid rgba(109, 40, 217, 0.2);
  box-shadow: none;
}

.btn-ghost-light:hover {
  background: #fff;
  border-color: var(--leaf-500);
}

.btn-secondary {
  background: #fff;
  color: #0a0a0a;
}

.btn-secondary:hover {
  background: var(--cyan);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(32px, 5vw, 72px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 2px solid var(--stroke);
  background: linear-gradient(165deg, #ffffff 0%, var(--surface-lavender) 42%, var(--surface-mint) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% -20%, rgba(109, 40, 217, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(31, 157, 106, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(201, 162, 39, 0.12), transparent 45%);
}

.hero-blob {
  position: absolute;
  width: min(95vw, 540px);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.35;
}

.hero-blob--1 {
  top: -12%;
  right: -15%;
}

.hero-blob--2 {
  bottom: -25%;
  left: -20%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 157, 106, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 15%, transparent 65%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: hero-in 0.85s var(--ease-out) both;
}

.hero-animate--late {
  animation-delay: 0.12s;
}

.hero-copy {
  max-width: 540px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.hero-meta-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-500);
  border: 2px solid var(--surface-raised);
  box-shadow: 0 0 0 1px rgba(31, 157, 106, 0.4);
  animation: meta-pulse 2s ease-in-out infinite;
}

@keyframes meta-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.hero-meta-sep {
  color: var(--stroke-hot);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}

.text-gradient {
  display: inline;
  background: linear-gradient(100deg, var(--leaf-700), var(--gold), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 0 0 22px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 46ch;
  font-weight: 500;
}

.hero-lede strong {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chips li {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-dim);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.15);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-card-svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 12px 28px rgba(109, 40, 217, 0.12));
  transform: rotate(1deg);
  transition: transform 0.35s var(--ease-out);
}

.hero-art:hover .hero-card-svg {
  transform: rotate(0deg) scale(1.015);
}

/* Sections / panels */
.section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.panel {
  position: relative;
  border-bottom: 2px solid var(--stroke);
}

.panel--grid {
  background: linear-gradient(180deg, var(--egg-cream) 0%, #e8e2f5 55%, #e2f0e8 100%);
  color: #1a1218;
}

.panel--grid .section-head p {
  color: #4a3f6b;
}

.panel--lane {
  background: linear-gradient(180deg, var(--surface-lavender) 0%, var(--surface-mint) 100%);
  color: var(--ink);
}

.panel--lane .section-head h2 {
  color: var(--ink);
}

.panel--lane .section-head p {
  color: var(--text-dim);
  max-width: 52rem;
  margin-inline: auto;
}

.progress-lane {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}

.progress-step {
  position: relative;
  padding: 20px 16px 20px 18px;
  border: 2px solid var(--stroke);
  border-radius: var(--radius-chunky);
  background: var(--surface-raised);
  box-shadow: var(--shadow-pop-sm);
}

.progress-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 2px solid var(--border-strong);
  background: var(--leaf-300);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  box-shadow: 2px 2px 0 rgba(109, 40, 217, 0.12);
}

.progress-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--ink);
}

.progress-step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-dim);
}

.panel--split {
  background: var(--surface-beige);
  color: var(--ink);
}

.panel--split .split-copy > p {
  color: var(--text-dim);
}

.panel--shop {
  background: linear-gradient(180deg, #faf3e4 0%, #ede4f8 45%, #e4f2ea 100%);
  color: #1a1410;
}

.panel--shop .section-head p {
  color: #5c4566;
}

.panel--terminal {
  background: var(--surface-lavender);
  color: var(--ink);
}

.panel--faq {
  background: linear-gradient(180deg, #f2ebe4 0%, #ebe4f6 100%);
  color: #1a1410;
}

.panel--faq .section-head p,
.panel--faq .faq-item p {
  color: #5b4a75;
}

.panel--faq .faq-item p a {
  color: #5b21b6;
  font-weight: 600;
}

.panel--faq .faq-item p a:hover {
  color: var(--hot);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid rgba(31, 157, 106, 0.35);
  background: var(--surface-mint);
  color: var(--leaf-900);
  box-shadow: var(--shadow-pop-sm);
}

.section-tag--dark {
  background: var(--cyan);
}

.section-tag--glow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.25), var(--shadow-pop-sm);
}

.section-head {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.12;
}

.panel--grid .section-head h2,
.panel--shop .section-head h2,
.panel--faq .section-head h2 {
  text-shadow: none;
  color: inherit;
}

.panel--split .section-head h2,
.panel--terminal .section-head h2 {
  color: var(--ink);
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
}

.section-head--on-dark p {
  color: var(--text-dim);
}

/* Feature grid — bento */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  grid-column: span 2;
  background: #fff;
  border: 2px solid var(--stroke);
  border-radius: var(--radius-chunky);
  padding: 24px 22px;
  box-shadow: var(--shadow-pop-sm);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.feature-card:hover {
  transform: translate(-3px, -3px) rotate(-0.5deg);
  box-shadow: var(--shadow-soft);
  border-color: var(--stroke-hot);
}

.feature-card:nth-child(1) {
  grid-column: span 3;
}
.feature-card:nth-child(2) {
  grid-column: span 3;
}
.feature-card:nth-child(3) {
  grid-column: span 2;
}
.feature-card:nth-child(4) {
  grid-column: span 2;
}
.feature-card:nth-child(5) {
  grid-column: span 2;
}
.feature-card:nth-child(6) {
  grid-column: span 6;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 900px) {
  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) {
    grid-column: span 6;
  }

  .feature-card:nth-child(6) {
    grid-template-columns: 1fr;
  }
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--leaf-300);
  color: var(--leaf-900);
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 rgba(109, 40, 217, 0.1);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon--coral {
  background: #ff9ec5;
  color: #6b0a2e;
}

.feature-icon--violet {
  background: var(--violet);
  color: #1f0a40;
}

.feature-icon--sun {
  background: var(--gold);
  color: #4a3200;
}

.feature-icon--mint {
  background: var(--cyan);
  color: #003840;
}

.feature-icon--sky {
  background: #8ec5ff;
  color: #0a2463;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4a3f6b;
  line-height: 1.5;
}

.panel--grid .feature-card p {
  color: #4a3f6b;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.split-art svg {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-chunky);
  border: 2px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.checklist {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  color: var(--text-dim);
}

.checklist li {
  margin-bottom: 10px;
}

.checklist li::marker {
  content: "★ ";
  color: var(--gold);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin-inline: auto;
}

.price-card {
  background: #fff;
  border: 2px solid var(--stroke);
  border-radius: var(--radius-chunky);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-soft);
}

.rarity {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
  border: 2px solid var(--stroke);
  margin-bottom: 12px;
}

.rarity--common {
  background: #d1d5db;
  color: #1f2937;
}

.rarity--legendary {
  background: linear-gradient(90deg, var(--yolk), var(--purple-400));
  color: var(--ink);
}

.price-card--featured {
  background: linear-gradient(160deg, #fff 0%, #f0e8ff 100%);
  border-color: var(--purple-600);
  box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.2), 6px 6px 0 rgba(109, 40, 217, 0.12);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 18px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--purple-800);
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid var(--gold);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 6px;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.price-tag strong {
  font-size: 2.6rem;
  color: var(--hot);
}

.price-unit {
  font-size: 1.05rem;
  font-weight: 600;
  color: #6b5a7a;
}

.price-note {
  margin: 0 0 18px;
  color: #5c4566;
  font-size: 0.92rem;
}

.price-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #3a2f4d;
}

.price-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-top: 2px dashed rgba(0, 0, 0, 0.12);
}

.price-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-list li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--hot);
  font-weight: 900;
}

.price-list li:first-child::before {
  top: 2px;
  transform: none;
}

.pricing-footnote {
  text-align: center;
  margin: 32px 0 0;
  font-size: 0.875rem;
  color: #6b5a7a;
  max-width: 520px;
  margin-inline: auto;
  font-weight: 500;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: var(--panel);
  border: 2px solid var(--stroke);
  border-radius: var(--radius-chunky);
  padding: 22px;
  box-shadow: var(--shadow-pop-sm);
  transition: transform 0.25s var(--ease-out), border-color 0.2s;
}

.blog-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--cyan);
}

.blog-meta {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--leaf-700);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.blog-card h3 a {
  text-decoration: none;
  color: var(--ink);
}

.blog-card h3 a:hover {
  color: var(--cyan);
  text-decoration: none;
}

.blog-card > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.blog-cta-wrap {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.blog-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 2px solid var(--stroke);
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: var(--shadow-pop-sm);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--stroke-hot);
}

.faq-item[open] {
  border-color: var(--cyan);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hot);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 16px;
  color: #5b4a75;
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  padding: clamp(48px, 7vw, 72px) 0;
  background: linear-gradient(120deg, var(--surface-lavender) 0%, #fff 38%, var(--surface-mint) 100%);
  border-bottom: 2px solid var(--stroke);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 30px,
    rgba(109, 40, 217, 0.04) 30px,
    rgba(109, 40, 217, 0.04) 31px
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-glitch {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--purple-600);
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.cta-inner p {
  margin: 0;
  color: var(--text-dim);
  max-width: 44ch;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--surface-beige) 0%, #fff 100%);
  border-top: 2px solid var(--stroke);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 36px;
}

.logo--footer {
  margin-bottom: 10px;
}

.footer-tagline {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-600);
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--leaf-700);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 2px solid var(--stroke);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
}

.footer-bottom a:hover {
  color: var(--purple-600);
}

/* Links in light panels */
.panel--grid a:not(.btn),
.panel--shop a:not(.btn),
.panel--faq a:not(.btn) {
  color: #6d28d9;
}

.panel--grid a:not(.btn):hover,
.panel--shop a:not(.btn):hover,
.panel--faq a:not(.btn):hover {
  color: var(--hot);
}

/* Responsive */
@media (max-width: 1040px) {
  .progress-lane {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-art {
    order: -1;
  }

  .hero-card-svg {
    transform: rotate(0deg);
    max-width: 340px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-art {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner p {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-list {
    position: fixed;
    inset: calc(var(--header-h) + 8px) var(--shell-gutter) auto var(--shell-gutter);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--panel);
    border: 2px solid var(--border-strong);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav.is-open .nav-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-list a:hover {
    background: var(--surface-lavender);
  }

  .nav-cta-item {
    display: block;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 2px solid var(--stroke);
  }

  .nav-cta-item .nav-cta {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
}

/* Parents page */
.parents-hero {
  padding: clamp(28px, 5vw, 52px) 0 clamp(32px, 5.5vw, 60px);
  background: linear-gradient(165deg, #fff 0%, var(--surface-lavender) 45%, var(--surface-mint) 100%);
  border-bottom: 2px solid var(--stroke);
}

.parents-hero-inner {
  max-width: 56rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: center;
}

@media (min-width: 900px) {
  .parents-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .parents-hero-art {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    max-width: none;
  }

  .parents-hero-main {
    grid-column: 1;
    grid-row: 1;
  }
}

.parents-hero-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.parents-hero-art {
  margin: 0 auto clamp(0.5rem, 1.5vw, 0.85rem);
  max-width: min(34rem, 100%);
}

.parents-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 12px 36px rgba(45, 26, 77, 0.1),
    0 4px 12px rgba(109, 40, 217, 0.08);
}

.parents-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-600);
  margin: 0;
}

.parents-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

.parents-lede {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.parents-hero-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.52;
  color: var(--text-dim);
}

.parents-hero-text strong {
  color: var(--ink);
  font-weight: 700;
}

.parents-hero-cta-lede {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--ink);
}

.parents-hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

.parents-hero-text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--purple-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.parents-hero-text-link:hover {
  color: var(--purple-900);
}

/* Parents — get started modal */
body.landing.landing--slim .parents-join-modal {
  position: fixed;
  inset: 0;
  z-index: 12150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  box-sizing: border-box;
}

body.landing.landing--slim .parents-join-modal[hidden] {
  display: none;
}

body.landing.landing--slim .parents-join-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 51, 0.55);
  backdrop-filter: blur(4px);
}

body.landing.landing--slim .parents-join-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(94vh, 640px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 2px solid rgba(109, 40, 217, 0.28);
  background: #fff;
  box-shadow: 0 24px 64px rgba(45, 26, 77, 0.22);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.landing.landing--slim .parents-join-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.landing.landing--slim .parents-join-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

body.landing.landing--slim .parents-join-modal__x {
  flex-shrink: 0;
}

body.landing.landing--slim .parents-join-modal__lede {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-dim);
}

body.landing.landing--slim .parents-join-modal__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

body.landing.landing--slim .parents-join-modal__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}

body.landing.landing--slim .parents-join-modal__step-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

body.landing.landing--slim .parents-join-modal__foot {
  margin-top: 0.25rem;
  padding-top: 0.35rem;
}

body.landing.landing--slim .parents-join-modal__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.panel--parents-light {
  background: #f4f2ff;
  color: #1a1030;
}

.panel--parents-mid {
  background: #ebe8f9;
  color: #1a1030;
}

.panel--parents-light .parents-h2,
.panel--parents-mid .parents-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 20px;
  color: #1a1030;
}

.narrow-parents {
  max-width: 720px;
  margin-inline: auto;
}

.parents-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.parents-card {
  padding: 22px 20px;
  border: 2px solid var(--stroke);
  border-radius: var(--radius-chunky);
  background: #fff;
  box-shadow: var(--shadow-pop-sm);
}

.parents-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: #1a1030;
}

.parents-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4a3f6b;
}

.parents-facts,
.parents-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #3f3558;
  line-height: 1.55;
}

.parents-facts li,
.parents-list li {
  margin-bottom: 12px;
}

.parents-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #3f3558;
  line-height: 1.55;
}

.parents-steps li {
  margin-bottom: 14px;
}

.parents-note {
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: #5b4a75;
  font-style: italic;
}

.parents-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.parents-contact li {
  margin-bottom: 10px;
}

.parents-contact a {
  color: #5b21b6;
  font-weight: 600;
}

.parents-contact a:hover {
  color: var(--hot);
}

.parents-back {
  margin: 28px 0 0;
}

.parents-back a {
  color: #5b21b6;
  font-weight: 600;
  text-decoration: none;
}

.parents-back a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .parents-cols {
    grid-template-columns: 1fr;
  }
}

body.arcade .parents-card h3 {
  font-weight: 400;
}

/* —— Landing: immersion, floating shapes, HUD, parallax hooks —— */
body.landing .motion-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

body.landing .motion-shape,
body.landing .motion-blox {
  position: absolute;
  color: var(--lime);
  opacity: 0.55;
}

body.landing .motion-shape--1 {
  top: 10%;
  left: 4%;
  width: 42px;
  height: 42px;
  animation: motion-drift-a 14s ease-in-out infinite;
}

body.landing .motion-shape--2 {
  top: 22%;
  right: 8%;
  width: 36px;
  height: 36px;
  color: var(--hot);
  animation: motion-drift-b 18s ease-in-out infinite;
  animation-delay: -3s;
}

body.landing .motion-shape--3 {
  bottom: 18%;
  left: 6%;
  width: 52px;
  height: 52px;
  color: var(--cyan);
  animation: motion-spin-slow 24s linear infinite;
}

body.landing .motion-shape--4 {
  top: 45%;
  right: 3%;
  width: 28px;
  height: 28px;
  color: var(--gold);
  animation: motion-drift-a 11s ease-in-out infinite reverse;
  animation-delay: -5s;
}

body.landing .motion-shape--5 {
  bottom: 8%;
  right: 12%;
  width: 40px;
  height: 40px;
  color: var(--violet);
  animation: motion-drift-b 16s ease-in-out infinite;
  animation-delay: -7s;
}

body.landing .motion-shape--6 {
  top: 62%;
  left: 1%;
  width: 72px;
  height: 22px;
  color: var(--lime);
  opacity: 0.35;
  animation: motion-drift-a 20s ease-in-out infinite;
  animation-delay: -2s;
}

body.landing .motion-shape--7 {
  top: 78%;
  right: 22%;
  width: 36px;
  height: 36px;
  color: var(--hot);
  animation: motion-drift-b 13s ease-in-out infinite;
}

body.landing .motion-blox {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  box-shadow: 2px 2px 0 rgba(109, 40, 217, 0.15);
}

body.landing .motion-blox--a {
  top: 33%;
  left: 12%;
  color: var(--cyan);
  --blox-r: 12deg;
  animation: motion-jolt 4s ease-in-out infinite;
}

body.landing .motion-blox--b {
  top: 55%;
  right: 18%;
  color: var(--lime);
  --blox-r: -8deg;
  animation: motion-jolt 5.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

body.landing .motion-blox--c {
  bottom: 35%;
  left: 28%;
  color: var(--gold);
  --blox-r: 20deg;
  animation: motion-jolt 3.8s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes motion-drift-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(12px, -18px) rotate(6deg);
  }
  66% {
    transform: translate(-8px, 10px) rotate(-4deg);
  }
}

@keyframes motion-drift-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-16px, 14px) rotate(-10deg);
  }
}

@keyframes motion-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes motion-jolt {
  0%,
  100% {
    transform: translate(0, 0) rotate(var(--blox-r, 12deg));
  }
  50% {
    transform: translate(0, -6px) rotate(calc(var(--blox-r, 12deg) + 8deg));
  }
}

body.landing .motion-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle at 20% 30%, rgba(31, 157, 106, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(109, 40, 217, 0.05) 0%, transparent 35%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(30, 22, 51, 0.02) 1px,
      rgba(30, 22, 51, 0.02) 2px
    );
  animation: motion-noise-pulse 6s ease-in-out infinite alternate;
}

@keyframes motion-noise-pulse {
  from {
    opacity: 0.035;
  }
  to {
    opacity: 0.07;
  }
}

body.landing .hero {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

body.landing .hero-bg {
  z-index: 0;
}

body.landing .hero-hud {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
}

body.landing .hero-inner {
  position: relative;
  z-index: 4;
}

@media (min-width: 721px) {
  body.landing .hero-hud {
    inset: 20px 24px;
  }
}

body.landing .hero-hud-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(109, 40, 217, 0.35);
  opacity: 0.55;
  box-shadow: 0 0 12px rgba(109, 40, 217, 0.12);
}

body.landing .hero-hud-corner--tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
  animation: hud-flicker 4s ease-in-out infinite;
}

body.landing .hero-hud-corner--tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
  animation: hud-flicker 4s ease-in-out infinite;
  animation-delay: -1s;
}

body.landing .hero-hud-corner--bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
  animation: hud-flicker 4s ease-in-out infinite;
  animation-delay: -2s;
}

body.landing .hero-hud-corner--br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
  animation: hud-flicker 4s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes hud-flicker {
  0%,
  92%,
  100% {
    opacity: 0.45;
  }
  94% {
    opacity: 0.75;
  }
}

body.landing .hero-hud-tick {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--leaf-500), transparent);
  height: 2px;
  opacity: 0.28;
}

body.landing .hero-hud-tick--1 {
  top: 0;
  left: 15%;
  right: 15%;
  animation: hud-scan 5s ease-in-out infinite;
}

body.landing .hero-hud-tick--2 {
  bottom: 0;
  left: 25%;
  right: 25%;
  animation: hud-scan 6.5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

@keyframes hud-scan {
  0%,
  100% {
    transform: scaleX(0.3);
    opacity: 0.2;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.45;
  }
}

body.landing .hero-bg-parallax {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 50% 40% at 70% 30%, rgba(124, 58, 237, 0.14), transparent 60%);
  pointer-events: none;
}

body.landing [data-scroll-layer] {
  will-change: transform;
}

body.landing [data-tilt-inner] {
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out);
}

body.landing [data-reveal] {
  transform: translateY(42px) rotate(-1.5deg) scale(0.96);
  filter: blur(8px);
}

body.landing [data-reveal].is-visible {
  transform: translateY(0) rotate(0) scale(1);
  filter: blur(0);
}

body.landing .progress-lane[data-reveal].is-visible .progress-step {
  animation: step-snap 0.65s var(--ease-out) backwards;
}

body.landing .progress-lane[data-reveal].is-visible .progress-step:nth-child(1) {
  animation-delay: 0.04s;
}
body.landing .progress-lane[data-reveal].is-visible .progress-step:nth-child(2) {
  animation-delay: 0.1s;
}
body.landing .progress-lane[data-reveal].is-visible .progress-step:nth-child(3) {
  animation-delay: 0.16s;
}
body.landing .progress-lane[data-reveal].is-visible .progress-step:nth-child(4) {
  animation-delay: 0.22s;
}
body.landing .progress-lane[data-reveal].is-visible .progress-step:nth-child(5) {
  animation-delay: 0.28s;
}

@keyframes step-snap {
  from {
    opacity: 0;
    transform: translateX(-28px) skewX(-3deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

body.landing .site-header {
  transition:
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
}

body.landing .site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(30, 22, 51, 0.06);
  border-bottom-color: rgba(201, 162, 39, 0.25);
}

body.landing .panel--grid,
body.landing .panel--shop,
body.landing .panel--faq {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 98% 100%, 2% 100%, 0 calc(100% - 16px));
}

body.landing .panel--lane {
  clip-path: polygon(0 12px, 3% 0, 97% 0, 100% 12px, 100% 100%, 0 100%);
}

body.landing .cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--leaf-300), var(--yolk), var(--purple-400), transparent);
  opacity: 0.75;
  animation: cta-scan 3.5s linear infinite;
  background-size: 200% 100%;
}

@keyframes cta-scan {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 200% 0;
  }
}

body.landing .hero-chips li {
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.landing .hero-chips li:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  border-color: var(--leaf-500);
  box-shadow: 0 2px 0 rgba(109, 40, 217, 0.12);
}

body.landing .feature-card {
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

body.landing .feature-card:hover {
  transform: translate(-4px, -4px) rotate(-0.8deg);
}

body.landing .blog-card:hover {
  transform: translate(-3px, -3px) rotate(0.6deg);
}

body.landing .parent-banner {
  animation: banner-edge 8s ease-in-out infinite alternate;
}

@keyframes banner-edge {
  from {
    box-shadow: inset 0 0 0 0 rgba(60, 248, 255, 0);
  }
  to {
    box-shadow: inset 0 -2px 0 0 rgba(60, 248, 255, 0.25);
  }
}

@media (max-width: 720px) {
  body.landing .motion-shape--5,
  body.landing .motion-shape--6 {
    opacity: 0.3;
  }

  body.landing .panel--grid,
  body.landing .panel--shop,
  body.landing .panel--faq {
    clip-path: none;
  }

  body.landing .panel--lane {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-animate,
  .hero-animate--late {
    animation: none;
  }

  .btn-shine {
    animation: none;
  }

  .hero-meta-live {
    animation: none;
  }

  .btn:hover,
  .feature-card:hover,
  .blog-card:hover,
  .price-card:hover {
    transform: none;
  }

  body.landing .motion-field,
  body.landing .motion-noise,
  body.landing .hero-hud {
    display: none !important;
  }

  body.landing [data-tilt-inner] {
    transform: none !important;
  }

  body.landing .progress-lane[data-reveal].is-visible .progress-step {
    animation: none !important;
  }

  body.landing .motion-shape,
  body.landing .motion-blox,
  body.landing .cta-band::after,
  body.landing .parent-banner {
    animation: none !important;
  }

  body.landing .hero-hud-corner,
  body.landing .hero-hud-tick {
    animation: none !important;
  }
}
