/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* surfaces */
  --bg:      #060810;
  --bg2:     #0b0e18;
  --s1:      rgba(255,255,255,.04);
  --s2:      rgba(255,255,255,.07);
  --s3:      rgba(255,255,255,.10);

  /* borders */
  --b0:  rgba(255,255,255,.06);
  --b1:  rgba(255,255,255,.10);
  --b2:  rgba(255,255,255,.18);

  /* brand */
  --em:   #10b981;
  --em2:  #34d399;
  --em-d: rgba(16,185,129,.14);
  --gold: #f59e0b;
  --g2:   #fbbf24;
  --g-d:  rgba(245,158,11,.14);

  /* semantic */
  --red:   #f87171;
  --green: #4ade80;

  /* text */
  --t1: #eef2f8;
  --t2: #7b90ae;
  --t3: #3a4a5e;

  /* type */
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* shape */
  --r:   8px;
  --r2: 14px;
  --r3: 20px;

  /* shadows */
  --sh:   0 4px 24px rgba(0,0,0,.45);
  --sh2:  0 12px 48px rgba(0,0,0,.6);
  --sh-g: 0 0 32px rgba(16,185,129,.15);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f1f4f9; --bg2: #e4eaf3;
    --s1: rgba(255,255,255,.7); --s2: rgba(255,255,255,.85); --s3: #ffffff;
    --b0: rgba(0,0,0,.07); --b1: rgba(0,0,0,.11); --b2: rgba(0,0,0,.18);
    --em: #059669; --em2: #10b981; --em-d: rgba(5,150,105,.1);
    --gold: #d97706; --g2: #f59e0b; --g-d: rgba(217,119,6,.1);
    --red: #dc2626; --green: #16a34a;
    --t1: #0d1520; --t2: #4a5e78; --t3: #a0b4c8;
    --sh: 0 4px 24px rgba(0,0,0,.08); --sh2: 0 12px 48px rgba(0,0,0,.12);
    --sh-g: 0 0 32px rgba(5,150,105,.12);
  }
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--em); text-decoration: none; transition: color .2s; }
a:hover { color: var(--em2); }

