/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #17171a;
  --ink: #fafafa;
  --ink-soft: #d4d4d8;
  --mute: #9a9aa0;
  --mute-2: #6b6b70;
  --accent: #ffd400;
  --accent-2: #ffe066;
  --accent-ink: #0a0a0a;
  --ok: #34d97a;
  --line: rgba(250, 250, 250, 0.1);
  --line-2: rgba(250, 250, 250, 0.18);
  --shadow: 0 10px 40px -14px rgba(0, 0, 0, 0.6);
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --r-btn: 12px;
  --max: 1160px;
  --display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--accent); color: var(--accent-ink);
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.accent { color: var(--accent); }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; color: var(--mute);
}
.h2-lead { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.8rem); margin: .5em 0 .4em; max-width: 20ch; }
.section-sub { color: var(--mute); font-size: 1.05rem; max-width: 52ch; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--r-btn);
  font-family: var(--body); font-weight: 700; font-size: .9rem;
  background: var(--accent); color: var(--accent-ink);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 14px 30px -10px rgba(255,212,0,.45); }
.btn:active { transform: translateY(0); }
.btn svg { width: 14px; height: 14px; transition: transform .22s var(--ease-out); }
.btn:hover svg { transform: translate(2px, -2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-btn);
  border: 1px solid var(--line-2); color: var(--ink);
  font-weight: 600; font-size: .86rem;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(255,212,0,.06); }

.status-pill {
  display: inline-flex; align-items: flex-start; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex: 0 0 auto;
  margin-top: 6px;
  box-shadow: 0 0 0 0 rgba(52, 217, 122, .6);
  animation: pulseDot 2.2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52, 217, 122, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(52, 217, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 217, 122, 0); }
}

/* =============================================================
   6. Header
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 22px;
}
.site-header .wrap { padding: 0; }
.header-in {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 10px 13px 18px;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), backdrop-filter .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled .header-in {
  background: rgba(17,17,17,.88);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); }
.brand b {
  display: inline-block; transform: translateY(1.5px);
  font-size: 1.02rem; font-weight: 700; letter-spacing: -.005em;
  color: var(--accent);
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero { padding: 44px 0 16px; text-align: center; }
.hero-inner { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-title {
  font-size: clamp(2.15rem, 1.55rem + 2.6vw, 3.6rem);
  margin: 18px 0 14px;
  max-width: 16ch;
}
.hero-lead {
  font-size: clamp(.92rem, .86rem + .3vw, 1.02rem);
  color: var(--mute);
  max-width: 46ch;
  margin-bottom: 22px;
}
.hero-lead strong { color: var(--ink-soft); font-weight: 700; }
.hero-actions { display: flex; justify-content: center; }

/* =============================================================
   8. Network animation — 3 lanes, real continuous motion,
   people flowing in on the left, becoming notifications on the right
   ============================================================= */
.network {
  position: relative;
  width: calc(100% - 40px); max-width: 1520px; margin: 40px auto 0;
  height: clamp(210px, 24vw, 290px);
}
.network-rails { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-rails path { fill: none; stroke: var(--line-2); stroke-width: 1.4; }

/* particles injected by main.js — positioned in % so they track the
   responsive SVG viewBox (1200x260) without any JS resize math */
.flow-particle {
  position: absolute; top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: left, top, opacity;
}
.flow-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
}
.flow-avatar svg { width: 14px; height: 14px; color: var(--ink-soft); }

.flow-chip {
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  padding: 7px 13px 7px 7px; border-radius: 99px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  font-size: .72rem; font-weight: 600; color: var(--ink-soft);
  filter: blur(.5px);
}
.flow-chip .badge { width: 19px; height: 19px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.flow-chip .badge svg { width: 10px; height: 10px; }
.flow-chip.yt .badge { background: #ff3040; color: #fff; }
.flow-chip.ig .badge { background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7); color: #fff; }
.flow-chip.sp .badge { background: #1db954; color: #0a0a0a; }

.network-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c1c05, var(--bg-3) 70%);
  border: 1px solid rgba(255, 212, 0, .35);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.network-center::before {
  content: ""; position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(255,212,0,.32), transparent 68%);
  filter: blur(6px);
  animation: glowPulse 3.2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .95; transform: scale(1.08); }
}
.network-center svg { width: 36px; height: 36px; color: var(--accent); position: relative; z-index: 1; }

