/* ═══════════════════════════════════════════════
   LANDING PAGE — Component-specific styles
   Foundation: ../css/tokens.css
═══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   01 · NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 24px;
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: -.3px;
  color: var(--text-primary);
}
.nav-logo .accent {
  background: var(--gradient-live);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; color: var(--accent-blue);
  letter-spacing: .5px;
}
.nav-status .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-blue); margin-right: 6px; vertical-align: middle;
  box-shadow: 0 0 5px rgba(88,166,255,.5);
  animation: blink 2s ease-in-out infinite;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 7px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
              var(--gradient-live) border-box;
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  cursor: pointer; transition: all .25s; text-decoration: none;
}
.nav-cta:hover {
  box-shadow: 0 0 16px rgba(88,166,255,.2), 0 0 4px rgba(57,208,216,.15);
  color: var(--accent-cyan);
}
.nav-cta .arr { display: inline-block; transition: transform .2s; }
.nav-cta:hover .arr { transform: translateX(3px); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; padding: 6px 12px; border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav-link:hover {
  color: var(--text-primary); background: rgba(240,246,252,.06);
}
.nav-right {
  display: flex; align-items: center; gap: 16px;
}

/* ══════════════════════════════════════════════
   02 · HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 20px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 75% 50%, rgba(88,166,255,.07), transparent 70%),
    radial-gradient(ellipse 35% 35% at 20% 20%, rgba(188,140,255,.05), transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(88,166,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 75% 80% at center, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at center, black 20%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box, var(--gradient-live) border-box;
  color: var(--text-primary);
}
.pill img.emoji { width: 18px; height: 18px; vertical-align: -0.1em; }
h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 700; line-height: 1.06; letter-spacing: -2.5px;
  margin-bottom: 28px; max-width: 840px;
}
.hero-kw {
  position: relative;
  background: var(--gradient-live); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 3.5s ease-in-out infinite;
}
.hero-kw::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  height: 4px; width: 0%;
  background: linear-gradient(90deg, rgba(240,243,246,.6), rgba(240,243,246,.1));
  border-radius: 2px; animation: lr 1.1s cubic-bezier(.4,0,.2,1) .4s forwards;
}
@keyframes lr { to { width: 100%; } }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary); max-width: 580px; line-height: 1.7; margin-bottom: 44px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
}
.hb-blue { background: rgba(88,166,255,.06); border: 1px solid rgba(88,166,255,.15); color: var(--accent-blue); }
.hb-green { background: rgba(63,185,80,.06); border: 1px solid rgba(63,185,80,.15); color: var(--accent-green); }
.hb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-blue); box-shadow: 0 0 5px rgba(88,166,255,.5); animation: blink 2s ease-in-out infinite; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 76px; padding-top: 44px;
  border-top: 1px solid var(--border-subtle);
}
.stat-cell { min-height: 100px; }
.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1;
  color: var(--text-primary); display: block; position: relative;
  height: 1.1em; overflow: hidden;
}
.stat-num::after { content: attr(data-final); visibility: hidden; display: block; height: 0; overflow: hidden; }
.stat-accent {
  background: var(--gradient-live);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; line-height: 1.5; }
.uc-final { display: inline; text-decoration: underline; text-decoration-skip-ink: auto;
  text-decoration-color: rgba(240,243,246,.7); text-underline-offset: 2px; text-decoration-thickness: 2px; }

/* ══════════════════════════════════════════════
   03 · PAIN (scroll-hijack carousel)
══════════════════════════════════════════════ */
.hj-card {
  flex: 0 0 320px; background: var(--bg-card); border: none;
  border-radius: var(--radius-lg); padding: 26px; position: relative;
  overflow: hidden; transition: all .25s;
}
.hj-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1.5px;
  background: linear-gradient(135deg, rgba(88,166,255,.25), rgba(57,208,216,.12), rgba(188,140,255,.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; transition: all .3s;
}
.hj-card:hover::before { background: linear-gradient(135deg, rgba(88,166,255,.5), rgba(57,208,216,.3), rgba(188,140,255,.5)); }
.hj-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.hj-card .hj-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.hj-card .hj-emoji { font-size: 40px; line-height: 1; flex-shrink: 0; }
.hj-card h3 { font-family: 'Inter Tight', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 10px; }
.hj-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════════════════
   04 · WHY STUCK (concept section)
══════════════════════════════════════════════ */
#why-stuck { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.concept-text p { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 22px; }
.concept-text strong { color: var(--text-primary); font-weight: 600; }
.concept-accent { font-size: 19px; color: var(--text-primary); font-weight: 600; margin-top: 8px; }

/* 30/70 split bar */
.split-bar { display: flex; border-radius: var(--radius-md); overflow: hidden; margin: 24px 0; height: 48px; }
.split-30 {
  width: 30%; background: rgba(88,166,255,.12); display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 14px; color: var(--accent-blue);
  border-right: 2px solid var(--bg-secondary);
}
.split-70 {
  width: 70%; background: rgba(57,208,216,.12); display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 14px; color: var(--accent-cyan);
}

/* Config card (macOS style) */
.config-card { background: var(--bg-primary); border: 1px solid var(--border-mid); border-radius: var(--radius-xl); overflow: hidden; }
.config-header { padding: 14px 24px; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 8px; }
.config-dot { width: 10px; height: 10px; border-radius: 50%; }
.config-title { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); font-weight: 600; margin-left: 6px; }
.config-body { padding: 6px 0; }
.config-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border-subtle); transition: background .15s; }
.config-item:last-child { border-bottom: none; }
.config-item:hover { background: rgba(88,166,255,.03); }
.config-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.config-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; color: var(--text-primary); }
.config-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ══════════════════════════════════════════════
   05 · WHAT YOU GET (inside section)