/* ambient glow */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%,  rgba(16,185,129,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 100%, rgba(245,158,11,.05) 0%, transparent 60%);
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ─── SCROLL PROGRESS ─────────────────────────────────────── */
.sp {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 999;
  background: linear-gradient(90deg, var(--em), var(--gold));
  border-radius: 0 2px 2px 0;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,8,16,.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--b0);
}
.nav-in {
  display: flex; align-items: center; gap: 8px;
  max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 56px;
}
.logo {
  font-weight: 800; font-size: 1rem; letter-spacing: -.4px;
  color: var(--t1); white-space: nowrap; margin-right: 8px;
}
.logo span { color: var(--em); }
.nl { display: flex; gap: 2px; list-style: none; flex: 1; }
.nl a {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .02em; color: var(--t2);
  padding: 6px 14px; border-radius: 99px;
  transition: color .2s, background .2s;
}
.nl a:hover { color: var(--t1); background: var(--s2); }
.nav-pill {
  margin-left: auto;
  background: var(--g-d); border: 1px solid rgba(245,158,11,.25);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; padding: 4px 12px; border-radius: 99px;
  white-space: nowrap;
}
.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 8px;
}
.ham span { display: block; width: 20px; height: 2px; background: var(--t2); border-radius: 2px; transition: .3s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker {
  overflow: hidden; background: var(--bg2);
  border-bottom: 1px solid var(--b0); padding: 9px 0; z-index: 1;
  position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.tk-track {
  display: flex; width: max-content;
  animation: tk 28s linear infinite;
}
.tk-track:hover { animation-play-state: paused; }
.tk-item {
  display: flex; align-items: center; gap: 6px; padding: 0 28px;
  font-size: .75rem; white-space: nowrap; font-weight: 500;
}
.tk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--em); }
.tk-name { color: var(--t1); font-weight: 700; }
.tk-val  { color: var(--em); font-family: var(--mono); font-size: .72rem; }
.tk-sep  { color: var(--t3); padding: 0 6px; }
@keyframes tk { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  position: relative; z-index: 1; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--em); background: var(--em-d); border: 1px solid rgba(16,185,129,.22);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--em); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.04em;
  margin-bottom: 20px;
}
.hero h1 .gr {
  background: linear-gradient(135deg, var(--em2) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.05rem; color: var(--t2); line-height: 1.75; max-width: 500px; margin-bottom: 36px; }
.hero-stats {
  display: flex; gap: 0; margin-bottom: 36px;
  background: var(--s1); border: 1px solid var(--b0); border-radius: var(--r2);
  overflow: hidden;
}
.hs {
  flex: 1; padding: 16px 20px; text-align: center;
  border-right: 1px solid var(--b0);
}
.hs:last-child { border-right: none; }
.hs-n {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em;
  font-family: var(--mono); color: var(--em); display: block;
}
.hs-l { font-size: .72rem; color: var(--t2); margin-top: 3px; display: block; font-weight: 500; }
.hero-warn {
  font-size: .78rem; color: var(--t2); background: var(--s1);
  border: 1px solid var(--b0); border-radius: var(--r);
  padding: 11px 16px; line-height: 1.6;
}

/* Featured card (hero right) */
.feat-card {
  background: var(--s1);
  backdrop-filter: blur(24px);
  border-radius: var(--r3);
  border: 1px solid var(--b1);
  overflow: hidden;
  box-shadow: var(--sh2), var(--sh-g);
  position: relative;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--em), var(--gold));
}
.feat-top {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--b0);
}
.feat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: var(--g-d); border: 1px solid rgba(245,158,11,.25);
  padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
}
.feat-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.feat-sub  { font-size: .8rem; color: var(--t2); }
.feat-rows { padding: 0 24px; }
.feat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--b0); font-size: .85rem;
}
.feat-row:last-child { border-bottom: none; }
.feat-row span:first-child { color: var(--t2); }
.feat-row span:last-child { font-weight: 700; font-family: var(--mono); color: var(--em); font-size: .82rem; }
.feat-row span:last-child.gold { color: var(--gold); }
.feat-score-wrap { padding: 20px 24px; border-top: 1px solid var(--b0); }
.feat-score-label { display: flex; justify-content: space-between; font-size: .75rem; margin-bottom: 8px; color: var(--t2); }
.feat-score-label strong { color: var(--t1); font-family: var(--mono); }
.feat-bar { height: 6px; background: var(--b0); border-radius: 99px; overflow: hidden; }
.feat-fill {
  height: 100%; width: 95%; border-radius: 99px;
  background: linear-gradient(90deg, var(--em), var(--gold));
}
.feat-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 24px 24px; padding: 13px;
  background: linear-gradient(135deg, var(--em), #0ea572);
  color: #fff; font-weight: 700; font-size: .88rem;
  border-radius: var(--r2); border: none;
  transition: opacity .2s, transform .2s; cursor: pointer;
}
.feat-btn:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

/* ─── SECTION ─────────────────────────────────────────────── */
.sec { padding: 88px 0; position: relative; z-index: 1; }
.sec-alt {
  background: var(--bg2);
  border-top: 1px solid var(--b0); border-bottom: 1px solid var(--b0);
}
.sh { text-align: center; margin-bottom: 52px; }
.ey {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sh h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.15;
}
.sh h2 em { font-style: normal; color: var(--em); }
.sh p { color: var(--t2); margin-top: 14px; font-size: .97rem; max-width: 560px; margin-inline: auto; }

/* ─── CRITERIA CHIPS ──────────────────────────────────────── */
.chips {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; display: flex; align-items: center; gap: 10px;
  background: var(--s1); border: 1px solid var(--b0); border-radius: 99px;
  padding: 10px 18px; font-size: .84rem; font-weight: 600;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--b2); background: var(--s2); }
.chip-i { font-size: 1.1rem; }

/* ─── RANKING ACCORDION ───────────────────────────────────── */
.rl {
  display: flex; flex-direction: column;
  border: 1px solid var(--b1); border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--sh);
}
.rr {
  background: var(--s1); border-bottom: 1px solid var(--b0);
  transition: background .25s;
}
.rr:last-child { border-bottom: none; }
.rr.open { background: var(--s2); }

.rh {
  display: grid; grid-template-columns: 60px 1fr 180px auto 36px;
  align-items: center; gap: 20px;
  padding: 20px 28px; cursor: pointer; user-select: none;
}
.rh:focus-visible { outline: 2px solid var(--em); outline-offset: -2px; }

/* rank number */
.rn {
  font-family: var(--mono); font-size: 1.6rem; font-weight: 700;
  color: var(--t3); line-height: 1; text-align: center;
  transition: color .25s;
}
.rr.open .rn { color: var(--gold); }

/* info */
.ri-name { font-size: 1.05rem; font-weight: 700; }
.ri-sub  { font-size: .78rem; color: var(--t2); margin-top: 3px; }

