/* ============================================================
   LANDINGPEAK — poster-dark, living light, edge fog
   ============================================================ */

:root {
  --bg: #0B0C10;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --text: #EDEDF0;
  --text-dim: #9CA1AD;
  --text-faint: #5C616D;
  --accent: #CE8DEB;
  --accent-hot: #E86CC8;
  --accent-deep: #8B5CF6;
  --accent-glow: rgba(160, 90, 220, 0.55);
  --ok: #4ADE80;
  --pain: #F87171;
  --plum: #6E4A63;
  --radius: 20px;
  --font-head: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  background-image: radial-gradient(1400px 900px at 55% -15%, rgba(22, 20, 40, 0.9), transparent 60%),
                    radial-gradient(900px 700px at -10% 110%, rgba(26, 18, 38, 0.7), transparent 60%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); }
.accent-text { color: var(--accent); }
.ok { color: var(--ok); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ ATMOSPHERE ============ */

.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 90;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(3) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 85;
  background: radial-gradient(115% 90% at 50% 42%, transparent 55%, rgba(5, 6, 9, 0.7) 100%);
}

.fog {
  position: fixed; pointer-events: none; z-index: 80;
  filter: blur(70px);
  will-change: transform, opacity;
}
.fog-a {
  top: -220px; left: -160px; width: 720px; height: 520px;
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.12), transparent 70%);
  animation: fog-drift-a 26s ease-in-out infinite alternate;
}
.fog-b {
  bottom: -260px; right: -180px; width: 820px; height: 560px;
  background: radial-gradient(closest-side, rgba(46, 82, 160, 0.11), transparent 70%);
  animation: fog-drift-b 32s ease-in-out infinite alternate;
}
@keyframes fog-drift-a {
  from { transform: translate(0, 0) scale(1); opacity: 0.75; }
  to   { transform: translate(90px, 50px) scale(1.15); opacity: 1; }
}
@keyframes fog-drift-b {
  from { transform: translate(0, 0) scale(1.1); opacity: 1; }
  to   { transform: translate(-80px, -60px) scale(1); opacity: 0.65; }
}

/* ============ LIGHT BEAMS ============ */

.beam-core, .beam-halo, .beam-cold {
  position: absolute; pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.beam-core {
  top: -30%; left: 55%; width: 30vw; height: 160%;
  transform: rotate(-20deg);
  background: linear-gradient(90deg, transparent 8%, rgba(232, 108, 200, 0.20) 38%, rgba(214, 150, 240, 0.42) 50%, rgba(232, 108, 200, 0.20) 62%, transparent 92%);
  filter: blur(30px);
  animation: beam-breathe 9s ease-in-out infinite alternate;
}
.beam-halo {
  top: -30%; left: 38%; width: 62vw; height: 170%;
  transform: rotate(-20deg);
  background: linear-gradient(90deg, transparent 10%, rgba(160, 90, 220, 0.17) 50%, transparent 90%);
  filter: blur(80px);
  animation: beam-breathe 13s ease-in-out infinite alternate-reverse;
}
.beam-cold {
  top: -35%; left: 22%; width: 14vw; height: 160%;
  transform: rotate(-26deg);
  background: linear-gradient(90deg, transparent 15%, rgba(90, 130, 235, 0.16) 50%, transparent 85%);
  filter: blur(46px);
  animation: beam-breathe 11s ease-in-out infinite alternate;
}
.beam-low { top: auto; bottom: -40%; left: 30%; opacity: 0.6; }
@keyframes beam-breathe {
  from { opacity: 0.6; transform: rotate(-20deg) translateX(0); }
  to   { opacity: 1; transform: rotate(-18.5deg) translateX(-30px); }
}

/* ============ TOPBAR ============ */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(rgba(11, 12, 16, 0.8), rgba(11, 12, 16, 0.5) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark { width: 42px; height: 23px; color: var(--accent); filter: drop-shadow(0 0 10px var(--accent-glow)); }
.brand-name { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.22em; font-size: 14px; }

.topbar-right { display: flex; align-items: center; gap: 20px; }
/* single secondary link — not a nav menu */
.nav-link {
  font-size: 10px; letter-spacing: 0.18em; color: var(--text-faint);
  text-decoration: none; padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-link:hover { color: var(--accent); border-bottom-color: rgba(206, 141, 235, 0.5); }

.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  display: inline-block; position: relative; flex: none;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.9);
  animation: pulse-core 2.4s ease-in-out infinite;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.6);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-core { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ============ BUTTONS — the tasty ones ============ */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 30px;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.btn > span { position: relative; z-index: 2; display: inline-block; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }

/* PRIMARY — liquid gradient + sheen sweep */
.btn-primary {
  color: #120818;
  background: linear-gradient(115deg, #F3D9FF 0%, #CE8DEB 28%, #A56AE0 55%, #E86CC8 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 -10px 22px rgba(120, 40, 180, 0.35) inset,
    0 6px 22px rgba(160, 90, 220, 0.35),
    0 0 0 1px rgba(206, 141, 235, 0.25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              background-position 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
/* moving sheen */
.btn-primary::before {
  content: ""; position: absolute; z-index: 1;
  top: -60%; bottom: -60%; left: -30%; width: 32%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg) translateX(-160%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.015);
  background-position: 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -12px 26px rgba(120, 40, 180, 0.4) inset,
    0 14px 44px rgba(160, 90, 220, 0.55),
    0 0 0 1px rgba(232, 108, 200, 0.4),
    0 0 60px rgba(206, 141, 235, 0.3);
}
.btn-primary:hover::before { transform: skewX(-18deg) translateX(420%); }
.btn-primary:hover > span { transform: scale(1.02); }
.btn-primary:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -6px 16px rgba(120, 40, 180, 0.5) inset,
    0 4px 14px rgba(160, 90, 220, 0.4);
  transition-duration: 0.09s;
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 12, 16, 1), 0 0 0 5px var(--accent), 0 12px 40px rgba(160, 90, 220, 0.5);
}

/* GHOST — border fills with light on hover */
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-bright);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit;
  background: linear-gradient(115deg, rgba(206, 141, 235, 0.22), rgba(232, 108, 200, 0.14));
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(206, 141, 235, 0.75);
  box-shadow: 0 12px 36px rgba(160, 90, 220, 0.28), 0 0 0 1px rgba(206, 141, 235, 0.2);
}
.btn-ghost:hover::before { opacity: 1; }
.btn-ghost:active { transform: translateY(-1px) scale(0.99); transition-duration: 0.09s; }
.btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 12, 16, 1), 0 0 0 5px var(--accent);
}

