/* ==================================================================
   SharkBytes Landing Page — Dark Chalkboard Editorial System
   Version 2.0 · Apr 2026
   ================================================================== */

/* ░░ RESET & TOKENS ░░ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  /* Core chalkboard palette — tuned to Sharky's slate-navy body (#1B2D45) */
  --ink-bg:        #101826;   /* warmer navy base — matches Sharky ecosystem */
  --ink-deep:      #0A1220;   /* darkest depth */
  --ink-surface:   #1B2838;   /* surface cards — echo of Sharky body colour */
  --ink-surface-2: #243447;   /* raised surfaces */
  --ink-line:      #2E3E54;   /* dividers */
  --ink-line-2:    #3F5270;   /* stronger dividers */

  --chalk-100:     #EDF2F8;   /* primary text */
  --chalk-200:     #C9D3E1;   /* secondary text */
  --chalk-300:     #9AAAC0;   /* tertiary text */
  --chalk-400:     #6A7B93;   /* muted text */

  --amber-500:     #F4A825;   /* Sharky pocket-square accent — NEVER changes */
  --amber-400:     #FFBF4D;
  --amber-200:     #FFDB8A;
  --amber-glow:    rgba(244, 168, 37, 0.35);

  --coral-500:     #FF6B5C;
  --teal-500:      #3DD9C9;

  /* Typography */
  --font-display:  'Fraunces', 'Georgia', serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Spacing scale */
  --container: 1200px;
  --container-narrow: 780px;
  --gutter: 24px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ░░ BASE TYPE ░░ */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--chalk-100);
  background: var(--ink-bg);
  overflow-x: hidden;
}

/* Chalkboard texture overlay (global) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.02) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(244,168,37,0.03) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.8;
  mix-blend-mode: screen;
}

/* ░░ UTILITY CLASSES ░░ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 120px 0; position: relative; z-index: 2; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-500);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--amber-500);
  transform: translateY(-50%);
}
.section-eyebrow--light { color: var(--chalk-300); }
.section-eyebrow--light::before { background: var(--chalk-300); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--chalk-100);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber-500);
}
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title .hl {
  position: relative;
  display: inline-block;
  color: var(--ink-bg);
  background: var(--amber-500);
  padding: 0 10px;
  border-radius: 4px;
  font-style: normal;
  transform: rotate(-1deg);
}

.section-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--chalk-300);
  max-width: 640px;
  margin-bottom: 40px;
}
.section-sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ░░ BUTTONS ░░ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber-500);
  color: var(--ink-bg);
  box-shadow:
    0 0 0 1px rgba(244,168,37,0.4),
    0 10px 30px -5px rgba(244,168,37,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,191,77,0.6),
    0 18px 40px -8px rgba(244,168,37,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary:active { transform: translateY(0); }

.btn__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--chalk-100);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--chalk-100);
  border: 1px solid var(--ink-line-2);
}
.btn--outline:hover { border-color: var(--amber-500); color: var(--amber-500); }

.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 18px 32px; font-size: 16px; border-radius: 14px; }

/* ░░ CALLOUTS ░░ */
.callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--ink-surface);
  border-left: 3px solid var(--amber-500);
}
.callout__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.callout p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--chalk-200);
  margin: 0;
}
.callout--sharky { border-left-color: var(--amber-500); }
.callout--trap {
  border-left-color: var(--coral-500);
  background: linear-gradient(135deg, rgba(255,107,92,0.08), rgba(255,107,92,0.02));
}
.callout--trap strong { color: var(--coral-500); }

.chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--chalk-200);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.chip--more { background: var(--amber-500); color: var(--ink-bg); border-color: transparent; font-weight: 700; }

