/* =============================================================================
   Alpha Lifts — marketing site styles.
   Tokens lifted verbatim from the app (alpha-lifts/src/index.css) so the site and
   the product read as one brand: warm near-black, one burnt-orange accent, warm
   off-white text, Inter + Space Grotesk. Dark-committed (the app's default look);
   a light variant is a documented follow-up.
   ============================================================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/space-grotesk-latin.woff2') format('woff2');
}

:root {
  /* surfaces */
  --bg: #0d0c0b;
  --bg-2: #0f0e0d;
  --bg-sheet: #17140f;
  --hero: oklch(0.28 0.08 40);
  --surface-1: rgba(255,255,255,.03);
  --surface-2: rgba(255,255,255,.05);
  --surface-3: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);

  /* text */
  --text: #f5f0ea;
  --text-2: rgba(245,240,234,.70);
  --text-3: rgba(245,240,234,.45);
  --on-accent: #0d0c0b;

  /* accent + semantic */
  --accent-lch: 0.65 0.19 35;
  --accent: oklch(var(--accent-lch));
  --accent-text: oklch(0.74 0.17 35);
  --accent-soft: oklch(var(--accent-lch) / 0.12);
  --accent-line: oklch(var(--accent-lch) / 0.35);
  --success: oklch(0.72 0.14 155);
  --success-soft: oklch(0.72 0.14 155 / 0.12);
  --info: oklch(0.7 0.13 230);
  --gold: oklch(0.78 0.15 90);

  /* shape */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-pill: 999px;

  /* type */
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --track-label: .14em;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.2,.7,.3,1);
  --ease-spring: cubic-bezier(.34,1.3,.64,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent-text); text-decoration: none; }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

::selection { background: var(--accent-soft); color: var(--text); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }

.num { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

/* ---- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--ease-spring) .18s, background .18s, border-color .18s, color .18s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: oklch(0.7 0.19 38); color: var(--on-accent); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-3); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* ---- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.site-header.scrolled { background: color-mix(in oklab, var(--bg-2) 92%, transparent); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; color: var(--text); font-weight: 700; }
.brand:hover { color: var(--text); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand span { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 10px 18px; font-size: 14px; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav .nav-cta { margin-left: auto; }
}

/* ---- hero ----------------------------------------------------------------- */
.hero { position: relative; padding: clamp(56px, 9vw, 104px) 0 clamp(48px, 7vw, 88px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% 30% auto -10%; height: 620px;
  background: radial-gradient(60% 60% at 30% 30%, var(--hero), transparent 70%);
  opacity: .8; pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-2); max-width: 30em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 15px; height: 15px; color: var(--success); flex: none; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy { max-width: none; }
}

/* ---- phone mockup --------------------------------------------------------- */
.phone {
  --pw: 300px;
  width: var(--pw); margin-inline: auto;
  background: var(--bg-2); border: 1px solid var(--line-strong);
  border-radius: 40px; padding: 12px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.02) inset;
  position: relative;
}
.hero-visual .phone { rotate: 1.5deg; }
.phone-screen {
  background: var(--bg); border-radius: 29px; overflow: hidden;
  aspect-ratio: 300 / 620; display: flex; flex-direction: column;
  position: relative;
  line-height: 1.3; /* the app mockup is compact UI — override the page's loose 1.6 so text boxes don't collide */
}
.phone-notch { position: absolute; top: 10px; left: 50%; translate: -50% 0; width: 96px; height: 22px; background: #000; border-radius: var(--r-pill); z-index: 3; }

/* app screen recreation */
.app-hero { padding: 44px 18px 20px; background: radial-gradient(120% 80% at 50% -10%, var(--hero), transparent 62%); }
.app-daylabel { font-family: var(--font-ui); font-size: 10px; line-height: 1.2; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--accent-text); }
.app-title { font-family: var(--font-display); font-size: 27px; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 4px 0 5px; }
.app-ready { color: var(--text-3); font-size: 12px; line-height: 1.3; margin-bottom: 14px; }
.app-start {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--accent); color: var(--on-accent); font-weight: 700; font-size: 13px;
  padding: 12px; border-radius: var(--r-pill); font-family: var(--font-ui);
}
.app-start svg { width: 15px; height: 15px; }
.app-list { padding: 8px 12px 16px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.app-row {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px 11px;
}
.app-row .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--surface-3); flex: none; display: grid; place-items: center; color: var(--text-2); }
.app-row .ico svg { width: 17px; height: 17px; }
.app-row .thumb { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex: none; background: var(--surface-3); }
.app-row .name { line-height: 1.25; }
.app-row .meta { line-height: 1.3; }
.app-row .body { min-width: 0; flex: 1; }
.app-row .name { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-row .meta { font-size: 10.5px; color: var(--text-3); }
.app-pill { font-family: var(--font-display); font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent-text); border: 1px solid var(--accent-line); flex: none; }
.app-tabbar { margin-top: auto; display: flex; justify-content: space-around; padding: 11px 8px calc(14px); border-top: 1px solid var(--line); background: var(--bg-2); color: var(--text-3); }
.app-tabbar svg { width: 19px; height: 19px; }
.app-tabbar .on { color: var(--accent); }