/* WHATSAPP — instant contact, always green so it reads as "message" */
.btn-wa {
  gap: 10px;
  color: #D6FFE4;
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.4);
  min-height: 54px; padding: 0 24px;
  font-size: 15px;
}
.btn-wa svg { width: 19px; height: 19px; flex: none; position: relative; z-index: 2; }
.btn-wa::before {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit;
  background: linear-gradient(115deg, rgba(37, 211, 102, 0.28), rgba(37, 211, 102, 0.12));
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.btn-wa:hover {
  transform: translateY(-4px);
  color: #FFF;
  border-color: rgba(37, 211, 102, 0.9);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover::before { opacity: 1; }
.btn-wa:active { transform: translateY(-1px) scale(0.99); transition-duration: 0.09s; }
.btn-wa:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(11, 12, 16, 1), 0 0 0 5px #25D366; }
.btn-wa-big { min-height: 58px; margin-top: 22px; font-size: 16px; }

.btn-sm { min-height: 46px; padding: 0 22px; font-size: 14px; }
.btn-lg { min-height: 62px; padding: 0 40px; font-size: 18px; }

/* ============ CARDS ============ */

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 120%), rgba(206, 141, 235, 0.07), transparent 65%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-bright); box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(160, 90, 220, 0.10); }
.card:hover::before { opacity: 1; }

.card-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim);
  margin-bottom: 16px;
}

/* ============ HERO ============ */

.hero {
  position: relative; overflow: hidden;
  min-height: 96vh;
  display: flex; align-items: center;
  padding: 130px 0 70px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; }

.hero-eye-link { display: block; margin-bottom: 34px; line-height: 0; cursor: pointer; }
.hero-eye {
  width: 170px; height: 93px;
  color: #F0C4FF;
  overflow: visible;
  filter: drop-shadow(0 0 5px rgba(240, 196, 255, 0.9))
          drop-shadow(0 0 18px rgba(206, 141, 235, 0.8))
          drop-shadow(0 0 52px rgba(160, 90, 220, 0.55));
  animation: neon-breathe 5s ease-in-out infinite, neon-flicker 11s linear infinite;
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes neon-breathe {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(240, 196, 255, 0.9)) drop-shadow(0 0 18px rgba(206, 141, 235, 0.8)) drop-shadow(0 0 52px rgba(160, 90, 220, 0.55)); }
  50% { filter: drop-shadow(0 0 7px rgba(240, 196, 255, 1)) drop-shadow(0 0 26px rgba(206, 141, 235, 0.95)) drop-shadow(0 0 72px rgba(160, 90, 220, 0.75)); }
}
@keyframes neon-flicker {
  0%, 91%, 93.5%, 100% { opacity: 1; }
  91.5% { opacity: 0.82; }
  92% { opacity: 0.96; }
  93% { opacity: 0.75; }
}

/* the star: always turning slowly, spins up when you hover the eye */
.eye-star {
  transform-origin: 110px 60px;
  animation: star-turn 40s linear infinite;
  transition: none;
}
@keyframes star-turn { to { transform: rotate(360deg); } }

/* the iris ring: quiet pulse, opens up on hover */
.eye-iris {
  transform-origin: 110px 60px;
  animation: iris-pulse 5s ease-in-out infinite;
}
@keyframes iris-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.09); opacity: 0.6; }
}

/* the lid: a slow blink every ~7s */
.eye-lid {
  transform-origin: 110px 60px;
  animation: lid-blink 7s ease-in-out infinite;
}
@keyframes lid-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
  98% { transform: scaleY(1); }
}

.hero-eye-link:hover .hero-eye,
.hero-eye-link:focus-visible .hero-eye {
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1))
          drop-shadow(0 0 30px rgba(206, 141, 235, 1))
          drop-shadow(0 0 90px rgba(160, 90, 220, 0.9));
}
.hero-eye-link:hover .eye-star { animation-duration: 2.6s; }
.hero-eye-link:hover .eye-iris { animation-duration: 1.4s; }
.hero-eye-link:hover .eye-lid { animation-play-state: paused; }
.hero-eye-link:active .hero-eye { transform: scale(0.98); transition-duration: 0.12s; }

h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 6.4vw, 82px);
  font-weight: 800; line-height: 0.98; letter-spacing: -0.038em;
  margin-bottom: 26px;
}
/* the serif italic line — the "expensive" detail */
.serif-accent {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-shadow: 0 0 48px rgba(206, 141, 235, 0.55);
}

.sub { max-width: 600px; color: var(--text-dim); font-size: 18px; margin-bottom: 34px; }
.sub strong { color: var(--text); font-weight: 600; }