/* ==================================================================
   PRELOADER
   ================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  mask: radial-gradient(circle at center, #000 0%, transparent 70%);
}
.preloader__center { text-align: center; position: relative; z-index: 2; }
.preloader__logo {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  animation: logoSpin 2s var(--ease-in-out) infinite;
}
@keyframes logoSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.05); }
}
.preloader__chalk {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--chalk-100);
  display: inline-flex;
}
.preloader__chalk span {
  opacity: 0;
  animation: chalkWrite 1.2s var(--ease-out) forwards;
}
.preloader__chalk span:nth-child(1) { animation-delay: 0s; }
.preloader__chalk span:nth-child(2) { animation-delay: 0.05s; }
.preloader__chalk span:nth-child(3) { animation-delay: 0.1s; }
.preloader__chalk span:nth-child(4) { animation-delay: 0.15s; }
.preloader__chalk span:nth-child(5) { animation-delay: 0.2s; }
.preloader__chalk span:nth-child(6) { animation-delay: 0.25s; }
.preloader__chalk span:nth-child(7) { animation-delay: 0.3s; }
.preloader__chalk span:nth-child(8) { animation-delay: 0.35s; }
.preloader__chalk span:nth-child(9) { animation-delay: 0.4s; }
.preloader__chalk span:nth-child(10) { animation-delay: 0.45s; }
@keyframes chalkWrite {
  from { opacity: 0; transform: translateY(6px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ==================================================================
   CHALK-DUST CURSOR TRAIL
   ================================================================== */
.chalk-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,0.5), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  mix-blend-mode: screen;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .chalk-cursor { display: block; }
}
.chalk-cursor.active { opacity: 1; }
.chalk-cursor.hovering { width: 48px; height: 48px; background: radial-gradient(circle, rgba(255,191,77,0.65), transparent 75%); }

/* ==================================================================
   NAV
   ================================================================== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1240px;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 18px;
  border-radius: 100px;
  background: rgba(16, 24, 38, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.5);
}
.nav.scrolled .nav__inner {
  background: rgba(16, 24, 38, 0.88);
  border-color: rgba(255,255,255,0.12);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
  padding: 3px;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.nav__sub { font-size: 10.5px; font-family: var(--font-mono); color: var(--chalk-400); letter-spacing: 0.05em; }
.nav__links { display: flex; gap: 24px; align-items: center; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--chalk-300);
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover { color: var(--chalk-100); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--amber-500);
  color: var(--ink-bg);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav__cta:hover { background: var(--amber-400); transform: translateY(-1px); }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__sub { display: none; }
}

/* ==================================================================
   HERO
   ================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink-deep);
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
  opacity: 0.85;
  filter: saturate(0.85) brightness(0.9);
  animation: heroBreathe 18s ease-in-out infinite;
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.04) translateY(-10px); }
}

/* Ambient chalk dust drifting across the hero (CSS only, butter-smooth) */
.hero__chalk-dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244,168,37,0.08) 0%, transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(61,217,201,0.06) 0%, transparent 22%),
    radial-gradient(circle at 52% 88%, rgba(244,168,37,0.04) 0%, transparent 25%);
  animation: chalkDrift 24s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes chalkDrift {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-2%, 1%); }
  66%      { transform: translate(2%, -1%); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 30% 45%, transparent 0%, rgba(16,24,38,0.5) 55%, rgba(10,18,32,0.94) 100%),
    linear-gradient(180deg, rgba(16,24,38,0.4) 0%, transparent 25%, transparent 70%, var(--ink-bg) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
}