/* ---- real screenshot device frame ----------------------------------------- */
.shot { width: 300px; margin-inline: auto; border: 9px solid #16130f; border-radius: 42px; overflow: hidden; background: #000; box-shadow: 0 40px 90px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.04); }
.shot img { display: block; width: 100%; height: auto; }
.hero-shot { width: 306px; }
.feature-visual .shot { width: 288px; }
@media (max-width: 800px) { .feature-visual .shot { width: 270px; } }

/* ---- share showcase ------------------------------------------------------- */
.share-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: clamp(40px, 6vw, 64px); padding-top: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line); }
.share-showcase h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.share-showcase p { color: var(--text-2); font-size: 1.05rem; max-width: 42ch; }
.share-card-mock { background: linear-gradient(155deg, #2a1d13, #15110d 62%); border: 1px solid var(--line-strong); border-radius: var(--r-xl); padding: 26px; box-shadow: 0 30px 60px -40px rgba(0,0,0,.9); }
.scm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.scm-brand { font-weight: 700; font-size: 13px; letter-spacing: .06em; color: var(--accent-text); }
.scm-date { font-size: 13px; color: var(--text-3); }
.scm-title { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.02em; }
.scm-sub { color: var(--text-3); font-size: 14px; margin-bottom: 20px; }
.scm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 16px; }
.scm-stat { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 14px; }
.scm-stat span { display: block; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 7px; }
.scm-stat b { font-size: 21px; font-weight: 700; }
.scm-stat b i { font-style: normal; font-size: 12px; color: var(--text-3); font-family: var(--font-ui); margin-left: 3px; }
.scm-gold { color: var(--gold); }
.scm-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; }
.scm-row + .scm-row { margin-top: 8px; }
.scm-row b { font-weight: 700; }
.scm-row:not(.scm-pr) { background: var(--surface-1); border: 1px solid var(--line); color: var(--text-2); }
.scm-pr { background: var(--gold-soft); border: 1px solid var(--gold-line); }
.scm-foot { font-size: 11px; color: var(--text-3); margin-top: 18px; }
@media (max-width: 800px) { .share-showcase { grid-template-columns: 1fr; gap: 26px; } .share-card-mock { max-width: 440px; } }

/* ---- marquee / trust ------------------------------------------------------ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust-cell { background: var(--bg-2); padding: 26px var(--gutter); }
.trust-cell:nth-child(1) { padding-left: var(--gutter); }
.trust-grid { border-radius: 0; }
.trust-cell .k { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.trust-cell .k .accent { color: var(--accent); }
.trust-cell .v { font-size: 13px; color: var(--text-3); margin-top: 3px; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

/* ---- section shell -------------------------------------------------------- */
section { position: relative; }
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section-head { max-width: 620px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--text-2); font-size: 1.08rem; }

/* ---- feature rows (editorial, alternating) -------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; padding: clamp(40px,6vw,64px) 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature.flip .feature-visual { order: 2; }
.feature h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.feature .lede { color: var(--text-2); margin-bottom: 22px; font-size: 1.05rem; }
.feature ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.feature li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.feature li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.feature li b { font-weight: 600; }
@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature.flip .feature-visual { order: 0; }
  .feature-visual { max-width: 420px; }
}

/* mock cards used inside feature visuals */
.mock { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 20px; box-shadow: 0 30px 60px -40px rgba(0,0,0,.9); }
.mock-label { font-size: 10.5px; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }

/* rest timer + set row */
.mock-set { display: flex; align-items: center; gap: 12px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px 14px; }
.mock-set + .mock-set { margin-top: 8px; }
.mock-set .idx { width: 26px; height: 26px; border-radius: 7px; background: var(--surface-3); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--text-2); }
.mock-set .done { background: var(--success-soft); color: var(--success); border: 1px solid oklch(0.72 0.14 155 / 0.4); }
.mock-set .val { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.mock-set .unit { color: var(--text-3); font-weight: 500; font-size: 12px; margin-left: 2px; }
.mock-set .rir { margin-left: auto; font-size: 10.5px; color: var(--text-3); }
.mock-check { width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; margin-left: auto; }
.mock-check.on { background: var(--success); color: var(--on-accent); }
.mock-check.off { border: 1.5px solid var(--line-strong); }
.mock-check svg { width: 15px; height: 15px; }
.rest-bar { margin-top: 14px; display: flex; align-items: center; gap: 12px; background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--r-md); padding: 11px 14px; }
.rest-bar .t { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--accent-text); }
.rest-bar .l { font-size: 12px; color: var(--text-2); }
.rest-bar .skip { margin-left: auto; font-size: 12px; color: var(--text-3); }