/* founding pill above the headline */
.founding-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; margin-bottom: 26px;
  border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(206, 141, 235, 0.4);
  background: linear-gradient(100deg, rgba(139, 92, 246, 0.16), rgba(232, 108, 200, 0.1));
  color: var(--accent);
  font-size: 10px; letter-spacing: 0.14em;
  box-shadow: 0 0 24px rgba(160, 90, 220, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.founding-pill b { color: #FFF; font-weight: 700; }
.founding-pill:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 34px rgba(160, 90, 220, 0.45);
}

.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 10px; letter-spacing: 0.14em; color: var(--text-faint); margin-bottom: 64px; }

.poster-row {
  width: 100%; max-width: 940px;
  display: flex; justify-content: space-between; gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.poster-row > div { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.pr-k { font-size: 9px; letter-spacing: 0.2em; color: var(--text-faint); }
.pr-v { font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim); }

/* ============ SECTIONS SHARED ============ */

section { position: relative; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.032em;
  margin-bottom: 44px;
}
.title-dim { color: var(--text-faint); }

/* ============ FOUNDING OFFER ============ */

.founding { padding: 40px 0 32px; overflow: hidden; }
.beam-founding { top: -20%; left: 20%; opacity: 0.5; }

.founding-card {
  position: relative; z-index: 1;
  padding: 0; overflow: visible;
  border-color: rgba(206, 141, 235, 0.42);
  background: linear-gradient(168deg, rgba(139, 92, 246, 0.13), rgba(232, 108, 200, 0.05) 40%, var(--panel) 75%);
  box-shadow: 0 0 70px rgba(160, 90, 220, 0.2);
}
.founding-card:hover { transform: none; }

.fnd-ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 10px; letter-spacing: 0.16em; color: #0B0C10; font-weight: 600;
  background: linear-gradient(135deg, #F3D9FF, var(--accent) 50%, #E86CC8);
  border-radius: 999px; padding: 9px 20px;
  box-shadow: 0 0 30px rgba(206, 141, 235, 0.65);
  animation: badge-glow 3s ease-in-out infinite;
}
.fnd-ribbon .pulse-dot { background: #0B0C10; box-shadow: none; }
.fnd-ribbon .pulse-dot::after { border-color: rgba(11, 12, 16, 0.5); }

.fnd-head { padding: 56px 48px 0; text-align: center; }
.fnd-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.fnd-lede { max-width: 660px; margin: 0 auto; color: var(--text-dim); font-size: 16px; }

.fnd-body {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px;
  padding: 40px 48px 8px;
}

/* price box */
.fnd-price-box {
  border: 1px solid rgba(206, 141, 235, 0.3);
  border-radius: 18px;
  background: rgba(11, 12, 16, 0.55);
  padding: 28px 26px;
  align-self: start;
}
.fnd-price-label { font-size: 9px; letter-spacing: 0.2em; color: var(--text-faint); margin-bottom: 12px; }
.fnd-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.fnd-was { font-size: 22px; color: var(--text-faint); text-decoration-color: var(--pain); text-decoration-thickness: 2px; }
.fnd-now {
  font-size: clamp(44px, 5vw, 60px); font-weight: 600; line-height: 1; color: var(--accent);
  text-shadow: 0 0 40px rgba(206, 141, 235, 0.6);
  animation: value-breathe 4s ease-in-out infinite;
}
.fnd-price-sub { font-size: 13px; color: var(--text-dim); margin: 8px 0 22px; }

.fnd-split { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.fnd-split-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text);
  padding-bottom: 9px; border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.fnd-split-row span:last-child { font-size: 9px; letter-spacing: 0.14em; }
.fnd-risk {
  font-size: 9.5px; letter-spacing: 0.08em; line-height: 1.7; color: var(--ok);
  border-left: 2px solid rgba(74, 222, 128, 0.5); padding-left: 12px; margin-bottom: 24px;
}
.fnd-cta { width: 100%; }
.fnd-wa { width: 100%; margin-top: 10px; }

/* includes list */
.fnd-inc-label { font-size: 9px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 18px; }
.fnd-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.fnd-list li {
  position: relative; padding: 11px 0 11px 30px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.fnd-list li:last-child { border-bottom: none; }
.fnd-list li::before {
  content: "✓"; position: absolute; left: 2px; top: 11px;
  color: var(--ok); font-size: 13px; font-weight: 700;
}
.fnd-list b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; letter-spacing: -0.015em; color: var(--text); margin-bottom: 2px; }
.fnd-list span { font-size: 13.5px; color: var(--text-dim); }

/* partnership */
.fnd-partner {
  margin: 34px 48px 0;
  padding: 32px 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(232, 108, 200, 0.07), transparent 60%);
  border-radius: 0 0 4px 4px;
}
.fnd-partner-label { font-size: 9px; letter-spacing: 0.2em; color: var(--accent-hot); margin-bottom: 12px; }
.fnd-partner h3 {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.025em;
  font-size: clamp(19px, 2.1vw, 26px); line-height: 1.22; margin-bottom: 22px; max-width: 720px;
}
.partner-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 22px; }
.pc-head { font-size: 9px; letter-spacing: 0.18em; color: var(--text-faint); margin-bottom: 9px; }
.partner-cols p:not(.pc-head) { font-size: 14px; color: var(--text-dim); }
.fnd-partner-close {
  font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: -0.015em;
  color: var(--text); padding-top: 18px; border-top: 1px solid var(--line);
}

.fnd-urgency {
  text-align: center; font-size: 9.5px; letter-spacing: 0.14em; line-height: 1.9;
  color: var(--accent); padding: 26px 48px 34px;
}

/* ============ FIVE DAYS ============ */