/* Chalk particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--chalk-100);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 8px rgba(234,240,246,0.7);
  animation: drift 12s linear infinite;
}
.p1 { left: 8%;  top: 20%; animation-delay: 0s;   animation-duration: 14s; }
.p2 { left: 18%; top: 80%; animation-delay: -2s;  animation-duration: 18s; width: 3px; height: 3px; }
.p3 { left: 32%; top: 35%; animation-delay: -4s;  animation-duration: 12s; width: 5px; height: 5px; }
.p4 { left: 50%; top: 65%; animation-delay: -6s;  animation-duration: 20s; }
.p5 { left: 64%; top: 25%; animation-delay: -8s;  animation-duration: 15s; background: var(--amber-200); }
.p6 { left: 78%; top: 55%; animation-delay: -1s;  animation-duration: 16s; width: 3px; height: 3px; }
.p7 { left: 88%; top: 15%; animation-delay: -3s;  animation-duration: 13s; }
.p8 { left: 92%; top: 72%; animation-delay: -5s;  animation-duration: 17s; background: var(--amber-200); }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translate(30px, -40px) scale(0.8); opacity: 0.5; }
  90%  { opacity: 0.4; }
  100% { transform: translate(-20px, -80px) scale(0.4); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(244,168,37,0.1);
  border: 1px solid rgba(244,168,37,0.25);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-400);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 12px var(--amber-500);
  animation: dotPulse 2s var(--ease-in-out) infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--chalk-100);
  margin-bottom: 28px;
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline em { font-style: italic; font-weight: 600; color: var(--chalk-200); }
.hero__headline .accent {
  position: relative;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-200) 60%, var(--amber-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__headline .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.05em;
  height: 6px;
  background: var(--amber-500);
  border-radius: 100px;
  transform-origin: left;
  opacity: 0.5;
}
.hero__headline .period { color: var(--amber-500); }

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--chalk-200);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(27,40,56,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 640px;
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--chalk-100);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__trust-num small { font-size: 16px; font-weight: 400; color: var(--chalk-300); margin-left: 4px; }
.hero__trust-label {
  font-size: 12px;
  color: var(--chalk-400);
  font-family: var(--font-mono);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero__trust-divider { width: 1px; height: 32px; background: var(--ink-line); }

.hero__credential {
  position: absolute;
  top: 50%; right: 40px;
  transform: translateY(-50%) rotate(8deg);
  z-index: 11;
  display: none;
}
@media (min-width: 1100px) { .hero__credential { display: block; } }
.hero__credential-badge {
  padding: 18px 22px;
  background: var(--amber-500);
  color: var(--ink-bg);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 50px -10px rgba(244,168,37,0.5);
  border: 2px solid var(--amber-400);
}
.hero__credential-rank {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__credential-exam {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.08em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chalk-400);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: var(--ink-line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line span {
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: var(--amber-500);
  animation: scrollLine 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { top: -20px; }
  100% { top: 40px; }
}

/* ==================================================================
   MARQUEE
   ================================================================== */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink-deep);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--chalk-300);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.marquee__dot { color: var(--amber-500); font-size: 10px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================================================================
   PROBLEM / PROMISE
   ================================================================== */
.problem { padding: 140px 0; background: var(--ink-bg); }
.problem__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 20px 60px;
  align-items: start;
}
.problem__eyebrow { grid-column: 1; grid-row: 1; padding-top: 8px; }
.problem__headline { grid-column: 2; grid-row: 1; }
.problem__body { grid-column: 2; grid-row: 2; }
.problem__body p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--chalk-200);
  margin-bottom: 20px;
  max-width: 680px;
}
.problem__body p:last-child { margin-bottom: 0; }
.problem__body strong { color: var(--chalk-100); font-weight: 600; }
.problem__kicker {
  font-weight: 600 !important;
  color: var(--amber-500) !important;
  font-style: italic;
}
@media (max-width: 768px) {
  .problem__grid { grid-template-columns: 1fr; gap: 16px; }
  .problem__eyebrow, .problem__headline, .problem__body { grid-column: 1; }
}

/* ==================================================================
   ANATOMY — STICKY SCROLL
   ================================================================== */
.anatomy {
  position: relative;
  background: var(--ink-deep);
  border-top: 1px solid var(--ink-line);
}
.anatomy__pin-wrap { position: relative; }

.anatomy__header {
  text-align: center;
  padding: 100px 0 40px;
}
.anatomy__header .section-eyebrow,
.anatomy__header .section-title { justify-content: center; text-align: center; }
.anatomy__header .section-title { margin-left: auto; margin-right: auto; }
.anatomy__header .section-sub { margin-left: auto; margin-right: auto; text-align: center; margin-top: 12px; }

.anatomy__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px var(--gutter) 140px;
}

.anatomy__card-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.anatomy__card-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 450 / 600;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 100px -30px rgba(244,168,37,0.15);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}
.anatomy__card-frame:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0deg);
}
.anatomy__card-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.anatomy__card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--chalk-300);
  text-align: center;
}
.anatomy__card-label .mono { color: var(--amber-500); font-size: 11px; letter-spacing: 0.15em; }

/* Hotspot dots */
.hotspot {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(244,168,37,0.3), 0 0 20px rgba(244,168,37,0.7);
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease-bounce);
  pointer-events: none;
}
.hotspot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--amber-500);
  opacity: 0;
  animation: hotspotPulse 1.8s var(--ease-out) infinite;
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
.hotspot.active { opacity: 1; transform: scale(1); }
.hotspot-1 { top: 4.5%; right: 4%; }
.hotspot-2 { top: 28%; left: 50%; transform: translateX(-50%) scale(0); }
.hotspot-2.active { transform: translateX(-50%) scale(1); }
.hotspot-3 { top: 55%; left: 8%; }
.hotspot-4 { top: 60%; right: 8%; }
.hotspot-5 { top: 78%; left: 8%; }
.hotspot-6 { bottom: 3%; left: 50%; transform: translateX(-50%) scale(0); }
.hotspot-6.active { transform: translateX(-50%) scale(1); }