.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 22px; margin: 6px auto 0; color: var(--mute-2);
}
.scroll-cue svg { width: 19px; height: 11px; animation: scrollCue 1.6s var(--ease-soft) infinite; }
.scroll-cue svg:last-child { animation-delay: .18s; }
@keyframes scrollCue {
  0%   { opacity: .25; transform: translateY(-3px); }
  50%  { opacity: 1;   transform: translateY(2px); }
  100% { opacity: .25; transform: translateY(-3px); }
}

/* =============================================================
   10. Problems section
   ============================================================= */
.problems { padding: 84px 0 100px; }
.problems-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.problems-title { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); color: var(--ink); max-width: 21ch; margin: 0 auto .45em; }
.problems-sub { color: var(--mute); font-size: 1rem; max-width: 46ch; margin: 0 auto; }
.problems-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.problem-card {
  padding: 22px 22px 24px; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--line);
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.problem-card.is-visible { opacity: 1; transform: translateY(0); }
.problem-card:hover { border-color: var(--line-2); background: var(--bg-3); }
.problem-card h3 { font-size: 1.01rem; margin-bottom: 8px; letter-spacing: -.01em; }
.problem-card p { color: var(--mute); font-size: .88rem; margin: 0; line-height: 1.5; }
.problems-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ---- mini visualisations ---- */
.viz {
  position: relative; height: 84px; margin-bottom: 18px;
  border-radius: 10px; background: rgba(255,255,255,.02); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

/* 1. upload + wait */
.viz-upload .viz-bar { position: relative; width: 74%; height: 8px; border-radius: 99px; background: var(--bg-3); overflow: hidden; }
.viz-upload .viz-bar span { position: absolute; top: 0; left: 0; width: 34%; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: uploadSlide 1.8s linear infinite; }
@keyframes uploadSlide { from { transform: translateX(-100%); } to { transform: translateX(340%); } }
.viz-upload .viz-q {
  position: absolute; top: 12px; right: 26%;
  width: 20px; height: 20px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: .68rem; font-weight: 700; color: var(--mute);
  animation: floatY 2.4s var(--ease-soft) infinite;
}

/* 2. generic profile skeleton */
.viz-profile { gap: 10px; }
.viz-profile .viz-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--line-2); flex: 0 0 auto; animation: skeletonPulse 1.8s ease-in-out infinite; }
.viz-profile .viz-lines { display: flex; flex-direction: column; gap: 7px; width: 90px; }
.viz-profile .viz-line { height: 7px; border-radius: 4px; background: var(--line-2); animation: skeletonPulse 1.8s ease-in-out infinite; }
.viz-profile .viz-line.l1 { width: 100%; animation-delay: .15s; }
.viz-profile .viz-line.l2 { width: 65%; animation-delay: .3s; }
@keyframes skeletonPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* 3. drop-off chart */
.viz-chart-svg { width: 84%; height: 60%; }
.viz-chart-svg polyline { fill: none; stroke: var(--line-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.viz-chart-svg circle { fill: var(--accent); animation: pulseDot 1.8s ease-out infinite; }

/* 3b. composing blind — waveform with a skip point */
.viz-waveform { padding: 0 16px; }
.wave-bars { display: flex; align-items: center; gap: 3px; height: 42px; }
.wave-bars span { width: 4px; border-radius: 2px; background: var(--line-2); flex: 0 0 auto; }
.skip-line { position: absolute; top: 12px; bottom: 12px; left: 34%; border-left: 2px dashed #ef4444; opacity: .7; }
.skip-badge {
  position: absolute; top: 8px; left: 34%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: #ef4444;
  display: flex; align-items: center; justify-content: center;
  animation: skeletonPulse 1.6s ease-in-out infinite;
}
.skip-badge svg { width: 10px; height: 10px; color: #fff; }

/* 8b. releasing blind — platforms feeding a dice roll */
.viz-luck { flex-direction: column; gap: 8px; }
.luck-platforms { display: flex; gap: 8px; }
.luck-platforms .plat { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.luck-platforms .plat svg { width: 13px; height: 13px; }
.plat.yt { background: #ff3040; color: #fff; }
.plat.ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7); color: #fff; }
.plat.tt { background: #e9e9ec; color: #0a0a0a; }
.luck-arrow { width: 16px; height: 10px; color: var(--mute-2); }
.dice { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-3); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--accent); animation: diceRoll 2.4s ease-in-out infinite; }
.dice svg { width: 15px; height: 15px; }
@keyframes diceRoll { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }

/* 4. irregular calendar */
.viz-calendar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; padding: 0 20px; }
.viz-calendar .cell { width: 13px; height: 13px; border-radius: 3px; background: var(--bg-3); border: 1px solid var(--line); }
.viz-calendar .cell.on { background: rgba(255, 212, 0, .38); border-color: rgba(255, 212, 0, .55); animation: skeletonPulse 2.4s ease-in-out infinite; }

/* 5. likes vs follows */
.viz-compare { gap: 12px; }
.viz-metric { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.viz-metric svg { width: 20px; height: 20px; color: var(--accent); }
.viz-metric.muted svg { color: var(--mute-2); }
.viz-metric span { font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--ink-soft); }
.viz-metric.muted span { color: var(--mute-2); }
.viz-dash { width: 30px; height: 0; border-top: 2px dashed var(--line-2); }

/* 6. gauge stuck in the red */
.viz.viz-gauge { display: block; position: relative; }
.gauge-arc {
  position: absolute; bottom: 14px; left: 50%; margin-left: -46px;
  width: 92px; height: 46px; border-radius: 92px 92px 0 0;
  background: conic-gradient(from 180deg at 50% 100%, var(--ok) 0deg, var(--accent) 90deg, #ef4444 150deg, #ef4444 180deg);
}
.gauge-needle {
  position: absolute; bottom: 14px; left: 50%;
  width: 2px; height: 30px; background: var(--ink-soft); border-radius: 2px;
  transform-origin: bottom center; transform: rotate(58deg);
  animation: needleWobble 2.6s ease-in-out infinite;
}
@keyframes needleWobble { 0%, 100% { transform: rotate(54deg); } 50% { transform: rotate(64deg); } }

/* 7. doing everything alone — orbit */
.viz-orbit { width: 90px; height: 84px; position: relative; }
.orbit-center { position: absolute; top: 50%; left: 50%; margin: -13px 0 0 -13px; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; z-index: 1; }
.orbit-center svg { width: 14px; height: 14px; color: var(--accent); }
.orbit-ring { position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -39px; width: 78px; height: 78px; animation: orbitSpin 12s linear infinite; }
.orbit-item { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px; display: flex; align-items: center; justify-content: center; }
.orbit-item span { display: flex; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); align-items: center; justify-content: center; animation: orbitSpin 12s linear infinite reverse; }
.orbit-item svg { width: 11px; height: 11px; color: var(--mute); }
.orbit-item.i1 { transform: rotate(0deg) translate(39px) rotate(0deg); }
.orbit-item.i2 { transform: rotate(90deg) translate(39px) rotate(-90deg); }
.orbit-item.i3 { transform: rotate(180deg) translate(39px) rotate(-180deg); }
.orbit-item.i4 { transform: rotate(270deg) translate(39px) rotate(-270deg); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* 8. broken chain */
.viz-chain { gap: 0; }
.chain-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-soft); flex: 0 0 auto; }
.chain-line { width: 18px; height: 2px; background: var(--line-2); }
.chain-line.broken { background: repeating-linear-gradient(90deg, var(--line-2) 0 3px, transparent 3px 6px); opacity: .6; }

/* =============================================================
   10b. Solutions section
   ============================================================= */
.solutions { padding: 0 0 100px; }
.solutions-head { text-align: center; max-width: 740px; margin: 0 auto 40px; }
.solutions-title { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); color: var(--ink); max-width: 34ch; margin: 0 auto .45em; }
.solutions-sub { color: var(--mute); font-size: 1rem; margin: 0 auto; }

.solutions-grid-wrap { width: calc(100% - 40px); max-width: 1600px; margin: 0 auto; }
.solutions-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.solutions-cta { display: flex; justify-content: center; margin-top: 44px; }
.solutions-grid .viz { height: 172px; }

/* 1. community — a place that's yours */
.viz-community { flex-direction: column; gap: 10px; }
.community-avatars { display: flex; }
.community-avatars .c-avatar {
  width: 22px; height: 22px; border-radius: 50%; margin-left: -8px;
  background: var(--line-2); border: 2px solid var(--bg-2);
  animation: skeletonPulse 2.4s ease-in-out infinite;
}
.community-avatars .c-avatar:first-child { margin-left: 0; }
.community-avatars .c-avatar:nth-child(2) { animation-delay: .15s; }
.community-avatars .c-avatar:nth-child(3) { animation-delay: .3s; }
.community-avatars .c-avatar:nth-child(4) { animation-delay: .45s; background: var(--accent); opacity: .8; }
.community-bubble {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c1c05, var(--bg-3) 70%);
  border: 1px solid rgba(255, 212, 0, .35);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  animation: glowPulse 3.2s ease-in-out infinite;
}
.community-bubble svg { width: 18px; height: 18px; }
.community-lines { display: flex; flex-direction: column; gap: 6px; width: 78px; }
.community-lines span { height: 6px; border-radius: 4px; background: var(--line-2); animation: skeletonPulse 1.8s ease-in-out infinite; }
.community-lines span:nth-child(1) { width: 100%; }
.community-lines span:nth-child(2) { width: 75%; animation-delay: .15s; }
.community-lines span:nth-child(3) { width: 52%; animation-delay: .3s; }