.days { padding: 84px 0 32px; }
.days .section-title { text-align: center; }
.day-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.day-card { padding: 26px; }
.day-num {
  display: inline-block; font-size: 9px; letter-spacing: 0.18em; color: var(--accent);
  border: 1px solid rgba(206, 141, 235, 0.3); border-radius: 999px; padding: 4px 11px;
  margin-bottom: 16px;
}
.day-card h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; font-size: 18px; line-height: 1.2; margin-bottom: 9px; }
.day-card p { font-size: 14px; color: var(--text-dim); }

/* ============ WORK ============ */

.work { padding: 84px 0 32px; }
.work .section-title { text-align: center; margin-bottom: 18px; }
.work-lede {
  max-width: 660px; margin: 0 auto 40px; text-align: center;
  color: var(--text-dim); font-size: 16px;
}
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.work-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.work-shot { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #14151c; }
.work-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: saturate(0.88) brightness(0.9);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(206, 141, 235, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6), 0 0 44px rgba(160, 90, 220, 0.18);
}
.work-card:hover .work-shot img { transform: scale(1.045); filter: saturate(1.05) brightness(1); }

.work-meta { padding: 18px 22px 20px; }
.work-name { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; font-size: 18px; margin-bottom: 5px; }
.work-style { font-size: 9px; letter-spacing: 0.16em; color: var(--text-faint); }

.work-open {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; letter-spacing: 0.14em; color: #0B0C10;
  background: linear-gradient(135deg, #F3D9FF, var(--accent));
  border-radius: 999px; padding: 7px 13px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(160, 90, 220, 0.5);
}
.work-card:hover .work-open, .work-card:focus-visible .work-open { opacity: 1; transform: translateY(0); }
.work-card:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(206, 141, 235, 0.25); }

.work-note {
  text-align: center; margin-top: 26px;
  font-size: 9px; letter-spacing: 0.12em; line-height: 1.9; color: var(--text-faint);
}

/* ============ THE MATH ============ */

.math { padding: 84px 0 32px; }
.math .section-title { text-align: center; margin-bottom: 18px; }
.math-lede {
  max-width: 620px; margin: 0 auto 40px; text-align: center;
  color: var(--text-dim); font-size: 16px;
}
.math-lede b { color: var(--text); font-weight: 600; }

.math-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.math-card { padding: 28px 26px; }
.math-after {
  border-color: rgba(206, 141, 235, 0.35);
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.09), var(--panel) 60%);
}
.math-label { font-size: 9.5px; letter-spacing: 0.18em; color: var(--text-faint); margin-bottom: 18px; }

/* 100 dots — the clicks you paid for */
.dots {
  display: grid; grid-template-columns: repeat(20, 1fr); gap: 4px;
  margin-bottom: 14px;
}
.dots i {
  aspect-ratio: 1; border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dots i.hit { background: var(--text-dim); box-shadow: 0 0 6px rgba(156, 161, 173, 0.4); }
.math-after .dots i.hit {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.25);
}
.dots-caption { font-size: 11px; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 22px; }
.dc-num { font-size: 15px; color: var(--text); }

.math-rows { display: flex; flex-direction: column; gap: 9px; }
.math-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 10.5px; letter-spacing: 0.1em; color: var(--text-faint);
  padding-bottom: 9px; border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.math-row span:last-child { font-size: 14px; color: var(--text-dim); letter-spacing: 0; }
.math-row .same { font-style: normal; font-size: 10px; color: var(--text-faint); letter-spacing: 0.06em; }
.math-total { border-bottom: none; padding-top: 4px; }
.math-total span:first-child { color: var(--text); }
.math-total span:last-child { font-size: 24px; font-weight: 600; }
.math-total span:last-child.bad { color: var(--pain); }
.math-total span:last-child.ok { color: var(--ok); text-shadow: 0 0 24px rgba(74, 222, 128, 0.4); }

.math-close {
  max-width: 640px; margin: 34px auto 0; text-align: center;
  font-family: var(--font-head); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(17px, 2vw, 22px); line-height: 1.4; color: var(--text);
}
.math-note {
  max-width: 720px; margin: 20px auto 0; text-align: center;
  font-size: 9px; letter-spacing: 0.1em; line-height: 1.9; color: var(--text-faint);
}

/* ============ BENTO ============ */

.bento { padding: 84px 0 32px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.fr-card { grid-column: span 3; display: flex; flex-direction: column; padding: 28px; }
.b-guarantee { grid-column: span 8; }
.b-ticker { grid-column: span 4; display: flex; flex-direction: column; }

.fr-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; }
.fr-relief { color: var(--text-dim); font-size: 14.5px; }
.fr-tool { margin-top: auto; padding-top: 22px; font-size: 10px; letter-spacing: 0.14em; color: var(--accent); }

.b-guarantee {
  display: flex; flex-direction: column; justify-content: center;
  border-color: rgba(206, 141, 235, 0.22);
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.07), var(--panel) 55%);
  padding: 34px;
}
.guarantee-label { color: var(--accent); }
.guarantee-text { font-family: var(--font-head); font-weight: 600; letter-spacing: -0.02em; font-size: clamp(20px, 2vw, 27px); line-height: 1.35; margin-bottom: 16px; max-width: 580px; }
.guarantee-text strong { color: var(--accent); font-weight: 700; }
.inline-link { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(206, 141, 235, 0.35); transition: border-color 0.2s ease, text-shadow 0.2s ease; align-self: flex-start; }
.inline-link:hover { border-color: var(--accent); text-shadow: 0 0 14px rgba(206, 141, 235, 0.6); }
.b-guarantee .inline-link { font-size: 10px; letter-spacing: 0.14em; }