.anatomy__labels-col { display: flex; flex-direction: column; gap: 0; }

.anatomy__progress {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ink-surface);
  border-radius: 100px;
  margin-bottom: 32px;
  align-self: flex-start;
}
.anatomy__progress-track {
  flex: 1;
  height: 3px;
  background: var(--ink-line);
  border-radius: 100px;
  overflow: hidden;
  width: 200px;
}
.anatomy__progress-fill {
  height: 100%;
  width: 16.66%;
  background: var(--amber-500);
  transition: width 0.5s var(--ease-out);
  border-radius: inherit;
}
.anatomy__progress-count {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--chalk-300);
  letter-spacing: 0.1em;
}
.anatomy__progress-count span { color: var(--amber-500); }

.anatomy-step {
  padding: 28px 0;
  border-top: 1px solid var(--ink-line);
  opacity: 0.35;
  transition: opacity 0.5s var(--ease-out);
  min-height: 160px;
}
.anatomy-step:first-of-type { border-top: none; padding-top: 0; }
.anatomy-step--active { opacity: 1; }
.anatomy-step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-500);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.anatomy-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--chalk-100);
  margin-bottom: 12px;
}
.anatomy-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--chalk-300);
  max-width: 460px;
}

@media (max-width: 900px) {
  .anatomy__stage { grid-template-columns: 1fr; }
  .anatomy__card-col { position: relative; top: 0; margin-bottom: 40px; }
  .anatomy__card-frame { transform: none; max-width: 400px; }
}

/* ==================================================================
   BENTO GRID
   ================================================================== */
.bento { background: var(--ink-bg); }
.bento .container > .section-eyebrow { display: flex; justify-content: center; }
.bento .section-title,
.bento .section-sub { text-align: center; }

.bento__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  margin-top: 60px;
}
.bento-card {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--ink-surface) 0%, var(--ink-surface-2) 100%);
  border: 1px solid var(--ink-line);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244,168,37,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento-card:hover { border-color: rgba(244,168,37,0.25); transform: translateY(-3px); }
.bento-card:hover::before { opacity: 1; }
.bento-card__eyebrow {
  font-size: 11px;
  color: var(--amber-500);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.8;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--chalk-100);
  margin-bottom: 12px;
}
.bento-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--chalk-300);
  margin-bottom: 20px;
}

/* Grid positions */
.bento-card--tall { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 580px; }
.bento-card--mnemonic { grid-column: 2 / 3; grid-row: 1 / 2; }
.bento-card--speed { grid-column: 3 / 4; grid-row: 1 / 2; }
.bento-card--rank { grid-column: 2 / 3; grid-row: 2 / 3; }
.bento-card--phone { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-card--license { grid-column: 1 / 4; grid-row: 3 / 4; min-height: 220px; }

@media (max-width: 960px) {
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .bento-card--tall { grid-column: 1 / 3; grid-row: auto; min-height: 340px; }
  .bento-card--mnemonic { grid-column: 1 / 2; grid-row: auto; }
  .bento-card--speed { grid-column: 2 / 3; grid-row: auto; }
  .bento-card--rank { grid-column: 1 / 2; grid-row: auto; }
  .bento-card--phone { grid-column: 2 / 3; grid-row: auto; }
  .bento-card--license { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 600px) {
  .bento__grid { grid-template-columns: 1fr; }
  .bento-card { grid-column: 1 !important; }
}

/* Chip row */
.bento-card__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

/* Mnemonic brain SVG */
.bento-card__brain {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.brain-svg { width: 140px; height: auto; }
.brain-svg circle:last-of-type { animation: brainPulse 2.4s var(--ease-in-out) infinite; transform-origin: 60px 50px; }
@keyframes brainPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Speedometer */
.bento-card__speedometer {
  margin-top: auto;
  position: relative;
}
.speedo { width: 100%; height: auto; }
.speedo__labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--chalk-400);
}
#speedoNeedle { transform-origin: 100px 90px; transition: transform 1.5s var(--ease-out); }

/* Rank bars */
.bento-card__ranking { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.rank-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  position: relative;
}
.rank-bar__label { font-size: 13px; font-weight: 500; color: var(--chalk-200); }
.rank-bar__val { font-family: var(--font-mono); font-size: 10px; color: var(--chalk-400); text-transform: uppercase; letter-spacing: 0.1em; align-self: center; }
.rank-bar__fill {
  grid-column: 1 / 3;
  height: 4px;
  background: var(--ink-line);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.rank-bar__fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--amber-500), var(--amber-200));
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out) 0.1s;
}
.bento-card--rank.inview .rank-bar__fill::after { transform: scaleX(1); }