══════════════════════════════════════════════ */
.inside-featured {
  background: var(--bg-secondary); border: 1px solid var(--border-mid); border-radius: var(--radius-xl);
  padding: 40px; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.inside-featured-emoji { font-size: 52px; line-height: 1; margin-bottom: 20px; display: block; }
.inside-featured h3 { font-family: 'Inter Tight', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -.6px; margin-bottom: 14px; }
.inside-featured p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.code-dialog {
  background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 22px 24px; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.8;
}
.code-dialog .comment { color: var(--text-muted); font-size: 12px; }
.code-dialog .q { color: var(--accent-blue); }
.code-dialog .a { color: var(--accent-cyan); }
.code-dialog .divider { height: 1px; background: var(--border-subtle); margin: 12px 0; }

/* Feature cards for scroll-hijack */
.hj-feat {
  flex: 0 0 300px; background: var(--bg-card); border: none;
  border-top: 3px solid var(--accent-blue); border-radius: var(--radius-lg);
  padding: 26px; position: relative; overflow: hidden; transition: all .25s;
}
.hj-feat::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1.5px;
  background: linear-gradient(135deg, rgba(88,166,255,0), rgba(57,208,216,0), rgba(188,140,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; transition: all .3s;
}
.hj-feat:hover::before { background: linear-gradient(135deg, rgba(88,166,255,.4), rgba(57,208,216,.2), rgba(188,140,255,.4)); }
.hj-feat:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.hj-feat:nth-child(2) { border-top-color: var(--accent-cyan); }
.hj-feat:nth-child(3) { border-top-color: var(--accent-purple); }
.hj-feat:nth-child(4) { border-top-color: var(--accent-amber); }
.hj-feat:nth-child(5) { border-top-color: var(--accent-green); }
.hj-feat:nth-child(6) { border-top-color: var(--accent-rose); }
.hj-feat .f-ghost {
  font-family: 'Inter Tight', sans-serif; font-size: 72px; font-weight: 800;
  letter-spacing: -3px; line-height: .85; color: rgba(240,243,246,.05);
  position: absolute; top: 10px; right: 16px; pointer-events: none; user-select: none;
}
.hj-feat .f-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.hj-feat .f-emoji { font-size: 36px; line-height: 1; flex-shrink: 0; }
.hj-feat h3 { font-family: 'Inter Tight', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 8px; color: var(--text-primary); }
.hj-feat p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════
   06 · TIMELINE
══════════════════════════════════════════════ */
.picker { display: flex; gap: 10px; margin-bottom: 40px; }
.pk {
  padding: 10px 24px; border-radius: var(--radius-pill); border: 2px solid var(--border-mid);
  background: transparent; color: var(--text-secondary); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.pk.on {
  border-color: transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, var(--gradient-live) border-box;
  color: var(--text-primary);
}
.tl-wrap { position: relative; }
.tl-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.tl-vp { overflow: hidden; position: relative; }
.tl-vp::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 120px; background: linear-gradient(to left, var(--bg-primary) 45%, transparent); z-index: 5; pointer-events: none; }
.tl-vp::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 100px; background: linear-gradient(to right, var(--bg-primary) 25%, transparent); z-index: 5; pointer-events: none; }
.tl-track { display: flex; gap: 0; will-change: transform; position: relative; }
.tl-line-bg { position: absolute; top: 50px; height: 4px; border-radius: 2px; background: rgba(240,246,252,.04); z-index: 0; }
.tl-line-fill {
  position: absolute; top: 50px; height: 4px; width: 0; border-radius: 2px; z-index: 1;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 16px rgba(57,208,216,.3), 0 0 6px rgba(88,166,255,.2);
}
.tl-line-fill::after {
  content: ''; position: absolute; right: -10px; top: -10px; width: 24px; height: 24px;
  border-radius: 50%; background: rgba(57,208,216,.25);
  box-shadow: 0 0 28px rgba(57,208,216,.5); animation: tip-glow 1s ease-in-out infinite;
}
@keyframes tip-glow { 0%,100% { opacity: .3; transform: scale(.6); } 50% { opacity: 1; transform: scale(1.2); } }
.tl-step { text-align: center; position: relative; z-index: 2; flex-shrink: 0; }
.tl-node {
  width: 54px; height: 54px; border-radius: 50%; background: var(--bg-primary);
  border: 3px solid rgba(240,246,252,.06); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin: 0 auto; position: relative;
  z-index: 3; transition: border-color .4s, box-shadow .4s;
}
.tl-node img.emoji { width: 24px; height: 24px; }
.tl-step.lit .tl-node { border-color: var(--accent-cyan); box-shadow: 0 0 24px rgba(57,208,216,.4), 0 0 8px rgba(88,166,255,.15); }
.tl-shock { position: absolute; inset: -5px; border-radius: 50%; pointer-events: none; z-index: 1; opacity: 0; border: 2px solid var(--accent-cyan); }
.tl-step.lit .tl-shock { animation: shock .6s ease-out forwards; }
@keyframes shock { 0%{opacity:.9;transform:scale(.85)} 20%{opacity:1;transform:scale(1.2)} 40%{opacity:.4;transform:scale(1.05)} 60%{opacity:.9;transform:scale(1.25)} 80%{opacity:.3;transform:scale(1.1)} 100%{opacity:0;transform:scale(1.5)} }
.tl-burst { position: absolute; inset: -8px; border-radius: 50%; pointer-events: none; z-index: 0; opacity: 0; }
.tl-step.lit .tl-burst { animation: burst .8s ease-out .05s forwards; }
@keyframes burst { 0%{opacity:.5;transform:scale(.5);box-shadow:0 0 0 0 rgba(57,208,216,.6)} 50%{opacity:.2;transform:scale(1.8);box-shadow:0 0 24px rgba(57,208,216,.3)} 100%{opacity:0;transform:scale(2.5);box-shadow:0 0 0 0 transparent} }
.tl-step.lit .tl-node::after { content:''; position:absolute; inset:-2px; border-radius:50%; box-shadow:0 0 12px rgba(57,208,216,.2); animation:inner-pulse 2s ease-in-out infinite; }
@keyframes inner-pulse { 0%,100%{opacity:.3} 50%{opacity:.7} }
.tl-time { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; height: 16px; opacity: .15; transition: all .4s; }
.tl-step.lit .tl-time { opacity: 1; color: var(--accent-cyan); }
.tl-content { margin-top: 14px; }
.tl-title { font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -.2px; color: var(--text-primary); margin-bottom: 3px; opacity: .1; transition: opacity .5s; }
.tl-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; opacity: .1; transition: opacity .5s; }
.tl-step.lit .tl-title { opacity: 1; }
.tl-step.lit .tl-desc { opacity: 1; }
.tl-offer .tl-node { border-color: rgba(52,211,153,.08); }
.tl-offer.lit .tl-node { border-color: #34d399; box-shadow: 0 0 28px rgba(52,211,153,.45), 0 0 10px rgba(52,211,153,.2); }
.tl-offer.lit .tl-time { color: #34d399; }
.tl-offer.lit .tl-title { color: #34d399; }
.tl-offer.lit .tl-shock { border-color: #34d399; }
.tl-offer.lit .tl-node::after { box-shadow: 0 0 16px rgba(52,211,153,.25); }
.tl-party { position: absolute; top: -20px; left: 50%; width: 0; height: 0; z-index: 10; pointer-events: none; }
.party-bit { position: absolute; font-size: 18px; opacity: 0; pointer-events: none; will-change: transform; }
.party-bit.go { animation: firework 1.4s ease-out forwards; }
@keyframes firework {
  0%{opacity:0;transform:translate(0,0) scale(.3)}
  12%{opacity:1;transform:translate(var(--dx),var(--dy)) scale(1.1)}
  60%{opacity:.7;transform:translate(calc(var(--dx)*1.4),calc(var(--dy)*1.4)) scale(.9)}
  100%{opacity:0;transform:translate(calc(var(--dx)*1.7),calc(var(--dy)*1.7)) scale(.3)}
}

/* ══════════════════════════════════════════════
   07 · STORIES
══════════════════════════════════════════════ */
.stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.sc { background: var(--bg-card); border-radius: var(--radius-xl); position: relative; overflow: hidden; transition: all .25s; }
.sc::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl); padding: 1.5px;
  background: linear-gradient(135deg, rgba(88,166,255,.2), rgba(57,208,216,.1), rgba(188,140,255,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; transition: all .3s;
}
.sc:hover::before { background: linear-gradient(135deg, rgba(88,166,255,.45), rgba(57,208,216,.25), rgba(188,140,255,.45)); }
.sc:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.4); }
.sc-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-live); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.sc-name { font-family: 'Inter Tight', sans-serif; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.sc-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.sc-quote strong { color: var(--text-primary); font-weight: 700; }
.sc-who { display: flex; align-items: center; gap: 8px; }
.sc-num { font-family: 'Inter Tight', sans-serif; font-weight: 800; letter-spacing: -1px; color: var(--text-primary); }
.sc-num .k { background: var(--gradient-live); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sc-time { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: .3px; }

/* Style: Two-column metrics */
.s8 { padding: 28px; display: flex; flex-direction: column; }
.s8-grid { display: grid; grid-template-columns: 1fr 40px 1fr; margin: 0 0 16px; align-items: center; }
.s8-col { text-align: center; }
.s8-val { font-family: 'Inter Tight', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -.8px; }
.s8-val .k { background: var(--gradient-live); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.s8-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; margin-bottom: 6px; }
.s8-arrow-col { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--accent-green); font-weight: 800; }
.s8-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border-subtle); margin-top: auto; }