.ticker { flex: 1; display: flex; flex-direction: column; justify-content: center; min-height: 64px; transition: opacity 0.4s ease, transform 0.4s ease; }
.ticker.swap { opacity: 0; transform: translateY(8px); }
.ticker-who { font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 6px; }
.ticker-what { font-family: var(--font-head); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.ticker-track { display: flex; gap: 6px; margin-top: 16px; }
.ticker-track i { height: 3px; flex: 1; border-radius: 2px; background: rgba(255, 255, 255, 0.08); }
.ticker-track i.on { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

/* ============ ROI CALCULATOR ============ */

.roi { padding: 84px 0 32px; }
.roi .section-title { text-align: center; }
.roi-card { max-width: 680px; margin: 0 auto; padding: 44px; }
.roi-explain { color: var(--text-dim); font-size: 15px; margin-bottom: 34px; text-align: center; }
.roi-inputs { display: flex; flex-direction: column; gap: 32px; margin-bottom: 34px; }
.slider-block label { display: block; font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }
.slider-val { color: var(--accent); font-weight: 600; font-size: 14px; text-shadow: 0 0 14px rgba(206, 141, 235, 0.5); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--fill, 20%), rgba(255, 255, 255, 0.1) var(--fill, 20%));
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFFFFF, #E8D5F5);
  border: 2px solid var(--accent);
  box-shadow: 0 0 18px var(--accent-glow), 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.18); box-shadow: 0 0 30px var(--accent-glow), 0 2px 10px rgba(0, 0, 0, 0.5); }
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.05); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #FFFFFF; border: 2px solid var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.roi-breakdown { display: flex; flex-direction: column; gap: 10px; }
.roi-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  font-size: 11px; letter-spacing: 0.08em; color: var(--text-faint);
  padding-bottom: 9px; border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.roi-row span:last-child { font-size: 15px; color: var(--text-dim); font-weight: 600; letter-spacing: 0; }
.roi-keep { border-bottom: none; padding-bottom: 0; }
.roi-keep span:first-child { color: var(--text); }
.roi-keep span:last-child { font-size: 20px; }

.roi-result { text-align: center; padding: 30px 0 26px; }
.roi-result-label { font-size: 10px; letter-spacing: 0.2em; color: var(--text-faint); margin-bottom: 10px; }
.roi-glow {
  font-size: clamp(44px, 6vw, 64px); font-weight: 600; line-height: 1; color: var(--accent);
  text-shadow: 0 0 40px rgba(206, 141, 235, 0.55);
  animation: value-breathe 4s ease-in-out infinite;
}
@keyframes value-breathe {
  0%, 100% { text-shadow: 0 0 30px rgba(206, 141, 235, 0.4); }
  50% { text-shadow: 0 0 56px rgba(206, 141, 235, 0.75); }
}
.roi-payback {
  text-align: center; margin-top: 24px; padding: 22px;
  border: 1px solid rgba(74, 222, 128, 0.28); border-radius: 16px;
  background: rgba(74, 222, 128, 0.05);
}
.rp-label { font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 10px; }
.rp-big {
  font-size: clamp(30px, 4vw, 42px); font-weight: 600; line-height: 1; color: var(--ok);
  text-shadow: 0 0 34px rgba(74, 222, 128, 0.45);
}
.roi-footnote { font-size: 9px; letter-spacing: 0.1em; color: var(--text-faint); margin-top: 22px; text-align: center; line-height: 1.8; }
.roi-cta { width: 100%; margin-top: 20px; }

/* ============ PROOF ============ */

.proof { padding: 84px 0 32px; }
.proof .section-title { text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-card { padding: 24px; }

.crm-mock {
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(11, 12, 16, 0.6);
  padding: 12px; margin-bottom: 18px;
}
.crm-head { display: flex; align-items: center; gap: 5px; padding: 2px 2px 10px; border-bottom: 1px solid var(--line); }
.crm-head i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.crm-head span { margin-left: 8px; font-size: 8.5px; letter-spacing: 0.12em; color: var(--text-faint); }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; padding: 12px 2px 2px; }
.bars i {
  flex: 1; height: var(--h); border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(139, 92, 246, 0.25), var(--accent));
  box-shadow: 0 0 12px rgba(160, 90, 220, 0.25);
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in .bars i { transform: scaleY(1); }
.bars i:nth-child(2) { transition-delay: 0.06s; } .bars i:nth-child(3) { transition-delay: 0.12s; }
.bars i:nth-child(4) { transition-delay: 0.18s; } .bars i:nth-child(5) { transition-delay: 0.24s; }
.bars i:nth-child(6) { transition-delay: 0.3s; } .bars i:nth-child(7) { transition-delay: 0.36s; }
.bars i:nth-child(8) { transition-delay: 0.42s; }

.proof-stats { display: flex; gap: 28px; }
.proof-stats > div { display: flex; flex-direction: column; gap: 3px; }
.proof-v { font-size: 22px; font-weight: 600; }
.proof-k { font-size: 9px; letter-spacing: 0.14em; color: var(--text-faint); }
.proof-honest {
  max-width: 760px; margin: 26px auto 0; text-align: center;
  font-size: 9.5px; letter-spacing: 0.1em; line-height: 1.9; color: var(--text-dim);
  border: 1px dashed rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 16px 22px;
}

.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 40px; padding: 44px 0 0;
}
.int-note { font-size: 9px; letter-spacing: 0.2em; color: var(--text-faint); }
.int-logo {
  font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  cursor: default; white-space: nowrap;
}
.int-logo:hover { color: rgba(255, 255, 255, 0.85); text-shadow: 0 0 18px rgba(206, 141, 235, 0.4); transform: translateY(-2px); }
.gg-check { font-style: normal; color: var(--ok); }

/* ============ COMPARE ============ */