/* 2. truth — real feedback vs. empty praise */
.viz-truth { flex-direction: column; gap: 10px; }
.truth-bubble { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.truth-bubble svg { width: 18px; height: 18px; }
.truth-bubble.fake { background: var(--bg-3); border: 1px solid var(--line-2); color: var(--mute-2); opacity: .55; animation: skeletonPulse 2.4s ease-in-out infinite; }
.truth-bubble.real {
  background: radial-gradient(circle at 35% 30%, #1c1c05, var(--bg-3) 70%);
  border: 1px solid rgba(255, 212, 0, .45); color: var(--accent);
  animation: glowPulse 3s ease-in-out infinite;
}
.truth-connector { width: 2px; height: 40px; background: repeating-linear-gradient(var(--mute-2) 0 4px, transparent 4px 8px); position: relative; }
.truth-connector::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--accent);
  animation: arrowDrop 2.4s ease-in-out infinite;
}
@keyframes arrowDrop { 0%, 100% { transform: translate(-50%, 0); opacity: .6; } 50% { transform: translate(-50%, 4px); opacity: 1; } }

/* 3. content stack — 15 creativos (vertical, phone-format cards) */
.viz-stack { position: relative; }
.stack-badge {
  position: absolute; top: 16px; right: 26px; z-index: 3;
  background: var(--accent); color: var(--accent-ink); font-family: var(--display); font-weight: 700; font-size: .62rem;
  padding: 2px 7px; border-radius: 99px; animation: skeletonPulse 2.4s ease-in-out infinite;
}
.stack-card {
  position: absolute; width: 52px; height: 96px; border-radius: 10px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; color: var(--mute);
}
.stack-card.c3 { transform: rotate(-13deg) translate(-22px, 10px); }
.stack-card.c2 { transform: rotate(9deg) translate(20px, 6px); }
.stack-card.c1 { background: var(--bg-2); color: var(--accent); box-shadow: var(--shadow); z-index: 2; animation: cardFloat 3.2s ease-in-out infinite; }
.stack-card svg { width: 16px; height: 16px; }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* 4. AI — covers, visualizers, videoclips (portrait frame) */
.viz-ai { position: relative; }
.ai-frame {
  width: 60px; height: 92px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft); position: relative; overflow: hidden;
}
.ai-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent, rgba(255, 212, 0, .38), transparent);
  transform: translateY(-130%); animation: aiShimmer 2.6s ease-in-out infinite;
}
@keyframes aiShimmer { 0% { transform: translateY(-130%); } 60%, 100% { transform: translateY(130%); } }
.ai-frame svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.ai-sparkle { position: absolute; color: var(--accent); animation: sparkleTwinkle 2.6s ease-in-out infinite; }
.ai-sparkle svg { width: 14px; height: 14px; }
.ai-sparkle.s1 { top: 20px; right: 32px; }
.ai-sparkle.s2 { bottom: 20px; left: 34px; width: 10px; animation-delay: 1.2s; }
@keyframes sparkleTwinkle { 0%, 100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }

/* 5. viral — the 100K strategy */
.viz-viral { flex-direction: column; gap: 10px; position: relative; }
.viral-trend { width: 26px; height: 13px; color: var(--accent); opacity: .85; animation: trendRise 2.6s ease-in-out infinite; }
@keyframes trendRise { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-3px); opacity: 1; } }
.viral-count {
  font-family: var(--display); font-weight: 700; font-size: .84rem; color: var(--accent);
  position: relative; z-index: 2; background: var(--bg-2); padding: 5px 11px; border-radius: 99px;
  border: 1px solid rgba(255, 212, 0, .4);
}
.viral-ring {
  position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border-radius: 50%; border: 1px solid rgba(255, 212, 0, .5); animation: viralPulse 3s ease-out infinite;
}
.viral-ring.r2 { animation-delay: .8s; }
.viral-ring.r3 { animation-delay: 1.6s; }
@keyframes viralPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(4.2); opacity: 0; } }

/* 6. formula — checklist building step by step */
.viz-formula { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 30px; }
.formula-step { display: flex; align-items: center; gap: 10px; width: 100%; }
.step-dot {
  width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--line-2);
  flex: 0 0 auto; animation: stepCheck 3.6s ease-in-out infinite;
}
.step-line { height: 6px; border-radius: 4px; background: var(--line-2); }
.formula-step.s2 .step-dot { animation-delay: .4s; }
.formula-step.s3 .step-dot { animation-delay: .8s; }
.formula-step.s4 .step-dot { animation-delay: 1.2s; }
@keyframes stepCheck {
  0%, 8%   { background: transparent; border-color: var(--line-2); transform: scale(1); }
  18%, 82% { background: var(--accent); border-color: var(--accent); transform: scale(1.15); }
  92%, 100% { background: transparent; border-color: var(--line-2); transform: scale(1); }
}