/* score */
.rs { display: flex; align-items: center; gap: 12px; }
.rs-bar { flex: 1; height: 5px; background: var(--b0); border-radius: 99px; overflow: hidden; }
.rs-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--em), var(--gold));
  transition: width .7s cubic-bezier(.4,0,.2,1);
}
.rs-n { font-family: var(--mono); font-size: .78rem; color: var(--t2); min-width: 26px; text-align: right; }

/* badge */
.rb {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px; white-space: nowrap;
}
.rb-gold { background: var(--g-d); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }
.rb-em   { background: var(--em-d); color: var(--em);   border: 1px solid rgba(16,185,129,.3); }

/* chevron */
.rc {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--s2); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--t2);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s, color .25s;
}
.rr.open .rc { transform: rotate(45deg); background: var(--g-d); color: var(--gold); border-color: rgba(245,158,11,.3); }

/* body — animated with max-height */
.rb-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.rr.open .rb-wrap { max-height: 900px; }
.rb-inner {
  padding: 28px 28px 32px 88px;
  border-top: 1px solid var(--b0);
  border-left: 3px solid var(--em);
}

.rb-intro { font-size: .9rem; color: var(--t2); line-height: 1.8; margin-bottom: 28px; }

.rb-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }

/* data table */
.dt { width: 100%; border-collapse: collapse; font-size: .84rem; }
.dt tr { border-bottom: 1px solid var(--b0); }
.dt tr:last-child { border-bottom: none; }
.dt td { padding: 10px 0; }
.dt td:first-child { color: var(--t2); }
.dt td:last-child { text-align: right; font-weight: 700; font-family: var(--mono); font-size: .8rem; }
.ev { color: var(--em); }
.wv { color: var(--gold); }

/* pros / cons */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc-h {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; margin-bottom: 12px; font-family: var(--mono);
}
.pc-h.p { color: var(--em); }
.pc-h.c { color: var(--red); }
.pc-ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-li { font-size: .82rem; color: var(--t2); padding-left: 16px; position: relative; line-height: 1.5; }
.pc-li.p::before { content: '+'; position: absolute; left: 0; color: var(--em); font-weight: 800; font-family: var(--mono); }
.pc-li.c::before { content: '−'; position: absolute; left: 0; color: var(--red); font-weight: 800; font-family: var(--mono); }

/* ideal tag */
.ideal {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 12px 16px;
  background: var(--em-d); border-radius: var(--r);
  border: 1px solid rgba(16,185,129,.2);
  font-size: .84rem; color: var(--t1); line-height: 1.5;
}

/* ─── COMPARISON TABLE ────────────────────────────────────── */
.ct-wrap { overflow-x: auto; border-radius: var(--r2); border: 1px solid var(--b1); box-shadow: var(--sh); }
.ct {
  width: 100%; border-collapse: collapse;
  min-width: 760px; font-size: .82rem;
}
.ct thead tr { background: var(--bg2); }
.ct th {
  padding: 14px 14px; text-align: center;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--t2); border-bottom: 1px solid var(--b1);
}
.ct th:first-child { text-align: left; min-width: 170px; padding-left: 20px; }
.ct td {
  padding: 12px 14px; text-align: center;
  border-bottom: 1px solid var(--b0); font-family: var(--mono); font-size: .78rem;
  transition: background .15s;
}
.ct td:first-child {
  text-align: left; color: var(--t2);
  font-family: var(--sans); font-size: .83rem; padding-left: 20px; font-weight: 500;
}
.ct tr:last-child td { border-bottom: none; }
.ct tbody tr:hover td { background: var(--s1); }
.cy  { color: var(--em); }
.cw  { color: var(--gold); }
.cn  { color: var(--red); opacity: .7; }
.cb  { color: var(--em); font-weight: 700; }
.ch  { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ch-e { font-size: 1.1rem; }
.ch-n { font-size: .7rem; color: var(--t1); font-family: var(--sans); font-weight: 600; }

/* ─── WINNER ──────────────────────────────────────────────── */
.winner {
  border-radius: var(--r3); padding: 40px;
  background: var(--s1); border: 1px solid rgba(245,158,11,.2);
  backdrop-filter: blur(20px);
  display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start;
  margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.winner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--em));
}
.winner::after {
  content: ''; position: absolute; top: -80px; right: -80px; pointer-events: none;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.07) 0%, transparent 70%);
}
.w-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.w-name  { font-size: 2.2rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: 14px; line-height: 1; }
.w-name em { font-style: normal; color: var(--gold); }
.w-desc  { font-size: .9rem; color: var(--t2); line-height: 1.8; margin-bottom: 14px; }
.w-note  { font-size: .78rem; color: var(--t3); font-style: italic; }
.w-stats { display: flex; flex-direction: column; gap: 8px; }
.wsr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; background: var(--s1); border: 1px solid var(--b0);
  border-radius: var(--r); gap: 12px;
}
.wsr-l { font-size: .8rem; color: var(--t2); }
.wsr-v { font-family: var(--mono); font-size: .84rem; font-weight: 700; color: var(--em); }
.wsr-v.g { color: var(--gold); }