/* Phone frame */
.bento-card__phone-frame {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.phone-frame {
  position: relative;
  width: 120px;
  aspect-ratio: 9 / 19;
  background: #000;
  border: 3px solid var(--ink-line-2);
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.6);
  overflow: hidden;
}
.phone-frame__notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 4px;
  background: var(--ink-line-2);
  border-radius: 100px;
  z-index: 3;
}
.phone-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Stamp */
.bento-card__stamp {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.stamp {
  display: inline-block;
  padding: 14px 28px;
  border: 2.5px dashed var(--amber-500);
  border-radius: 10px;
  transform: rotate(-4deg);
  background: rgba(244,168,37,0.05);
  text-align: center;
}
.stamp__inner { display: flex; flex-direction: column; gap: 3px; }
.stamp__top, .stamp__bottom {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--amber-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.stamp__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--amber-200);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==================================================================
   GALLERY
   ================================================================== */
.gallery { background: var(--ink-deep); padding: 120px 0; }
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.gallery__head .section-title { margin-bottom: 0; }

.gallery__nav { display: flex; gap: 10px; }
.gallery__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  color: var(--chalk-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.gallery__btn:hover {
  border-color: var(--amber-500);
  color: var(--amber-500);
  transform: translateY(-2px);
}

.gallery__scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px var(--gutter) 40px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery__scroller::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: grab;
}
.gallery-card:active { cursor: grabbing; }
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(244,168,37,0.2);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 450 / 600;
  object-fit: cover;
  display: block;
}
.gallery-card__meta {
  padding: 18px 20px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-card__pill {
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--ink-bg);
  background: var(--amber-500);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gallery-card__pill--repeat { background: var(--teal-500); color: var(--ink-bg); }
.gallery-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--chalk-100);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.gallery-card__sub {
  font-size: 13px;
  color: var(--chalk-400);
}

.gallery-card--more {
  background: linear-gradient(135deg, var(--amber-500) 0%, #D18410 100%);
  color: var(--ink-bg);
  border-color: transparent;
}
.gallery-card--more:hover { box-shadow: 0 30px 60px -20px rgba(244,168,37,0.5); }
.gallery-card__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 340 / 520;
  text-align: center;
  padding: 30px;
}
.gallery-card__more img { width: 100px; height: 100px; margin-bottom: 8px; }
.gallery-card__more-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--ink-bg);
  letter-spacing: -0.03em;
}
.gallery-card__more-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-bg);
}
.gallery-card__more-cta {
  margin-top: 14px;
  padding: 10px 20px;
  background: var(--ink-bg);
  color: var(--amber-500);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.gallery-card__more-cta:hover { background: var(--ink-deep); transform: translateY(-2px); }

/* ==================================================================
   CREDIBILITY
   ================================================================== */
.cred { background: var(--ink-bg); padding: 140px 0; }
.cred__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .cred__grid { grid-template-columns: 1fr; gap: 48px; }
}

.cred__photo-col { position: relative; }
.cred__photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.cred__photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cred__rank-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber-500);
  color: var(--ink-bg);
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  transform: rotate(-6deg);
  box-shadow: 0 15px 30px -8px rgba(244,168,37,0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
}
.cred__rank-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.cred__rank-big { font-family: var(--font-display); font-weight: 900; font-size: 58px; line-height: 0.9; letter-spacing: -0.04em; }
.cred__rank-sub { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; margin-top: 4px; }

.cred__frame-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--amber-500);
  z-index: 2;
}
.cred__frame-corner--tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.cred__frame-corner--tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.cred__frame-corner--bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.cred__frame-corner--br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.cred__content-col .section-title { margin-bottom: 24px; }
.cred__para {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--chalk-200);
  margin-bottom: 18px;
}
.cred__para strong { color: var(--amber-500); font-weight: 600; }