.compare { padding: 84px 0 32px; }
.compare .section-title { text-align: center; }
.compare-card { padding: 0; overflow: hidden; }
.cmp-scroll { overflow-x: auto; }
.cmp-row {
  display: grid; grid-template-columns: 1.1fr 1.1fr 1.4fr 1.2fr;
  gap: 16px; align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--text-dim);
  min-width: 640px;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-head { font-size: 9px; letter-spacing: 0.18em; color: var(--text-faint); background: rgba(255, 255, 255, 0.02); }
.cmp-name { color: var(--text); font-weight: 600; letter-spacing: 0.02em; }
.cmp-bad { color: var(--pain); }
.cmp-us {
  background: linear-gradient(100deg, rgba(139, 92, 246, 0.14), rgba(232, 108, 200, 0.06));
  box-shadow: inset 0 0 0 1px rgba(206, 141, 235, 0.25);
}
.cmp-us .cmp-name { color: var(--accent); letter-spacing: 0.12em; text-shadow: 0 0 20px rgba(206, 141, 235, 0.5); }
.cmp-foot { font-size: 8.5px; letter-spacing: 0.1em; color: var(--text-faint); text-align: center; margin-top: 18px; line-height: 1.9; }
.cmp-swipe { display: none; }

/* ============ PRICING ============ */

.pricing { padding: 84px 0 32px; }
.pricing .section-title { text-align: center; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 34px 30px; }
.price-tier { font-size: 10px; letter-spacing: 0.18em; color: var(--text-dim); margin-bottom: 18px; }
.price-amount { font-size: 40px; font-weight: 600; line-height: 1; margin-bottom: 8px; }
.price-per { font-size: 15px; color: var(--text-faint); margin-left: 3px; }
.price-was {
  font-size: 20px; color: var(--text-faint); margin-right: 12px;
  text-decoration-color: var(--pain); text-decoration-thickness: 2px;
}
.price-once { font-size: 9px; letter-spacing: 0.14em; color: var(--ok); margin-bottom: 16px; }
.price-frame { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; min-height: 40px; }
.price-list li b { color: var(--text); font-weight: 600; }

/* what the $99 buys */
.support-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px;
  align-items: center; margin-top: 22px; padding: 30px 34px;
}
.support-card:hover { transform: none; }
.sup-label { font-size: 9px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 10px; }
.sup-text { font-size: 14.5px; color: var(--text-dim); }
.sup-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px;
}
.sup-list li {
  position: relative; padding-left: 20px;
  font-size: 11px; letter-spacing: 0.04em; color: var(--text-dim);
}
.sup-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }
.price-list { list-style: none; margin-bottom: 30px; flex: 1; }
.price-list li {
  position: relative; padding: 9px 0 9px 24px;
  font-size: 14px; color: var(--text-dim);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.price-list li::before {
  content: "▸"; position: absolute; left: 2px; color: var(--accent); font-size: 11px; top: 11px;
}
.price-note { text-align: center; font-size: 9.5px; letter-spacing: 0.16em; color: var(--text-faint); margin-top: 26px; }

.price-popular {
  overflow: visible;
  border-color: rgba(206, 141, 235, 0.45);
  background: linear-gradient(170deg, rgba(139, 92, 246, 0.10), var(--panel) 50%);
  box-shadow: 0 0 44px rgba(160, 90, 220, 0.18);
  transform: scale(1.03);
}
.price-popular:hover { transform: scale(1.03) translateY(-4px); }
.price-popular .price-list li { color: var(--text); }
.popular-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: 10px; letter-spacing: 0.16em; color: #0B0C10;
  background: linear-gradient(135deg, #E3B6F5, var(--accent));
  border-radius: 999px; padding: 7px 16px;
  box-shadow: 0 0 24px rgba(206, 141, 235, 0.6);
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(206, 141, 235, 0.45); }
  50% { box-shadow: 0 0 34px rgba(206, 141, 235, 0.8); }
}

/* ============ ABOUT ============ */

.about { padding: 84px 0 32px; }
.about-card {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 44px;
  padding: 44px;
  border-color: rgba(206, 141, 235, 0.2);
  background: linear-gradient(150deg, rgba(139, 92, 246, 0.07), var(--panel) 60%);
}
.about-card:hover { transform: none; }

.about-left { display: flex; flex-direction: column; align-items: flex-start; }
.about-eye {
  width: 78px; height: 43px; color: var(--accent); margin-bottom: 20px;
  filter: drop-shadow(0 0 16px var(--accent-glow));
}
.about-name {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.025em;
  font-size: 26px; line-height: 1.1; margin-bottom: 8px;
}
.about-role { font-size: 9px; letter-spacing: 0.16em; color: var(--text-faint); margin-bottom: 22px; }
.about-li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--line-bright); color: var(--text-dim);
  font-size: 10px; letter-spacing: 0.14em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.about-li svg { width: 14px; height: 14px; }
.about-li:hover {
  transform: translateY(-3px); color: #FFF;
  border-color: #0A66C2;
  box-shadow: 0 8px 26px rgba(10, 102, 194, 0.35);
}

.about-facts {
  list-style: none; width: 100%;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.about-facts li {
  display: flex; flex-direction: column; gap: 3px;
}
.about-facts span { font-size: 8.5px; letter-spacing: 0.18em; color: var(--text-faint); }
.about-facts b {
  font-family: var(--font-body); font-weight: 500; font-size: 13.5px;
  letter-spacing: 0; color: var(--text-dim);
}

.about-head {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.028em;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.15; margin-bottom: 20px;
}
.about-right p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 14px; }
.about-right p:last-of-type { margin-bottom: 26px; }
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ BOOK / FORM ============ */