/* Style: Result strip */
.s11 { padding: 0; display: flex; flex-direction: column; }
.s11-strip { padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-subtle); }
.s11-body { padding: 20px 28px; flex: 1; display: flex; flex-direction: column; }
.s11-footer { margin-top: auto; padding-top: 14px; }

/* Style: Big Result */
.s2 { padding: 32px; text-align: center; }
.s2-result { font-size: 56px; letter-spacing: -2.5px; margin: 12px 0 6px; }
.s2-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }

/* ══════════════════════════════════════════════
   08 · ABOUT
══════════════════════════════════════════════ */
#about { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-stat {
  background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 18px 20px; text-align: center;
}
.about-stat-num {
  font-family: 'Inter Tight', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -1px; color: var(--text-primary); margin-bottom: 4px;
}
.about-stat-label { font-size: 12px; color: var(--text-secondary); }
.about-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }
.about-text strong { color: var(--text-primary); font-weight: 600; }
.about-highlight {
  background: var(--bg-primary); border: 1px solid var(--border-mid); border-radius: var(--radius-lg);
  padding: 24px; margin-top: 20px;
}
.about-highlight p { font-size: 15px; margin-bottom: 0; }

/* ══════════════════════════════════════════════
   09 · COMMUNITY (format + value)
══════════════════════════════════════════════ */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.community-grid .card { background: var(--bg-card); }
.community-grid .card h3 { font-size: 18px; letter-spacing: -.4px; }
.community-grid .card p { font-size: 14px; }
.comm-emoji { font-size: 44px; line-height: 1; margin-bottom: 18px; display: block; }
.counter-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(63,185,80,.1); border: 1px solid rgba(63,185,80,.22);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600; color: var(--accent-green);
}