.cred__stats-row {
  display: flex;
  gap: 28px;
  padding: 20px 24px;
  background: var(--ink-surface);
  border-radius: 14px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.cred__stat { display: flex; flex-direction: column; gap: 2px; }
.cred__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--chalk-100);
  letter-spacing: -0.02em;
}
.cred__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chalk-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==================================================================
   TESTIMONIALS
   ================================================================== */
.proof { background: var(--ink-deep); }
.proof > .container > .section-eyebrow { display: flex; justify-content: center; }
.proof .section-title { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 32px;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(244,168,37,0.3); }
.testimonial--featured {
  background: linear-gradient(145deg, rgba(244,168,37,0.08) 0%, var(--ink-surface) 60%);
  border-color: rgba(244,168,37,0.2);
}
.testimonial--featured::before {
  content: '"';
  position: absolute;
  top: -6px; right: 20px;
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: var(--amber-500);
  opacity: 0.12;
  pointer-events: none;
}
.testimonial__stars {
  color: var(--amber-500);
  font-size: 18px;
  letter-spacing: 0.1em;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--chalk-100);
  margin: 0;
}
.testimonial--featured blockquote { font-size: 19px; }
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
  color: var(--ink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial footer strong { display: block; font-size: 15px; color: var(--chalk-100); font-weight: 600; }
.testimonial footer span { font-size: 12.5px; color: var(--chalk-400); font-family: var(--font-mono); }

/* ==================================================================
   PRICING
   ================================================================== */
.pricing { background: var(--ink-bg); overflow: hidden; position: relative; }
.pricing__glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,168,37,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.pricing > .container > .section-eyebrow { display: flex; justify-content: center; }
.pricing .section-title { text-align: center; }

.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 50px;
  padding: 14px 24px;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.countdown-bar__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chalk-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.countdown-bar__timer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  padding: 4px 6px;
}
.countdown-unit > span:first-child {
  font-size: 22px;
  color: var(--amber-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown-unit small {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  color: var(--chalk-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.countdown-sep { color: var(--amber-500); font-size: 18px; opacity: 0.5; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 780px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 22px;
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
}
.pricing-card__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--chalk-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.pricing-card__was {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--chalk-400);
  text-decoration: line-through;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 54px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--chalk-100);
}
.pricing-card__period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chalk-400);
}
.pricing-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--chalk-300);
  margin-bottom: 24px;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--chalk-200);
  padding-left: 26px;
  position: relative;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 5px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--amber-500);
  border-bottom: 2px solid var(--amber-500);
  transform: rotate(-45deg);
}
.pricing-card__list li.muted { color: var(--chalk-400); }
.pricing-card__list li.muted::before { display: none; }

.pricing-card--free { background: var(--ink-surface); }

.pricing-card--featured {
  background: linear-gradient(160deg, #243447 0%, #1B2838 100%);
  border: 1.5px solid var(--amber-500);
  box-shadow: 0 30px 80px -20px rgba(244,168,37,0.2), 0 0 0 1px rgba(244,168,37,0.1);
  overflow: hidden;
}
.pricing-card--featured .pricing-card__label { color: var(--amber-500); }
.pricing-card--featured .pricing-card__amount { color: var(--chalk-100); }

.pricing-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  padding: 7px 14px;
  background: var(--amber-500);
  color: var(--ink-bg);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-card__badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-bg);
  animation: dotPulse 1.8s var(--ease-in-out) infinite;
}

.pricing-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--chalk-400);
  flex-wrap: wrap;
}
.pricing-card__trust svg { color: var(--amber-500); }
.pricing-card__trust .dot-sep { color: var(--ink-line-2); }

.pricing-card__mascot {
  position: absolute;
  bottom: -16px; right: -24px;
  width: 110px;
  opacity: 0.14;
  pointer-events: none;
  transform: rotate(12deg);
}

.pricing__trap { max-width: 680px; margin: 50px auto 0; }

/* ==================================================================
   FAQ
   ================================================================== */