.runners { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.runner {
  background: var(--s1); border: 1px solid var(--b0); border-radius: var(--r2);
  padding: 22px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.runner::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--b1); transition: background .25s;
}
.runner:hover { border-color: var(--b2); transform: translateY(-2px); box-shadow: var(--sh); }
.runner:hover::before { background: var(--em); }
.run-pos  { font-size: .7rem; font-family: var(--mono); color: var(--t2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.run-name { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.run-why  { font-size: .82rem; color: var(--t2); line-height: 1.65; margin-bottom: 14px; }
.run-tag  {
  display: inline-block; font-size: .68rem; font-weight: 700; font-family: var(--mono);
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--em); background: var(--em-d); border: 1px solid rgba(16,185,129,.25);
  padding: 3px 10px; border-radius: 99px;
}

/* ai badge */
.ai {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
  padding: 16px 20px; background: var(--s1); border: 1px solid var(--b0);
  border-radius: var(--r2); font-size: .84rem; color: var(--t2); line-height: 1.5;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: var(--em); box-shadow: 0 0 0 3px var(--em-d);
  animation: dot 2.4s ease-in-out infinite;
}
@keyframes dot { 0%,100%{box-shadow:0 0 0 3px var(--em-d)} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }

/* ─── PROFILES ────────────────────────────────────────────── */
.prof-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.prof-card {
  background: var(--s1); border: 1px solid var(--b0); border-radius: var(--r2);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s, background .25s, transform .25s;
}
.prof-card:hover { border-color: var(--b2); background: var(--s2); transform: translateY(-2px); }
.prof-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--em-d); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.prof-name { font-size: 1rem; font-weight: 700; }
.prof-desc { font-size: .82rem; color: var(--t2); line-height: 1.65; flex: 1; }
.prof-sep { height: 1px; background: var(--b0); }
.prof-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); margin-bottom: 4px; font-family: var(--mono); }
.prof-rec  { font-size: .9rem; font-weight: 700; color: var(--em); }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.cta-card {
  background: var(--s1); border: 1px solid var(--b0); border-radius: var(--r2);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.cta-card:hover { border-color: rgba(16,185,129,.35); transform: translateY(-2px); box-shadow: var(--sh), 0 0 20px rgba(16,185,129,.08); }
.cta-accent { height: 3px; background: linear-gradient(90deg, var(--em), var(--gold)); }
.cta-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cta-top { display: flex; align-items: center; gap: 14px; }
.cta-em { font-size: 1.8rem; }
.cta-name { font-size: 1rem; font-weight: 700; }
.cta-sub  { font-size: .78rem; color: var(--t2); }
.cta-txt  { font-size: .85rem; color: var(--t2); line-height: 1.7; flex: 1; }
.cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-radius: var(--r);
  background: var(--em-d); border: 1px solid rgba(16,185,129,.3);
  color: var(--em); font-size: .87rem; font-weight: 700;
  transition: background .2s, border-color .2s, transform .15s;
}
.cta-btn:hover { background: rgba(16,185,129,.22); border-color: var(--em); color: var(--em); transform: none; }
.cta-foot { margin-top: 24px; font-size: .75rem; color: var(--t3); text-align: center; line-height: 1.7; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { border: 1px solid var(--b0); border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh); }
.fq { border-bottom: 1px solid var(--b0); background: var(--s1); }
.fq:last-child { border-bottom: none; }
.fq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--t1); font-family: var(--sans); font-size: .93rem; font-weight: 600;
  text-align: left; gap: 16px; transition: background .2s;
}
.fq-btn:hover { background: var(--s2); }
.fq-ic {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--s2); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--t2);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s, color .25s;
}
.fq.open .fq-ic { transform: rotate(45deg); background: var(--g-d); color: var(--gold); border-color: rgba(245,158,11,.3); }
.fq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.fq.open .fq-body { max-height: 300px; }
.fq-txt {
  padding: 0 24px 20px;
  font-size: .88rem; color: var(--t2); line-height: 1.8;
  border-left: 3px solid var(--gold);
}