.book { padding: 96px 0 104px; overflow: hidden; }
.book-card {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; padding: 52px;
  overflow: visible;
  border-color: rgba(206, 141, 235, 0.3);
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.09), var(--panel) 55%);
}
.book-card:hover { transform: none; }
.book-ribbon { font-size: 9.5px; padding: 8px 18px; }
.book .section-title { margin: 14px 0 34px; }

.form-step { display: none; }
.form-step.active { display: block; animation: step-in 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes step-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-label { font-size: 10px; letter-spacing: 0.16em; color: var(--text-dim); margin-bottom: 20px; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.industry-btn {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  min-height: 76px; padding: 16px 20px;
  background: var(--panel-strong); border: 1px solid var(--line); border-radius: 16px;
  color: var(--text); cursor: pointer; text-align: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.industry-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, rgba(206, 141, 235, 0.16), rgba(232, 108, 200, 0.08));
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.industry-btn:hover {
  transform: translateY(-4px); border-color: rgba(206, 141, 235, 0.7);
  box-shadow: 0 10px 34px rgba(160, 90, 220, 0.3);
}
.industry-btn:hover::before { opacity: 1; }
.industry-btn:active { transform: translateY(-1px) scale(0.99); transition-duration: 0.09s; }
.industry-btn:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(206, 141, 235, 0.25); }
.ind-name { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; font-size: 19px; }
.ind-sub { position: relative; z-index: 1; font-size: 9px; letter-spacing: 0.14em; color: var(--text-faint); }

/* "something else" spans both columns — nobody should feel excluded */
.industry-other {
  grid-column: 1 / -1;
  border-style: dashed;
  border-color: rgba(206, 141, 235, 0.3);
}
.industry-other .ind-sub { color: var(--accent); letter-spacing: 0.1em; }

.form-alt { margin-top: 20px; font-size: 14px; color: var(--text-dim); text-align: center; }
.wa-inline {
  color: #7BEFA8; text-decoration: none;
  border-bottom: 1px solid rgba(123, 239, 168, 0.4);
  transition: border-color 0.2s ease, text-shadow 0.2s ease;
}
.wa-inline:hover { border-color: #7BEFA8; text-shadow: 0 0 14px rgba(37, 211, 102, 0.6); }

.field-row { display: flex; gap: 12px; margin-bottom: 12px; }

.chosen-line { font-size: 15px; color: var(--text-dim); margin-bottom: 22px; }
.chosen-industry { font-weight: 600; }
.change-industry {
  background: none; border: none; color: var(--text-faint); font-size: 10px;
  letter-spacing: 0.1em; cursor: pointer; margin-left: 8px;
  border-bottom: 1px dashed var(--text-faint); padding-bottom: 1px;
  transition: color 0.2s ease;
}
.change-industry:hover { color: var(--accent); border-color: var(--accent); }

.email-row { display: flex; gap: 12px; }
.email-input {
  flex: 1; min-height: 54px; padding: 0 20px;
  background: rgba(11, 12, 16, 0.7); border: 1px solid var(--line-bright); border-radius: 999px;
  color: var(--text); font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.email-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(206, 141, 235, 0.15), 0 0 24px rgba(160, 90, 220, 0.2); }
.email-input::placeholder { color: var(--text-faint); }
.form-error { color: var(--pain); font-size: 10px; letter-spacing: 0.08em; margin-top: 12px; }
.form-note { color: var(--text-faint); font-size: 9px; letter-spacing: 0.12em; margin-top: 16px; }

.step-success { text-align: center; padding: 20px 0; }
.success-mark {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--ok);
  border: 1px solid rgba(74, 222, 128, 0.4); border-radius: 50%;
  background: rgba(74, 222, 128, 0.06);
  box-shadow: 0 0 34px rgba(74, 222, 128, 0.3);
  animation: success-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes success-pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-text { font-size: 16px; color: var(--text-dim); max-width: 420px; margin: 0 auto; }

/* ============ FOOTER ============ */

.footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-flag { width: 44px; color: var(--plum); opacity: 0.9; }
.footer-brand span { font-size: 10px; letter-spacing: 0.14em; color: var(--text-faint); }
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-link {
  font-size: 10px; letter-spacing: 0.14em; color: var(--text-faint); text-decoration: none;
  transition: color 0.25s ease;
}
.footer-link:hover { color: #4FA3E3; }
/* the number itself never shows — the link just opens the chat */
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; text-decoration: none;
  font-size: 10px; letter-spacing: 0.14em; color: #7BEFA8;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.07);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.footer-wa svg { width: 14px; height: 14px; }
.footer-wa:hover {
  transform: translateY(-3px); color: #FFF;
  border-color: rgba(37, 211, 102, 0.9);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.3);
}

/* ============ MOBILE CTA BAR ============ */

.mobile-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 110;
  display: none; gap: 10px;
  opacity: 0; transform: translateY(90px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-bar.show { opacity: 1; transform: translateY(0); }
.mb-main { flex: 1; min-height: 56px; font-size: 15px; padding: 0 18px; }
.mb-wa {
  width: 56px; min-height: 56px; padding: 0; flex: none;
  background: rgba(15, 40, 25, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.mb-wa svg { width: 22px; height: 22px; }

/* ============ REVEAL ============ */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.in.card:hover { transform: translateY(-4px); }
.price-popular.reveal.in { transform: scale(1.03); }
.price-popular.reveal.in:hover { transform: scale(1.03) translateY(-4px); }

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .fr-card { grid-column: span 1; }
  .b-guarantee, .b-ticker { grid-column: span 2; }
  .proof-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .price-popular { transform: none; grid-column: 1 / -1; }
  .price-popular:hover { transform: translateY(-4px); }
  .price-popular.reveal.in { transform: none; }
  .beam-core { width: 44vw; }

  .fnd-body { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px 8px; }
  .fnd-head { padding: 52px 32px 0; }
  .fnd-partner { margin: 30px 32px 0; padding: 28px 26px; }
  .fnd-urgency { padding: 24px 32px 30px; }
  .day-grid { grid-template-columns: 1fr 1fr; }
  .support-card { grid-template-columns: 1fr; gap: 22px; }
  .about-card { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .about-left { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 16px; }
  .about-eye { margin-bottom: 0; width: 62px; height: 34px; }
  .about-name { margin-bottom: 0; font-size: 22px; }
  .about-role { margin-bottom: 0; }
  .about-li { margin-left: auto; }
  .about-facts { flex-direction: row; flex-wrap: wrap; gap: 18px 32px; margin-top: 20px; padding-top: 18px; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .wrap { padding: 0 16px; }

  .hero { min-height: auto; padding: 110px 0 52px; }
  .hero-eye { width: 116px; height: 64px; }
  .hero-eye-link { margin-bottom: 26px; }
  h1 { font-size: 34px; line-height: 1.06; letter-spacing: -0.03em; }
  .section-title { font-size: 30px; }
  .sub { font-size: 16px; }
  .br-desk { display: none; }
  .founding-pill { font-size: 9px; padding: 8px 14px; letter-spacing: 0.1em; }
  .hero-cta { width: 100%; flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .cta-note { font-size: 9px; margin-bottom: 48px; }
  .poster-row { flex-direction: column; gap: 16px; }

  /* founding */
  .founding { padding: 26px 0 20px; }
  .fnd-ribbon { font-size: 8.5px; padding: 8px 14px; letter-spacing: 0.12em; }
  .fnd-head { padding: 44px 20px 0; }
  .fnd-lede { font-size: 15px; }
  .fnd-body { padding: 30px 20px 4px; gap: 24px; }
  .fnd-price-box { padding: 22px 18px; }
  .fnd-partner { margin: 24px 20px 0; padding: 24px 18px; }
  .partner-cols { grid-template-columns: 1fr; gap: 20px; }
  .fnd-urgency { padding: 20px 20px 28px; font-size: 9px; }

  .days { padding: 64px 0 20px; }
  .day-grid { grid-template-columns: 1fr; }

  /* work */
  .work { padding: 64px 0 20px; }
  .work-grid { grid-template-columns: 1fr; gap: 12px; }
  .work-lede { font-size: 15px; margin-bottom: 28px; }
  .work-open { opacity: 1; transform: none; }

  /* math */
  .math { padding: 64px 0 20px; }
  .math-grid { grid-template-columns: 1fr; gap: 12px; }
  .math-lede { font-size: 15px; margin-bottom: 28px; }
  .math-card { padding: 24px 20px; }
  .dots { grid-template-columns: repeat(20, 1fr); gap: 3px; }
  .math-total span:last-child { font-size: 21px; }

  /* about */
  .about { padding: 64px 0 20px; }
  .about-card { padding: 30px 22px; gap: 26px; }
  .about-left { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-li { margin-left: 0; }
  .about-right p { font-size: 15px; }
  .about-cta { flex-direction: column; }
  .about-cta .btn { width: 100%; }

  .topbar-inner { padding: 12px 16px; }
  .brand-name { font-size: 12px; letter-spacing: 0.18em; }
  .btn-sm { min-height: 52px; padding: 0 18px; font-size: 13px; white-space: nowrap; }
  /* header stays minimal on a phone — blog links live in the page and footer */
  .topbar-right { gap: 12px; }
  .nav-link { display: none; }

  .bento { padding: 64px 0 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .fr-card, .b-guarantee, .b-ticker { grid-column: 1 / -1; }
  .b-guarantee { padding: 28px 24px; }

  .roi, .proof, .pricing, .compare { padding: 64px 0 20px; }
  .roi-card { padding: 30px 20px; }
  .roi-glow { font-size: 40px; }
  .roi-row { font-size: 10px; }
  .roi-row span:last-child { font-size: 14px; }

  .proof-grid, .price-grid { grid-template-columns: 1fr; }
  .logo-strip { gap: 12px 24px; padding-top: 36px; }
  .int-logo { font-size: 14px; }

  .cmp-row { padding: 16px 20px; }
  .cmp-swipe { display: block; text-align: center; font-size: 9px; letter-spacing: 0.16em; color: var(--text-faint); margin-top: 12px; }

  .book { padding: 64px 0 120px; }
  .book-card { padding: 34px 22px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-btn { min-height: 64px; }
  .email-row, .field-row { flex-direction: column; }
  .email-row .btn { width: 100%; }
  .email-input { border-radius: 16px; }
  .sup-list { grid-template-columns: 1fr; }

  .mobile-bar { display: flex; }
  .footer { padding-bottom: 100px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { gap: 16px; }

  .fog { filter: blur(50px); opacity: 0.6; }
  .beam-core { width: 70vw; left: 30%; filter: blur(40px); }
  .beam-halo { width: 110vw; left: 0; }
  .beam-cold { display: none; }
  .grain { opacity: 0.06; }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .fog-a, .fog-b, .beam-core, .beam-halo, .beam-cold,
  .hero-eye, .eye-star, .eye-iris, .eye-lid, .fnd-ribbon, .fnd-now,
  .pulse-dot, .pulse-dot::after, .roi-glow, .popular-badge { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bars i { transform: scaleY(1); transition: none; }
  .btn-primary::before { display: none; }
  * { transition-duration: 0.01ms !important; }
}