.faq { background: var(--ink-deep); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item {
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  background: var(--ink-surface);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.faq-item:hover { border-color: var(--ink-line-2); }
.faq-item[open] { border-color: rgba(244,168,37,0.3); background: linear-gradient(145deg, rgba(244,168,37,0.04), var(--ink-surface)); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--chalk-100);
  cursor: pointer;
  position: relative;
  padding-right: 60px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--chalk-400);
  color: var(--chalk-100);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: all 0.3s;
}
.faq-item[open] summary::after { content: '−'; border-color: var(--amber-500); color: var(--amber-500); transform: translateY(-50%) rotate(180deg); }
.faq-item__body {
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--chalk-300);
}
.faq-item__body a { color: var(--amber-500); text-decoration: underline; text-decoration-color: rgba(244,168,37,0.4); text-underline-offset: 3px; }
.faq-item__body a:hover { text-decoration-color: var(--amber-500); }

/* ==================================================================
   FINAL CTA
   ================================================================== */
.finalcta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--ink-bg);
}
.finalcta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(244,168,37,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-bg) 0%, var(--ink-deep) 100%);
}
.finalcta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(244,168,37,0.12) 0%, transparent 50%);
  filter: blur(40px);
  pointer-events: none;
}
.finalcta__inner { position: relative; z-index: 2; }
.finalcta__mascot {
  width: 140px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
  animation: floatMascot 5s var(--ease-in-out) infinite;
}
@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.finalcta__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--chalk-100);
  margin-bottom: 18px;
}
.finalcta__headline em { font-style: italic; font-weight: 600; color: var(--amber-500); }
.finalcta__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--chalk-300);
  max-width: 560px;
  margin: 0 auto 36px;
}
.finalcta__insta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chalk-400);
  letter-spacing: 0.05em;
}
.finalcta__insta a { color: var(--amber-500); font-weight: 600; }

/* ==================================================================
   FOOTER
   ================================================================== */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--ink-line);
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 780px) { .footer__brand { justify-content: center; } }
.footer__logo { width: 48px; height: 48px; }
.footer__brand-text strong { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--chalk-100); }
.footer__by { color: var(--chalk-300); font-weight: 400; font-size: 14px; }
.footer__sub { display: block; font-size: 12.5px; color: var(--chalk-400); margin-top: 2px; }

.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer__links a {
  font-size: 14px;
  color: var(--chalk-300);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--amber-500); }

.footer__copy {
  font-size: 12.5px;
  color: var(--chalk-400);
  line-height: 1.55;
  text-align: right;
}
@media (max-width: 780px) { .footer__copy { text-align: center; } }
.footer__copy small { color: var(--chalk-400); opacity: 0.7; }

/* ==================================================================
   FLASH PRICING TIMER
   ================================================================== */
.pricing-card__badge--flash {
  background: linear-gradient(135deg, var(--coral-500) 0%, var(--amber-500) 100%);
  color: var(--chalk-100);
  padding: 8px 16px;
  font-weight: 800;
  box-shadow: 0 6px 20px -4px rgba(255,107,92,0.5);
}
.pricing-card__badge--flash .pricing-card__badge-pulse {
  background: var(--chalk-100);
}
.flash-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin: 8px 0 14px;
  background: linear-gradient(135deg, rgba(255,107,92,0.12), rgba(244,168,37,0.08));
  border: 1px solid rgba(255,107,92,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chalk-200);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.flash-timer__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 10px var(--coral-500);
  animation: dotPulse 1.4s var(--ease-in-out) infinite;
}
.flash-timer__label {
  font-weight: 600;
  color: var(--coral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.flash-timer__values {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 700;
  color: var(--chalk-100);
}
.flash-timer__values small {
  font-weight: 500;
  color: var(--chalk-400);
  font-size: 10px;
  margin-left: 1px;
}
.flash-timer__sep { color: var(--coral-500); opacity: 0.55; }

/* ==================================================================
   WAITING FOR REVIEWS BLOCK
   ================================================================== */
.waiting-block {
  position: relative;
  max-width: 760px;
  margin: 60px auto 0;
  padding: 48px 40px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(244,168,37,0.08) 0%, var(--ink-surface) 55%);
  border: 1px solid rgba(244,168,37,0.25);
  overflow: hidden;
  text-align: center;
}
.waiting-block__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(244,168,37,0.14) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(47,212,194,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.waiting-block__inner { position: relative; z-index: 1; }
.waiting-block__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  color: var(--amber-500);
  filter: drop-shadow(0 8px 20px rgba(244,168,37,0.4));
}
.waiting-block__icon svg { width: 100%; height: 100%; }
.waiting-block__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--chalk-100);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.waiting-block__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--chalk-300);
  max-width: 540px;
  margin: 0 auto 28px;
}
.waiting-block__body strong { color: var(--chalk-100); font-weight: 600; }
.waiting-block__cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.waiting-block__fineprint {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--chalk-400);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.section-title .proof__hl {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ==================================================================
   CHAPTER MAP (bento card 01)
   ================================================================== */
.chapter-map {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
  padding: 16px 0;
}
.chapter-map__ring {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.chapter-map__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(244,168,37,0.15));
}
/* Generate 17 dots via CSS — positioned using conic rotation */
.chapter-map__dots {
  --total: 17;
}
.chapter-map__dots::before,
.chapter-map__dots::after { display: none; }
/* Fallback JS-free ring of dots using SVG — we'll use inline decorative dots */
.chapter-map__ring::before {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,37,0.12) 0%, transparent 70%);
  animation: chapterGlow 4s var(--ease-in-out) infinite;
}
@keyframes chapterGlow {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%     { transform: scale(1.08); opacity: 1; }
}