/* insights sparkline */
.spark-card .row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.spark-card .big { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.spark-card .delta { font-size: 13px; color: var(--success); font-weight: 600; }
.spark-card .cap { font-size: 12px; color: var(--text-3); }
.spark svg { width: 100%; height: 64px; margin-top: 10px; overflow: visible; }

/* highlight chips */
.hl { display: flex; gap: 11px; align-items: center; padding: 11px 0; }
.hl + .hl { border-top: 1px solid var(--line); }
.hl .dot { width: 32px; height: 32px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-text); display: grid; place-items: center; flex: none; }
.hl .dot svg { width: 17px; height: 17px; }
.hl .txt { font-size: 13.5px; }
.hl .txt b { font-family: var(--font-display); }

/* coach chat */
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.5; }
.bubble.me { align-self: flex-end; background: var(--accent); color: var(--on-accent); border-bottom-right-radius: 5px; }
.bubble.ai { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.proposal { align-self: flex-start; width: 100%; background: var(--bg-2); border: 1px solid var(--accent-line); border-radius: var(--r-md); padding: 12px; }
.proposal .p-h { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 6px; }
.proposal .p-b { font-size: 13px; color: var(--text); margin-bottom: 10px; }
.proposal .p-apply { display: inline-flex; gap: 7px; background: var(--accent); color: var(--on-accent); font-weight: 700; font-size: 12px; padding: 8px 14px; border-radius: var(--r-pill); }

/* strength standards */
.std-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; }
.std-row + .std-row { border-top: 1px solid var(--line); }
.std-row .n { flex: 1; }
.std-row .n .name { font-size: 13.5px; font-weight: 600; }
.std-row .n .sub { font-size: 11.5px; color: var(--text-3); }
.std-row .lvl { font-family: var(--font-ui); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }
.lvl.adv { background: var(--accent-soft); color: var(--accent-text); border: 1px solid var(--accent-line); }
.lvl.int { background: var(--surface-3); color: var(--text-2); }
.lvl.elite { background: oklch(0.78 0.15 90 / 0.14); color: var(--gold); border: 1px solid oklch(0.78 0.15 90 / 0.4); }