/* ══════════════════════════════════════════════
   10 · KNOWLEDGE BASE
══════════════════════════════════════════════ */
#knowledge { background: var(--bg-primary); }
.kb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.kb-topics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.kb-topic {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--bg-card); border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  border: 1px solid var(--border-subtle); transition: all .2s;
}
.kb-topic:hover { border-color: var(--border-active); transform: translateY(-2px); }
.kb-topic .t-emoji { font-size: 20px; flex-shrink: 0; }
.kb-value {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, var(--gradient-live) border-box;
  font-family: 'Inter Tight', sans-serif; font-size: 16px; font-weight: 800; color: var(--text-primary);
}

/* ══════════════════════════════════════════════
   11 · WHO (для кого / не для кого)
══════════════════════════════════════════════ */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wc {
  background: var(--bg-card); border: none; border-radius: var(--radius-xl);
  padding: 36px; position: relative; overflow: hidden;
}
.wc::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl); padding: 1.5px;
  background: linear-gradient(135deg, rgba(88,166,255,.2), rgba(57,208,216,.1), rgba(188,140,255,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.wc-ghost {
  font-family: 'Inter Tight', sans-serif; font-size: 100px; font-weight: 800;
  letter-spacing: -4px; line-height: .8; color: rgba(240,243,246,.03);
  position: absolute; top: 10px; right: 16px; pointer-events: none; user-select: none;
}
.wc-h { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.wc-h h3 { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -.5px; margin: 0; }
.wc-u { display: inline; text-decoration: underline; text-decoration-skip-ink: auto; text-underline-offset: 1px; text-decoration-thickness: 2px; text-decoration-color: var(--accent-cyan); }
.wc-yes .wc-h h3 { color: var(--text-primary); }
.wc-no .wc-h h3 { color: var(--text-muted); }
.wc-u-muted { color: var(--text-muted); display: inline; text-decoration: underline; text-decoration-skip-ink: auto; text-underline-offset: 1px; text-decoration-thickness: 2px; text-decoration-color: rgba(57,208,216,.5); }
.wl { list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--text-secondary); line-height: 1.55; }
.wl li { padding-left: 30px; position: relative; }
.wl b { color: var(--text-primary); font-weight: 600; }
.wl-white { color: var(--text-primary); }
.wl-white b { font-weight: 700; }
.wc-no .wl { color: #6b737d; }
.wc-no .wl b { color: var(--text-secondary); font-weight: 600; }
.wl .lu { display: inline; text-decoration: underline; text-decoration-skip-ink: auto; text-underline-offset: 2px; text-decoration-thickness: 2px; text-decoration-color: var(--accent-cyan); }
.wc-foot { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border-subtle); font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.wl-hover li { transition: opacity .2s; cursor: default; }
.wl-hover:hover li { opacity: .3; }
.wl-hover li:hover { opacity: 1; }
.party-zone { position: relative; }
.party-emoji { position: absolute; font-size: 20px; opacity: 0; pointer-events: none; z-index: 1; will-change: transform, opacity; }
@keyframes float-up {
  0%{opacity:0;transform:translateY(20px) scale(.5) rotate(0deg)}
  15%{opacity:.9;transform:translateY(0) scale(1) rotate(-10deg)}
  80%{opacity:.7;transform:translateY(-80px) scale(.9) rotate(15deg)}
  100%{opacity:0;transform:translateY(-120px) scale(.6) rotate(25deg)}
}
.party-emoji.go { animation: float-up 1.5s ease-out forwards; }

/* ══════════════════════════════════════════════
   12 · ROI
══════════════════════════════════════════════ */
#roi { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.roi-math {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center;
  max-width: 700px; margin: 40px auto 0;
}
.roi-card {
  background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 32px; text-align: center;
}
.roi-card-num {
  font-family: 'Inter Tight', sans-serif; font-size: 42px; font-weight: 800;
  letter-spacing: -1.5px; color: var(--text-primary); margin-bottom: 6px;
}
.roi-card-label { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.roi-arrow { font-size: 32px; color: var(--accent-green); font-weight: 800; }
.roi-lost {
  text-align: center; margin-top: 40px; padding: 28px; border-radius: var(--radius-xl);
  background: rgba(247,120,186,.04); border: 1px solid rgba(247,120,186,.12);
}
.roi-lost-num {
  font-family: 'Inter Tight', sans-serif; font-size: 48px; font-weight: 800;
  letter-spacing: -2px; color: var(--accent-rose); margin-bottom: 8px;
}
.roi-lost-label { font-size: 15px; color: var(--text-secondary); }
.roi-bottom { text-align: center; margin-top: 36px; font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }
.roi-bottom strong { color: var(--text-primary); }

/* ══════════════════════════════════════════════
   13 · PRICING
══════════════════════════════════════════════ */
.pr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.pr {
  background: var(--bg-card); border-radius: var(--radius-xl); padding: 40px 36px;
  position: relative; overflow: visible; transition: all .25s; display: flex; flex-direction: column;
}
.pr::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl); padding: 1.5px;
  background: linear-gradient(135deg, rgba(88,166,255,.15), rgba(57,208,216,.08), rgba(188,140,255,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; transition: all .3s;
}
.pr:hover::before { background: linear-gradient(135deg, rgba(88,166,255,.35), rgba(57,208,216,.18), rgba(188,140,255,.35)); }
.pr:hover { transform: translateY(-3px); }
.pr-premium { background: linear-gradient(165deg, rgba(37,99,235,.06) 0%, var(--bg-card) 30%); }
.pr-premium::before { background: linear-gradient(135deg, rgba(88,166,255,.25), rgba(57,208,216,.15), rgba(188,140,255,.25)) !important; }
.pr-ghost { font-family: 'Inter Tight', sans-serif; font-size: 100px; font-weight: 800; letter-spacing: -4px; line-height: .8; color: rgba(240,243,246,.025); position: absolute; top: 10px; right: 16px; pointer-events: none; user-select: none; }
.pr-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.pr-label-pro { color: var(--accent-cyan); }
.pr-name { font-family: 'Inter Tight', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -.7px; margin-bottom: 6px; color: var(--text-primary); }
.pr-billing { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); margin-bottom: 24px; letter-spacing: .2px; }
.pr-save {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px;
  border-radius: var(--radius-pill); border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient-live) border-box;
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 800; color: var(--text-primary);
  margin-bottom: 24px;
}
.pr-sec { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.pr-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; color: var(--text-primary); font-size: 15px; line-height: 1.55; }
.pr-feats li { display: flex; align-items: baseline; gap: 10px; }
.pr-feats li .fe { font-size: 17px; flex-shrink: 0; }
.pr-feats b { font-weight: 700; }
.pr-bonus-sep { margin: 24px 0 16px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }
.pr-bonus-head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; position: relative; }
.pr-bonus-title { font-family: 'Inter Tight', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.4px; color: var(--text-primary); }
.pr-bonus { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--text-primary); font-size: 15px; line-height: 1.5; }
.pr-bonus li { display: flex; align-items: baseline; gap: 10px; }
.pr-bonus li .fe { font-size: 16px; flex-shrink: 0; }
.pr-bonus b { font-weight: 700; }
.bonus-party { position: relative; }
.bp { position: absolute; font-size: 16px; opacity: 0; pointer-events: none; will-change: transform; }
.bp.go { animation: bp-fly 1.3s ease-out forwards; }
@keyframes bp-fly {
  0%{opacity:0;transform:translate(0,0) scale(.3)}
  12%{opacity:1;transform:translate(var(--dx),var(--dy)) scale(1)}
  60%{opacity:.6;transform:translate(calc(var(--dx)*1.3),calc(var(--dy)*1.3)) scale(.8)}
  100%{opacity:0;transform:translate(calc(var(--dx)*1.6),calc(var(--dy)*1.6)) scale(.3)}
}
.pr-cta-wrap { margin-top: auto; padding-top: 28px; }
.pr-price-line { font-family: 'Inter Tight', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.pr-price-line .pr-period { font-size: 16px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.pr-cta-std {
  display: block; text-align: center; padding: 16px 0; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; cursor: pointer; width: 100%;
  font-family: 'Inter', sans-serif; transition: all .25s; border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, rgba(88,166,255,.4), rgba(57,208,216,.25), rgba(188,140,255,.4)) border-box;
  color: var(--text-primary);
}
.pr-cta-std:hover { box-shadow: 0 0 28px rgba(57,208,216,.25), 0 0 8px rgba(188,140,255,.15); color: var(--accent-cyan); }
.pr-cta-pro {
  display: block; text-align: center; padding: 16px 0; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; cursor: pointer; width: 100%;
  font-family: 'Inter', sans-serif; transition: all .25s; border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient-live) border-box;
  color: var(--text-primary);
}
.pr-cta-pro:hover { box-shadow: 0 0 24px rgba(88,166,255,.2); color: var(--accent-cyan); }
.pr-footer { text-align: center; max-width: 620px; margin: 48px auto 0; }
.pr-foot-qt {
  position: relative; padding: 0 40px;
  font-family: 'Inter Tight', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -.3px; color: var(--text-primary); line-height: 1.5; margin-bottom: 20px;
}
.pr-foot-qt::before { content: '"'; position: absolute; left: 0; top: -8px; font-size: 56px; font-weight: 800; color: rgba(88,166,255,.15); line-height: 1; }
.pr-foot-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