/* SVG dots generated via CSS custom counters isn't feasible — so we decorate around the ring */
.chapter-map__ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 4%,   #F4A825 0 4px, transparent 5px),
    radial-gradient(circle at 76% 11%,  #F4A825 0 4px, transparent 5px),
    radial-gradient(circle at 93% 32%,  #F4A825 0 4px, transparent 5px),
    radial-gradient(circle at 96% 58%,  #FFBF4D 0 3px, transparent 4px),
    radial-gradient(circle at 86% 82%,  #FFBF4D 0 3px, transparent 4px),
    radial-gradient(circle at 64% 95%,  #FFBF4D 0 3px, transparent 4px),
    radial-gradient(circle at 36% 95%,  #FFBF4D 0 3px, transparent 4px),
    radial-gradient(circle at 14% 82%,  #FFBF4D 0 3px, transparent 4px),
    radial-gradient(circle at 4%  58%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 7%  32%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 24% 11%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 63% 4%,   #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 88% 22%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 97% 45%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 76% 89%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 25% 89%,  #9AAAC0 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 12% 45%,  #9AAAC0 0 2.5px, transparent 3.5px);
  pointer-events: none;
}

.chapter-map__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--chalk-300);
  letter-spacing: 0.05em;
}
.chapter-map__legend .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.chapter-map__legend .dot--heavy   { background: var(--amber-500); box-shadow: 0 0 8px var(--amber-500); }
.chapter-map__legend .dot--repeat  { background: var(--amber-400); }
.chapter-map__legend .dot--support { background: var(--chalk-300); }

/* ==================================================================
   DUAL COUNTDOWN ROW
   ================================================================== */
.countdown-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 40px auto 50px;
  max-width: 820px;
}
.countdown-row .countdown-bar {
  margin: 0;
  width: 100%;
  justify-content: space-between;
  padding: 16px 22px;
  border-radius: 16px;
  flex-wrap: nowrap;
}
.countdown-bar--neet { border-color: rgba(61,217,201,0.35); background: linear-gradient(135deg, rgba(61,217,201,0.08), var(--ink-surface)); }
.countdown-bar--neet .countdown-unit > span:first-child,
.countdown-bar--neet .countdown-sep { color: var(--teal-500); }
.countdown-bar--neet .countdown-bar__label { color: var(--teal-500); }

.countdown-bar--inicet { border-color: rgba(244,168,37,0.35); background: linear-gradient(135deg, rgba(244,168,37,0.08), var(--ink-surface)); }

/* ==================================================================
   PRICING LIST TAGS
   ================================================================== */
.list-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber-500);
  background: rgba(244,168,37,0.1);
  border: 1px solid rgba(244,168,37,0.25);
  vertical-align: middle;
}

.pricing-card__list li.muted {
  padding-left: 26px;
  position: relative;
}
.pricing-card__list li.muted::before {
  content: '';
  position: absolute;
  left: 2px; top: 6px;
  width: 14px; height: 2px;
  border-radius: 2px;
  background: var(--chalk-400);
  transform: rotate(-15deg);
  border: none !important;
}

/* CTA placeholder subtle mark */
a[data-cta-placeholder] {
  position: relative;
}

/* ==================================================================
   REDUCED MOTION
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__video { display: none; }
  .marquee__track { animation: none; }
}