/* 7. secrets — a lock that keeps unlocking insight */
.viz-secrets { flex-direction: column; gap: 14px; }
.secrets-lock {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
}
.secrets-lock svg { width: 24px; height: 24px; }
.lock-shackle { transform-box: fill-box; transform-origin: 100% 100%; animation: unlockShackle 3.4s ease-in-out infinite; }
@keyframes unlockShackle {
  0%, 55%  { transform: rotate(0deg) translate(0, 0); }
  70%      { transform: rotate(-22deg) translate(-1px, -1px); }
  85%, 100% { transform: rotate(0deg) translate(0, 0); }
}
.secrets-spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0; }
.secrets-spark.s1 { top: 36%; left: 20%; animation: secretBurst 3.4s ease-in-out infinite; --dx: -12px; --dy: -8px; }
.secrets-spark.s2 { top: 28%; right: 18%; animation: secretBurst 3.4s ease-in-out infinite .08s; --dx: 12px; --dy: -10px; }
.secrets-spark.s3 { bottom: 20%; left: 50%; animation: secretBurst 3.4s ease-in-out infinite .16s; --dx: 2px; --dy: 12px; }
@keyframes secretBurst {
  0%, 62%   { opacity: 0; transform: translate(0, 0) scale(.5); }
  72%       { opacity: 1; transform: translate(var(--dx), var(--dy)) scale(1); }
  88%, 100% { opacity: 0; transform: translate(calc(var(--dx) * 1.7), calc(var(--dy) * 1.7)) scale(.4); }
}
.secrets-notes { display: flex; flex-direction: column; gap: 6px; width: 76px; }
.secrets-notes span { height: 6px; border-radius: 4px; background: var(--line-2); opacity: .3; animation: secretNoteReveal 3.4s ease-in-out infinite; }
.secrets-notes span:nth-child(1) { width: 100%; }
.secrets-notes span:nth-child(2) { width: 68%; animation-delay: .1s; }
.secrets-notes span:nth-child(3) { width: 84%; animation-delay: .2s; }
@keyframes secretNoteReveal { 0%, 60% { opacity: .3; } 75%, 90% { opacity: 1; } 100% { opacity: .3; } }