/* ══════════════════════════════════════════════
   14 · FAQ
══════════════════════════════════════════════ */
.fq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.fq-text .lu { display: inline; text-decoration: underline; text-decoration-skip-ink: auto; text-underline-offset: 2px; text-decoration-thickness: 2px; text-decoration-color: var(--accent-cyan); }
.fq-a p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.fq-a strong { color: var(--text-primary); font-weight: 600; }
.fq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1); }
.faq-item {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: var(--border-active); }
.fq-q {
  display: flex; align-items: center; gap: 12px; padding: 18px 24px;
  cursor: pointer; user-select: none; transition: background .15s;
}
.fq-q:hover { background: rgba(240,243,246,.02); }
.fq-emoji { font-size: 22px; flex-shrink: 0; line-height: 1; }
.fq-text { flex: 1; font-size: 16px; font-weight: 600; color: var(--text-primary); letter-spacing: -.2px; }
.fq-arrow {
  font-size: 18px; color: var(--text-muted); transition: transform .3s ease, color .3s;
  flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(240,243,246,.04);
}
.faq-item.open .fq-arrow { transform: rotate(45deg); color: var(--accent-cyan); background: rgba(57,208,216,.08); }
.faq-item.open .fq-a { max-height: 500px; padding: 0 24px 20px 58px; }

/* ══════════════════════════════════════════════
   15 · FINAL CTA
══════════════════════════════════════════════ */
#final-cta { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(57,208,216,.06), transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(88,166,255,.04), transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.final-cta-text { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }
.final-cta-urgency { font-size: 14px; color: var(--text-muted); margin-top: 20px; }

/* ══════════════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .concept-grid, .kb-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .inside-featured { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .pr-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .roi-math { grid-template-columns: 1fr; gap: 16px; }
  .roi-arrow { transform: rotate(90deg); text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-status { display: none; }
  .nav-links { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .inside-featured { padding: 28px; }
  .kb-topics { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .s2-result { font-size: 42px; }
  .s8-val { font-size: 26px; }
  #hero { padding: 16px 0 60px; min-height: auto; }
  .hero-pills { margin-bottom: 20px; }
}