/* ---- how it works --------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 28px 24px; position: relative; }
.step .n { counter-increment: step; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent); width: 40px; height: 40px; border-radius: var(--r-pill); border: 1px solid var(--accent-line); background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; }
.step .n::before { content: counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-2); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---- why we built it ------------------------------------------------------ */
.why { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: var(--bg-2); }
.why::before { content: ""; position: absolute; inset: -30% auto auto -10%; width: 620px; height: 620px; background: radial-gradient(50% 50% at 30% 30%, var(--hero), transparent 70%); opacity: .6; pointer-events: none; }
.why-inner { position: relative; z-index: 1; max-width: 720px; padding-left: clamp(0px, 3vw, 28px); border-left: 2px solid var(--accent-line); }
.why-inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 22px; }
.why-inner > p { color: var(--text-2); font-size: 1.1rem; margin-bottom: 18px; max-width: 60ch; }
.why-inner > p:first-of-type { color: var(--text); }
.why-feedback { margin-top: 32px; background: var(--surface-1); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r-lg); padding: 22px 24px; }
.why-feedback h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-feedback p { color: var(--text-2); font-size: 15px; margin: 0; max-width: 58ch; }
.why-feedback a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- pricing -------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.plan { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-soft), transparent 40%), var(--surface-1); }
.plan .tag { font-size: 12px; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.plan.featured .tag { color: var(--accent-text); }
.plan .price { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 14px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-size: 44px; }
.plan .price .per { font-size: 15px; color: var(--text-3); font-family: var(--font-ui); }
.plan .desc { color: var(--text-2); font-size: 14.5px; margin-bottom: 20px; min-height: 44px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
.plan li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.plan .btn { margin-top: auto; width: 100%; }
.plan-foot { text-align: center; color: var(--text-3); font-size: 13px; margin-top: 22px; }

/* $5 transparency breakdown */
.breakdown { max-width: 760px; margin: clamp(44px, 6vw, 64px) auto 0; padding-top: clamp(32px, 5vw, 48px); border-top: 1px solid var(--line); text-align: center; }
.bd-lead { color: var(--text-2); max-width: 46ch; margin: 0 auto 24px; font-size: 1.02rem; }
.bd-bar { display: flex; gap: 3px; height: 14px; border-radius: var(--r-pill); overflow: hidden; margin-bottom: 26px; }
.bd-seg { height: 100%; }
.bd-seg.s1, .bd-dot.s1 { background: var(--accent); }
.bd-seg.s2, .bd-dot.s2 { background: oklch(0.56 0.14 42); }
.bd-seg.s3, .bd-dot.s3 { background: oklch(0.42 0.10 48); }
.bd-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.bd-item { display: flex; gap: 11px; }
.bd-dot { width: 12px; height: 12px; border-radius: 4px; flex: none; margin-top: 5px; }
.bd-item b { font-size: 17px; font-weight: 700; }
.bd-item > div { font-size: 13.5px; font-weight: 600; }
.bd-item p { font-size: 13px; font-weight: 400; color: var(--text-3); margin-top: 4px; }
.bd-note { font-size: 12.5px; color: var(--text-3); margin-top: 24px; }
@media (max-width: 640px) { .bd-legend { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }

/* ---- pre-register --------------------------------------------------------- */
.register { position: relative; overflow: hidden; }
.register::before { content: ""; position: absolute; inset: auto -10% -40% 30%; height: 460px; background: radial-gradient(50% 60% at 60% 40%, var(--hero), transparent 70%); opacity: .7; }
.register-card {
  position: relative; z-index: 1;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px); text-align: center; max-width: 720px; margin-inline: auto;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9);
}
.register-card h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.register-card p { color: var(--text-2); max-width: 40em; margin: 0 auto 28px; }
.reg-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.reg-form input[type=email] {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line-strong); color: var(--text);
  font-family: var(--font-ui); font-size: 15px; padding: 14px 16px; border-radius: var(--r-pill);
}
.reg-form input::placeholder { color: var(--text-3); }
.reg-form input:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.reg-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.reg-msg { min-height: 22px; margin-top: 16px; font-size: 14px; }
.reg-msg.ok { color: var(--success); }
.reg-msg.err { color: var(--danger, #ff8a6b); }
.reg-fine { margin-top: 8px; font-size: 12.5px; color: var(--text-3); }
.reg-form.busy { opacity: .6; pointer-events: none; }
@media (max-width: 520px) { .reg-form { flex-direction: column; } .reg-form .btn { width: 100%; } }

/* ---- FAQ ------------------------------------------------------------------ */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; color: var(--text); font-family: var(--font-ui); font-size: 1.08rem; font-weight: 600; text-align: left; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; }
.faq-q .chev { flex: none; color: var(--text-3); transition: transform .25s var(--ease); }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); color: var(--accent); }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { color: var(--text-2); font-size: 15px; padding: 0 0 22px; max-width: 62ch; }
.faq-a a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- footer --------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(48px,7vw,72px) 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { color: var(--text-3); font-size: 14px; max-width: 30ch; }
.foot-col h4 { font-family: var(--font-ui); font-size: 12px; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-3); margin: 0 0 16px; font-weight: 600; }
.foot-col a { display: block; color: var(--text-2); font-size: 14.5px; margin-bottom: 14px; }
.foot-col a:hover { color: var(--text); }
.foot-col a .fp { display: block; color: var(--text-3); font-size: 11.5px; margin-top: 2px; }
.foot-col a:hover .fp { color: var(--text-3); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 26px; color: var(--text-3); font-size: 13px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* ---- scroll reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.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; }

/* ---- 404 ------------------------------------------------------------------ */
.notfound { min-height: 100vh; min-height: 100dvh; display: grid; place-items: center; text-align: center; padding: 40px 0; position: relative; overflow: hidden; }
.notfound::before { content: ""; position: absolute; inset: -18% 0 auto 0; height: 620px; background: radial-gradient(50% 60% at 50% 30%, var(--hero), transparent 70%); opacity: .6; pointer-events: none; }
.nf-inner { position: relative; z-index: 1; max-width: 540px; }
.nf-inner .brand { justify-content: center; margin-bottom: 30px; }
.nf-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(4.5rem, 15vw, 7.5rem); line-height: 1; letter-spacing: -0.04em; color: var(--accent); margin: 0 0 6px; }
.notfound h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.nf-sub { color: var(--text-2); font-size: 1.05rem; margin: 0 auto 30px; max-width: 34em; }
.nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