/* 8. VIP mentorship — direct line to Tito Acevedo */
.problem-card.is-vip {
  background: linear-gradient(165deg, rgba(255, 212, 0, .1), var(--bg-2) 55%);
  border-color: rgba(255, 212, 0, .4);
  box-shadow: 0 0 0 1px rgba(255, 212, 0, .1), 0 20px 50px -24px rgba(255, 212, 0, .35);
}
.problem-card.is-vip:hover { border-color: rgba(255, 212, 0, .65); background: linear-gradient(165deg, rgba(255, 212, 0, .14), var(--bg-3) 55%); }
.problem-card.is-vip h3 { color: var(--accent); }
.vip-badge {
  display: inline-flex; align-items: center;
  font-family: var(--body); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent); padding: 4px 10px; border-radius: 99px;
  margin-bottom: 10px;
}
.viz-vip { flex-direction: column; gap: 0; }
.vip-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.vip-avatar.user { background: var(--bg-3); border: 1px solid var(--line-2); color: var(--ink-soft); }
.vip-avatar.user svg { width: 20px; height: 20px; }
.vip-avatar.mentor {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  font-family: var(--display); font-weight: 800; font-size: .76rem;
  box-shadow: 0 0 0 4px rgba(255, 212, 0, .15);
}
.vip-line { position: relative; width: 2px; height: 46px; margin: 4px 0; background: linear-gradient(var(--line-2), rgba(255, 212, 0, .55)); }
.vip-pulse {
  position: absolute; left: 50%; top: 0; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px 2px rgba(255, 212, 0, .6);
  animation: vipPulseMove 2.4s ease-in-out infinite;
}
@keyframes vipPulseMove { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* =============================================================
   10c. FAQ
   ============================================================= */
.faq { padding: 0 0 100px; }
.faq-title { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.2rem); text-align: center; margin: 0 auto 36px; }
.faq-list {
  max-width: 860px; margin: 0 auto; padding: 30px;
  border: 1px dashed var(--line-2); border-radius: 20px;
}
.faq-item {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.faq-item.is-visible { opacity: 1; transform: translateY(0); }
.faq-item + .faq-item { margin-top: 14px; }
.faq-q {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px; width: 100%;
  text-align: left;
}
.faq-toggle {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--bg-2); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1; font-weight: 600;
  transition: transform .3s var(--ease-out), background .2s var(--ease-out), border-color .2s var(--ease-out), color .2s var(--ease-out);
}
.faq-q-text {
  padding: 13px 20px; border-radius: 12px; max-width: 72%;
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--ink);
  font-weight: 600; font-size: .94rem;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.faq-q:hover .faq-q-text { border-color: var(--line-2); background: rgba(255,255,255,.04); }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.faq-item.is-open .faq-q-text { border-color: rgba(255, 212, 0, .35); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { color: var(--mute); font-size: .9rem; line-height: 1.6; padding: 12px 20px 4px 20px; max-width: 72%; margin-left: auto; }

/* =============================================================
   10d. Final CTA
   ============================================================= */
.final-cta { padding: 0 0 100px; }
.final-cta-box {
  position: relative; overflow: hidden; text-align: center;
  padding: 72px 24px; border-radius: 24px;
  background: var(--bg-2); border: 1px solid var(--line);
}
.final-cta-box::before {
  content: ""; position: absolute; right: -10%; bottom: -60%; width: 60%; padding-bottom: 60%;
  background: radial-gradient(circle, rgba(255, 212, 0, .22), transparent 70%);
  filter: blur(10px);
}
.final-cta-box h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.5rem); max-width: 30ch; margin: 0 auto 14px; position: relative; }
.final-cta-box p { color: var(--mute); margin: 0 auto 28px; position: relative; }
.final-cta-box .btn { position: relative; }