/* ─── CROSS-PROMO ────────────────────────────────────────── */
.xp-section {
  padding: 88px 0; position: relative; z-index: 1; overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--b0);
}
.xp-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 100% 50%, rgba(245,158,11,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 50%,  rgba(16,185,129,.05) 0%, transparent 65%);
}
.xp-inner {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.xp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--g-d); border: 1px solid rgba(245,158,11,.22);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 20px;
}
.xp-h {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.15; margin-bottom: 16px;
}
.xp-h em { font-style: normal; color: var(--gold); }
.xp-desc {
  font-size: .97rem; color: var(--t2); line-height: 1.8;
  margin-bottom: 20px; max-width: 520px;
}
.xp-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.xp-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--s1); border: 1px solid var(--b0);
  border-radius: 99px; padding: 6px 14px;
  font-size: .8rem; font-weight: 600; color: var(--t1);
}
.xp-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r2);
  background: linear-gradient(135deg, var(--gold), #e08e00);
  color: #000; font-weight: 800; font-size: .95rem;
  transition: opacity .2s, transform .2s; box-shadow: 0 4px 24px rgba(245,158,11,.3);
}
.xp-cta:hover { opacity: .88; transform: translateY(-2px); color: #000; }
.xp-cta-arrow { font-size: 1.1rem; }

.xp-card {
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--sh2); position: relative;
  backdrop-filter: blur(20px);
}
.xp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--g2));
}
.xp-card-top {
  padding: 24px 24px 20px; border-bottom: 1px solid var(--b0);
}
.xp-card-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: var(--g-d);
  border: 1px solid rgba(245,158,11,.25);
  padding: 4px 10px; border-radius: 99px; margin-bottom: 12px;
}
.xp-card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.xp-card-url   { font-size: .78rem; color: var(--gold); font-family: var(--mono); }
.xp-list { list-style: none; padding: 0 24px; }
.xp-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 0; border-bottom: 1px solid var(--b0);
  font-size: .84rem; color: var(--t2); line-height: 1.5;
}
.xp-list li:last-child { border-bottom: none; }
.xp-list li::before {
  content: '✓'; color: var(--gold); font-weight: 800;
  font-size: .8rem; margin-top: 2px; flex-shrink: 0;
}
.xp-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 24px 24px; padding: 13px;
  background: var(--g-d); border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r2); color: var(--gold);
  font-weight: 700; font-size: .88rem;
  transition: background .2s, border-color .2s;
}
.xp-card-btn:hover { background: rgba(245,158,11,.22); border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
  .xp-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--b0); background: var(--bg2);
  padding: 36px 0; position: relative; z-index: 1;
}
.ft { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.ft-brand { font-size: .95rem; font-weight: 800; color: var(--t1); }
.ft-brand span { color: var(--em); }
.ft-date { font-size: .74rem; color: var(--t3); margin-top: 5px; font-family: var(--mono); }
.ft-note { font-size: .76rem; color: var(--t3); max-width: 500px; line-height: 1.75; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-card { max-width: 480px; }
  .prof-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .rh { grid-template-columns: 48px 1fr auto 32px; gap: 14px; padding: 16px 20px; }
  .rb-wrap .rr:not(.open) .rb  { display: none; }
  .rb { display: none; }
  .rb-inner { padding: 20px; }
  .rb-cols  { grid-template-columns: 1fr; }
  .pc       { grid-template-columns: 1fr; }
  .winner   { grid-template-columns: 1fr; }
  .runners  { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .prof-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nl { display: none; position: absolute; top: 56px; left: 0; right: 0; z-index: 100; flex-direction: column; background: rgba(6,8,16,.98); border-bottom: 1px solid var(--b0); padding: 16px 28px; gap: 4px; }
  .nl.open { display: flex; }
  .nl a { padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--b0); color: var(--t1); }
  .ham { display: flex; }
  .nav-pill { display: none; }

  .hero { padding: 52px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; }
  .hs { border-right: none; border-bottom: 1px solid var(--b0); }
  .hs:last-child { border-bottom: none; }

  .rh { grid-template-columns: 40px 1fr 32px; }
  .rs  { display: none; }
  .rb  { display: none; }

  .runners { grid-template-columns: 1fr; }
  .prof-grid { grid-template-columns: 1fr; }
  .sh h2 { font-size: 1.7rem; }
  .sec { padding: 56px 0; }
  .winner { padding: 24px; }
  .w-name { font-size: 1.6rem; }
}