/* =============================================================
   11. Footer
   ============================================================= */
.site-footer { padding: 0 0 40px; margin-top: 60px; }
.footer-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 22px 28px; border-radius: 20px;
  background: rgba(255, 255, 255, .035); border: 1px solid var(--line);
}
.footer-copy { color: var(--mute-2); font-size: .84rem; }
.footer-mark { justify-self: center; display: block; }
.footer-mark img { height: 34px; width: auto; display: block; }
.footer-social { display: flex; gap: 10px; justify-self: end; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), background .2s var(--ease-out);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255, 212, 0, .06); }
.footer-legal {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px; font-size: .82rem; color: var(--mute-2);
}
.footer-legal a { color: var(--mute-2); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--ink-soft); }
.footer-sep { opacity: .5; }
.footer-cookie-btn { color: var(--mute-2); transition: color .2s var(--ease-out); }
.footer-cookie-btn:hover { color: var(--ink-soft); }

@media (max-width: 640px) {
  .footer-bar { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-social { justify-self: center; }
}

/* cookie consent banner */
.cookie-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 200;
  width: calc(100% - 40px); max-width: 380px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-box {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow);
}
.cookie-banner-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c1c05, var(--bg-3) 70%);
  border: 1px solid rgba(255, 212, 0, .35); color: var(--accent);
  margin-bottom: 14px;
}
.cookie-banner-icon svg { width: 17px; height: 17px; }
.cookie-banner-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.cookie-banner-body p { color: var(--mute); font-size: .85rem; line-height: 1.55; margin-bottom: 16px; }
.cookie-banner-body p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions .btn, .cookie-banner-actions .btn-ghost { font-size: .82rem; padding: 10px 16px; }

/* =============================================================
   12. Form page
   ============================================================= */
.form-page-head { padding: 56px 0 10px; text-align: center; }
.form-page-head h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); max-width: 22ch; margin: 0 auto 14px; }
.form-page-head p { color: var(--mute); max-width: 52ch; margin: 0 auto; }
.form-wrap { max-width: 560px; margin: 46px auto 100px; padding: 0 22px; }

.legal-wrap { max-width: 720px; margin: 46px auto 100px; }
.legal-section + .legal-section { margin-top: 32px; }
.legal-section h2 { font-size: 1.15rem; margin-bottom: 10px; }
.legal-section p { color: var(--mute); font-size: .95rem; line-height: 1.7; }
.legal-section p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field { display: block; margin-bottom: 20px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink);
  font-family: var(--body); font-size: .96rem;
  transition: border-color .2s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-error { color: #ef4444; font-size: .82rem; text-align: center; margin-top: 12px; }
.form-error a { color: inherit; text-decoration: underline; }
.form-note { color: var(--mute-2); font-size: .78rem; margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.is-shown { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--ok); margin: 0 auto 16px; }
.form-success h2 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--mute); }

/* =============================================================
   13. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .hero { padding: 84px 0 20px; }
}
@media (max-width: 480px) {
  .problems-title { font-size: 1.7rem; max-width: 30ch; }
  .solutions-head { margin-left: -8px; margin-right: -8px; }
  .solutions-title { font-size: 1.28rem; }
  .form-page-head h1 { font-size: 1.65rem; }
  .form-page-head p { font-size: .82rem; }
}
@media (max-width: 640px) {
  .header-in { padding: 13px 8px 13px 22px; }
  .brand b { font-size: .88rem; }
  .site-header .btn { padding: 8px 12px; font-size: .74rem; gap: 5px; }
  .site-header .btn svg { width: 11px; height: 11px; }
  .status-pill { font-size: .62rem; gap: 7px; }
  .status-dot { margin-top: 4px; }
  .footer-mark { order: -1; }
  .footer-social { order: 0; }
  .footer-copy { order: 1; }
}
@media (min-width: 960px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .problems-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1180px) {
  .solutions-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   14. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .status-dot, .network-center::before, .scroll-cue svg { animation: none; opacity: 1; transform: none; }
}
