/* ═══════════════════════════════════════════════════════════════
   StrokeInk - Shared Stylesheet
   ═══════════════════════════════════════════════════════════════
   All HTML pages link to this file.
   
   STRUCTURE:
   - Design tokens (:root variables — colors, fonts, spacing)
   - Base reset & body
   - Navigation
   - Section base styles (hero, content)
   - Page-specific components (device, app, pricing, etc.)
   - Footer
   - Page-specific overrides via body classes:
       body.about    → about.html
       body.contact  → contact.html
       body.press    → press.html
       body.legal    → terms.html, privacy.html, refund.html
       (no class)    → index.html (landing)
   - Responsive media queries
   
   TO CHANGE COLORS: edit :root variables at the top.
   TO CHANGE TYPOGRAPHY: edit --sans/--mono in :root.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --bg-3: #151515;
  --bg-4: #1E1E1E;
  --acc: #E8602C;
  --acc-soft: rgba(232,96,44,.12);
  --acc-border: rgba(232,96,44,.28);
  --t1: #ffffff;
  --t2: rgba(255,255,255,.72);
  --t3: rgba(255,255,255,.5);
  --t4: rgba(255,255,255,.32);
  --bd: rgba(255,255,255,.08);
  --bd-strong: rgba(255,255,255,.14);
  --grn: #4CAF7D;
  --red: #E24B4A;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
}

/* Scroll-snap ONLY on the landing page (body.home) — all other pages scroll normally */
html:has(body.home) {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Nav ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--bd);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--acc);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--t3);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--t1); }

/* Hamburger menu button */
.nav-menu-btn {
  background: none;
  border: none;
  color: var(--t2);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu-btn:hover {
  color: var(--t1);
  background: var(--bg-3);
}

/* Dropdown menu with footer-page links */
.nav-menu-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  right: 32px;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  display: none;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
  z-index: 300;
}
.nav-menu-dropdown.open { display: flex; }
.nav-menu-dropdown a {
  font-size: 14px;
  color: var(--t2);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-menu-dropdown a:hover {
  background: var(--bg-3);
  color: var(--t1);
}
.nav-menu-divider {
  height: 1px;
  background: var(--bd);
  margin: 6px 8px;
}

.nav-cta {
  padding: 9px 18px;
  background: var(--acc);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232,96,44,.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,96,44,.35); }

/* ── Sections ────────────────────────────── */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; }

h1 { font-size: 88px; }

h2 { font-size: 56px; }

h3 { font-size: 28px; letter-spacing: -0.02em; }

.lead { font-size: 20px; color: var(--t2); line-height: 1.6; }

/* ── HERO ────────────────────────────────── */
.hero {
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left h1 {
  font-size: 80px;
  margin-bottom: 22px;
}

.hero-left h1 .accent { color: var(--acc); }

.hero-left .lead {
  font-size: 21px;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Stat bar merged into hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--bd);
  padding-top: 36px;
}
.hero-stats-item {
  text-align: center;
  border-left: 1px solid var(--bd);
  padding: 0 16px;
}
.hero-stats-item:first-child { border-left: none; }
.hero-stats-num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stats-num .accent { color: var(--acc); }
.hero-stats-lbl {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.btn-primary {
  padding: 16px 28px;
  background: var(--acc);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(232,96,44,.3);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,96,44,.45); }

.btn-secondary {
  padding: 16px 28px;
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--bd-strong);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}

.btn-secondary:hover { background: var(--bg-3); border-color: var(--bd-strong); }

.hero-note {
  font-size: 13px;
  color: var(--t4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note-dot {
  width: 6px; height: 6px;
  background: var(--grn);
  border-radius: 50%;
}

/* Device mockup */
.device-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 28px;
  padding: 28px 28px 36px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.device-screen {
  width: 100%;
  height: 240px;
  background: #e8e6dc;
  border-radius: 4px;
  padding: 14px;
  font-family: var(--mono);
  color: #1a1a1a;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.2);
}

.scorecard-header {
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.scorecard-title { font-size: 14px; font-weight: 700; letter-spacing: -0.2px; }

.scorecard-sub { font-size: 9px; font-weight: 500; margin-top: 2px; opacity: .7; }

.scorecard-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.score-big {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
}

.score-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: .65;
}

.scorecard-footer {
  border-top: 1px solid #1a1a1a;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
}

.score-mini-bar {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 6px 0 4px;
}

.score-mini-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
}

.score-mini-dot.done { background: #1a1a1a; }

.score-mini-dot.current { background: #1a1a1a; box-shadow: 0 0 0 2px rgba(0,0,0,.2); }

.device-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
}

.device-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--t3);
  font-weight: 700;
}

.device-btn.center { width: 36px; height: 36px; }

.device-brand {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,.18);
  letter-spacing: 0.2em;
}

/* ── PROBLEM SECTION ─────────────────────── */
.problem {
  background: var(--bg-2);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: none;
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.problem h2 {
  font-size: 60px;
  margin-bottom: 16px;
  max-width: 880px;
}

.problem h2 .accent { color: var(--acc); }

.problem .lead {
  max-width: 680px;
  margin-bottom: 80px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  background: var(--bg-3);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 36px;
}

.compare-card.bad .compare-tag { color: var(--red); background: rgba(226,75,74,.1); border-color: rgba(226,75,74,.25); }

.compare-card.good { background: var(--bg-4); border-color: var(--acc-border); }

.compare-card.good .compare-tag { color: var(--acc); background: var(--acc-soft); border-color: var(--acc-border); }

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 5px;
  border: 1px solid;
  margin-bottom: 20px;
}

.compare-title { font-size: 24px; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.02em; }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.5;
}

.compare-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
}

.bad .compare-icon { background: rgba(226,75,74,.15); color: var(--red); }

.good .compare-icon { background: rgba(76,175,125,.15); color: var(--grn); }

/* ── STORY SECTION ───────────────────────── */
.story-section {
  padding: 100px 32px;
  max-width: none;
  margin: 0;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
}

.story-section h2 {
  font-size: 56px;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.story-section h2 .accent { color: var(--acc); }

.story-content p {
  font-size: 19px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 22px;
}

.story-content p strong { color: var(--t1); font-weight: 600; }

.story-content p em { color: var(--t1); font-style: italic; }

.story-quote {
  font-size: 24px !important;
  color: var(--t1) !important;
  line-height: 1.4 !important;
  font-style: italic;
  padding: 24px 28px;
  border-left: 3px solid var(--acc);
  background: var(--bg-3);
  border-radius: 0 12px 12px 0;
  margin: 32px 0 !important;
  font-weight: 500;
}

.story-signoff {
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
}

.story-signoff a {
  color: var(--acc);
  font-weight: 600;
  font-size: 16px !important;
  transition: opacity 0.15s;
}

.story-signoff a:hover { opacity: 0.85; }

/* ── DEVICE ──────────────────────────────── */
.device-section {
  display: block;
  padding-top: 60px;
  padding-bottom: 60px;
}

.device-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.device-section h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.device-section h2 .accent { color: var(--acc); }

.device-section .lead { margin-bottom: 0; font-size: 17px; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: none;
}

.course-sync-highlight {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-4) 100%);
  border: 1px solid var(--acc-border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  max-width: none;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.course-sync-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--acc-soft);
  border: 1px solid var(--acc-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-sync-body { flex: 1; }

.course-sync-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.course-sync-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.course-sync-title .accent { color: var(--acc); }

.course-sync-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  margin-bottom: 14px;
}

.course-sync-desc strong { color: var(--t1); font-weight: 600; }

.course-sync-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.course-sync-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 4px;
  color: var(--t2);
}

.spec {
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--bd);
  border-radius: 10px;
}

.spec-icon { font-size: 16px; margin-bottom: 6px; }

.spec-title { font-size: 13px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }

.spec-desc { font-size: 11px; color: var(--t3); line-height: 1.4; }

.device-visual-right {
  display: flex;
  justify-content: center;
}

/* ── THE APP ─────────────────────────────── */
.app-section {
  text-align: center;
  background: var(--bg-2);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: none;
  padding-top: 80px;
  padding-bottom: 80px;
}

.app-inner { max-width: 1280px; margin: 0 auto; }

.app-section h2 { font-size: 48px; margin-bottom: 16px; }

.app-section h2 .accent { color: var(--acc); }

.app-section .lead { max-width: 720px; margin: 0 auto 50px; font-size: 17px; }

.phones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9/19;
  background: #0a0a0a;
  border-radius: 28px;
  padding: 6px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #151515;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.phone-status {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 9px;
  font-weight: 600;
  color: var(--t1);
  flex-shrink: 0;
}

.phone-content {
  flex: 1;
  padding: 6px 11px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px 2px;
}

.phone-title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }

.phone-badge {
  padding: 2px 6px;
  background: var(--acc-soft);
  border: 1px solid var(--acc-border);
  color: var(--acc);
  border-radius: 3px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.phone-caption {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: -0.01em;
}

.phone-caption-sub { font-size: 13px; color: var(--t3); margin-top: 6px; max-width: 240px; margin-left: auto; margin-right: auto; line-height: 1.5; }

.phone-block { text-align: center; }

/* App mockup inner components */
.mock-chips { display: flex; gap: 4px; margin-bottom: 4px; }

.mock-chip {
  font-size: 7px;
  font-weight: 600;
  padding: 3px 7px;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--t2);
}

.mock-chip.active { background: var(--acc-soft); border-color: var(--acc-border); color: var(--acc); }

.mock-summary {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 7px;
  padding: 7px 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-summary-label { font-size: 7px; font-weight: 700; color: var(--t3); letter-spacing: 0.08em; text-transform: uppercase; }

.mock-summary-val { font-size: 11px; font-weight: 700; color: var(--t1); }

.mock-round {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 7px;
  padding: 7px 9px;
}

.mock-round-top { display: flex; justify-content: space-between; align-items: flex-start; }

.mock-round-course { font-size: 9px; font-weight: 700; color: var(--t1); }

.mock-round-meta { font-size: 7px; color: var(--t3); margin-top: 1px; }

.mock-round-score { font-size: 16px; font-weight: 700; letter-spacing: -0.5px; line-height: 1; }

.mock-round-diff { font-size: 8px; font-weight: 700; text-align: right; margin-top: 1px; }

.mock-round-diff.up { color: var(--red); }

.mock-round-diff.dn { color: var(--grn); }

.mock-round-stats { display: flex; gap: 8px; margin-top: 5px; padding-top: 5px; border-top: 1px solid var(--bd); }

.mock-round-stat { font-size: 7px; color: var(--t3); display: flex; align-items: center; gap: 3px; }

.mock-round-stat strong { color: var(--t2); font-weight: 700; }

.mock-perf {
  background: var(--bg-4);
  border: 1px solid var(--acc-border);
  border-radius: 7px;
  padding: 8px 10px;
}

.mock-perf-label { font-size: 7px; font-weight: 700; color: var(--acc); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }

.mock-perf-val { display: flex; align-items: baseline; gap: 6px; }

.mock-perf-num { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; line-height: 1; color: var(--t1); }

.mock-perf-delta { font-size: 9px; font-weight: 700; color: var(--grn); }

.mock-perf-sub { font-size: 7px; color: var(--t3); margin-top: 4px; }

.mock-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mock-stat-cell {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 6px;
  padding: 7px 8px;
}

.mock-stat-val { font-size: 14px; font-weight: 700; letter-spacing: -0.3px; color: var(--t1); }

.mock-stat-lbl { font-size: 6px; font-weight: 700; color: var(--t3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px; }

.mock-leaks {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 7px;
  padding: 8px 10px;
}

.mock-leaks-label { font-size: 7px; font-weight: 700; color: var(--t3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }

.mock-leak-row { display: flex; justify-content: space-between; align-items: center; padding: 3px 0; font-size: 9px; }

.mock-leak-bar { flex: 1; height: 3px; background: var(--bg); border-radius: 2px; margin: 0 6px; overflow: hidden; }

.mock-leak-bar-fill { height: 100%; background: var(--red); border-radius: 2px; }

.mock-leak-val { font-size: 8px; color: var(--red); font-weight: 700; }

.mock-social-tabs {
  display: flex;
  gap: 10px;
  padding: 0 2px;
  border-bottom: 1px solid var(--bd);
  margin-bottom: 4px;
}

.mock-social-tab {
  font-size: 8px;
  font-weight: 700;
  padding: 5px 0;
  color: var(--t3);
}

.mock-social-tab.active { color: var(--acc); border-bottom: 1.5px solid var(--acc); }

.mock-post {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 8px;
}

.mock-post-head { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }

.mock-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mock-post-name { font-size: 9px; font-weight: 700; }

.mock-post-time { font-size: 7px; color: var(--t3); }

.mock-post-card {
  background: rgba(76,175,125,.08);
  border: 1px solid rgba(76,175,125,.25);
  border-radius: 6px;
  padding: 5px 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.mock-post-text { font-size: 8px; color: var(--t2); line-height: 1.4; margin-bottom: 5px; }

.mock-post-text .accent { color: var(--acc); font-weight: 600; }

.mock-post-engage { display: flex; gap: 10px; font-size: 7px; color: var(--t3); padding: 4px 0 3px; border-top: 1px solid var(--bd); }

.mock-comment { display: flex; gap: 4px; align-items: center; padding: 2px 0; font-size: 7px; color: var(--t3); }

.mock-comment strong { color: var(--t2); font-weight: 700; }

.mock-comment .mock-avatar { width: 12px; height: 12px; font-size: 6px; }

/* ── PRICING ─────────────────────────────── */
.pricing { text-align: center; padding-top: 80px; padding-bottom: 80px; }

.pricing h2 { font-size: 44px; margin-bottom: 14px; }

.pricing h2 .accent { color: var(--acc); }

.pricing .lead { max-width: 580px; margin: 0 auto 40px; font-size: 16px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-3);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px 26px;
  text-align: left;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-4) 100%);
  border: 1px solid var(--acc-border);
  box-shadow: 0 0 0 1px var(--acc-border), 0 20px 50px rgba(0,0,0,.4);
}

.price-tag {
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.price-card .price-tag.free { background: var(--bd); color: var(--t2); }

.price-card .price-tag.pro {
  background: var(--acc);
  color: #fff;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price-number { font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }

.price-period { font-size: 13px; color: var(--t3); font-weight: 500; }

.price-desc { font-size: 13px; color: var(--t3); margin-bottom: 18px; line-height: 1.5; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.4;
}

.price-check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(76,175,125,.15);
  border: 1px solid rgba(76,175,125,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grn);
  font-size: 8px;
  font-weight: 700;
}

.price-features li.locked {
  color: var(--t4);
}

.price-features li.locked .price-check {
  background: rgba(255,255,255,.04);
  border-color: var(--bd);
  color: var(--t4);
}

.price-cta {
  width: 100%;
  padding: 11px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--bd-strong);
  background: transparent;
  color: var(--t1);
}

.price-card.featured .price-cta {
  background: var(--acc);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(232,96,44,.3);
}

.price-footnote {
  margin-top: 10px;
  font-size: 10px;
  color: var(--t4);
  text-align: center;
}

.pricing-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--t4);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── WAITLIST ────────────────────────────── */
.waitlist {
  background: linear-gradient(180deg, var(--bg) 0%, #1a0d05 100%);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: none;
  text-align: center;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}

.waitlist-inner { max-width: 640px; margin: 0 auto; }

.waitlist h2 {
  font-size: 64px;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.waitlist h2 .accent { color: var(--acc); }

.waitlist .lead { font-size: 19px; margin-bottom: 44px; }

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.waitlist-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-4);
  border: 1px solid var(--bd-strong);
  border-radius: 10px;
  font-size: 15px;
  color: var(--t1);
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.15s;
}

.waitlist-input:focus { border-color: var(--acc); }

.waitlist-input::placeholder { color: var(--t4); }

.waitlist-btn {
  padding: 16px 24px;
  background: var(--acc);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,96,44,.3);
  transition: transform 0.15s;
  white-space: nowrap;
}

.waitlist-btn:hover { transform: translateY(-2px); }

.waitlist-fineprint { font-size: 12px; color: var(--t4); }

.waitlist-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--bd);
}

.waitlist-stat-num { font-size: 28px; font-weight: 700; color: var(--t1); letter-spacing: -0.04em; }

.waitlist-stat-lbl { font-size: 11px; color: var(--t3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ── Footer ──────────────────────────────── */
footer {
  background: #050505;
  padding: 60px 32px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img { height: 24px; width: auto; display: block; margin-bottom: 14px; }

.footer-tag { font-size: 13px; color: var(--t3); max-width: 280px; line-height: 1.5; }

.footer-col h4 {
  font-size: 11px;
  color: var(--t3);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a { font-size: 14px; color: var(--t2); transition: color 0.15s; }

.footer-col a:hover { color: var(--t1); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--t4);
}

.social-links { display: flex; gap: 18px; }

.social-links a { color: var(--t3); transition: color 0.15s; }

.social-links a:hover { color: var(--acc); }

.social-links svg { display: block; }

.stats-strip {
  padding: 80px 32px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  background: var(--bg-2);
  max-width: none;
  margin: 0;
}

.stats-strip-eyebrow {
  text-align: center;
  margin-bottom: 64px;
}

.stats-strip-eyebrow .section-tag {
  margin-bottom: 16px;
}

.stats-strip-eyebrow h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.stats-strip-eyebrow h2 .accent { color: var(--acc); }

.stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats-strip-item {
  padding: 24px 16px;
  border-left: 1px solid var(--bd);
}

.stats-strip-item:first-child { border-left: none; }

.stats-strip-num {
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.stats-strip-lbl {
  font-size: 12px;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SCROLL SNAP ─────────────────────────── */
.hero,
.stats-strip,
.problem,
.story-section,
.device-section,
.app-section,
.pricing,
.waitlist {
  scroll-snap-align: start;
  min-height: 100vh;
}

/* Footer joins the snap chain so it's accessible after the last section */
footer {
  scroll-snap-align: start;
}

/* Vertically center content in shorter sections */
.stats-strip,
.pricing,
.waitlist {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  html:has(body.home) {
    scroll-snap-type: none;
  }
  .hero, .stats-strip, .problem, .story-section,
  .device-section, .app-section, .pricing, .waitlist {
    min-height: auto;
  }
  h1 { font-size: 56px !important; }
  h2 { font-size: 40px !important; }
  h3 { font-size: 22px !important; }
  section { padding: 80px 24px; }
  .hero { padding-top: 40px; gap: 40px; }
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-left h1 { font-size: 60px !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .hero-stats-item { padding: 18px 12px; border-left: 1px solid var(--bd); border-top: 1px solid var(--bd); }
  .hero-stats-item:nth-child(odd) { border-left: none; }
  .hero-stats-item:nth-child(1), .hero-stats-item:nth-child(2) { border-top: none; }
  .hero-stats-num { font-size: 40px; }
  .device-top { grid-template-columns: 1fr; gap: 32px; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .phones-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 12px !important; padding: 7px 14px; }
  .waitlist h2 { font-size: 38px !important; }
  .waitlist-form { flex-direction: column; }
  .waitlist-stats { gap: 24px; }
  .stats-strip { padding: 60px 24px; }
  .stats-strip-eyebrow h2 { font-size: 36px !important; }
  .stats-strip-eyebrow { margin-bottom: 40px; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stats-strip-item { padding: 20px 12px; border-left: 1px solid var(--bd) !important; border-top: 1px solid var(--bd); }
  .stats-strip-item:nth-child(1), .stats-strip-item:nth-child(2) { border-top: none; }
  .stats-strip-item:nth-child(odd) { border-left: none !important; }
  .stats-strip-num { font-size: 48px !important; }
  .story-section { padding: 60px 24px; }
  .story-section h2 { font-size: 36px !important; }
  .story-content p { font-size: 16px; }
  .story-quote { font-size: 19px !important; padding: 18px 20px; }
}

/* Nav */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--bd); }

/* Page */
.page-header { max-width: 920px; margin: 0 auto; padding: 100px 32px 60px; }

.page-header h1 { font-size: 72px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; }

.page-header h1 .accent { color: var(--acc); }

.page-header .lead { font-size: 21px; color: var(--t2); line-height: 1.6; max-width: 720px; }

.content { max-width: 720px; margin: 0 auto; padding: 0 32px 100px; }

.content section { margin-bottom: 60px; padding: 0; max-width: none; }

.content h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }

.content h2 .accent { color: var(--acc); }

.content p { font-size: 17px; color: var(--t2); line-height: 1.7; margin-bottom: 16px; }

.content p strong { color: var(--t1); font-weight: 600; }

.content blockquote { font-size: 22px; color: var(--t1); line-height: 1.4; font-style: italic; padding: 24px 28px; border-left: 3px solid var(--acc); background: var(--bg-3); border-radius: 0 12px 12px 0; margin: 28px 0; }

.callout { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 16px; padding: 28px 32px; margin: 32px 0; }

.callout-tag { font-size: 11px; font-weight: 700; color: var(--acc); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }

.callout p { color: var(--t1); font-size: 16px; margin: 0; }

.timeline { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.timeline-item { display: flex; gap: 16px; align-items: flex-start; }

.timeline-marker { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--acc); }

.timeline-marker.done { background: var(--acc-soft); border-color: var(--acc-border); }

.timeline-content { flex: 1; padding-top: 4px; }

.timeline-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }

.timeline-content p { font-size: 15px; color: var(--t3); margin: 0; line-height: 1.5; }

.cta-banner { background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-4) 100%); border: 1px solid var(--acc-border); border-radius: 20px; padding: 48px; text-align: center; margin: 40px 0; }

.cta-banner h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }

.cta-banner p { font-size: 16px; color: var(--t2); margin-bottom: 24px; }

/* Footer */
footer { background: #050505; padding: 60px 32px 30px; }

nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--bd); }

.page-header { max-width: 920px; margin: 0 auto; padding: 100px 32px 60px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }

.contact-card { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.2s; }

.contact-card:hover { border-color: var(--acc-border); transform: translateY(-2px); }

.contact-card .label { font-size: 11px; font-weight: 700; color: var(--acc); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }

.contact-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }

.contact-card p { font-size: 14px; color: var(--t3); margin-bottom: 20px; line-height: 1.5; }

.contact-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--acc); transition: opacity 0.15s; }

.contact-link:hover { opacity: 0.85; }

.contact-link::after { content: '→'; transition: transform 0.15s; }

.contact-link:hover::after { transform: translateX(4px); }

.info-section { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 16px; padding: 36px; margin-bottom: 32px; }

.info-section h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }

.info-section p { font-size: 15px; color: var(--t2); line-height: 1.6; margin-bottom: 12px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }

.info-item .info-label { font-size: 11px; font-weight: 700; color: var(--t3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }

.info-item .info-value { font-size: 16px; font-weight: 600; color: var(--t1); }

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 12px; padding: 20px 24px; }

.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }

.faq-item p { font-size: 14px; color: var(--t3); line-height: 1.5; }

.faq-item p a { color: var(--acc); }

footer { background: #050505; padding: 60px 32px 30px; }

.section-block { margin-bottom: 60px; }

.section-block h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 24px; }

.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fact-card { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 12px; padding: 20px 24px; }

.fact-label { font-size: 11px; font-weight: 700; color: var(--acc); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }

.fact-value { font-size: 16px; font-weight: 500; color: var(--t1); line-height: 1.5; }

.boilerplate { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 16px; padding: 32px; font-size: 16px; color: var(--t2); line-height: 1.7; }

.boilerplate p { margin-bottom: 12px; }

.boilerplate p:last-child { margin-bottom: 0; }

.copy-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--bg-4); border: 1px solid var(--bd-strong); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--t2); margin-top: 16px; cursor: pointer; transition: background 0.15s, color 0.15s; }

.copy-btn:hover { background: var(--bg); color: var(--t1); border-color: var(--acc); }

.assets-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.asset-card { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 12px; padding: 24px; text-align: center; transition: border-color 0.2s, transform 0.2s; }

.asset-card:hover { border-color: var(--acc-border); transform: translateY(-2px); }

.asset-preview { width: 100%; aspect-ratio: 1; background: var(--bg-4); border: 1px solid var(--bd); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.asset-preview .logo-mini { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

.asset-preview .logo-mini .logo-dot { width: 8px; height: 8px; background: var(--acc); border-radius: 50%; }

.asset-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }

.asset-card p { font-size: 12px; color: var(--t3); margin-bottom: 14px; }

.asset-download { font-size: 12px; font-weight: 600; color: var(--acc); }

.asset-download::after { content: ' ↓'; }

.quote-grid { display: flex; flex-direction: column; gap: 20px; }

.quote-card { background: var(--bg-3); border-left: 3px solid var(--acc); border-radius: 0 12px 12px 0; padding: 24px 28px; }

.quote-text { font-size: 18px; color: var(--t1); font-style: italic; line-height: 1.5; margin-bottom: 12px; }

.quote-author { font-size: 13px; color: var(--t3); }

.contact-cta { background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-4) 100%); border: 1px solid var(--acc-border); border-radius: 20px; padding: 40px; text-align: center; }

.contact-cta h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }

.contact-cta p { font-size: 15px; color: var(--t2); margin-bottom: 20px; }

a:hover { text-decoration: underline; }

.logo:hover { text-decoration: none; }

.effective { font-size: 14px; color: var(--t3); }

.disclaimer-banner { background: var(--warn-soft); border: 1px solid var(--warn-border); border-radius: 12px; padding: 18px 22px; margin-bottom: 40px; display: flex; gap: 14px; align-items: flex-start; }

.disclaimer-banner .icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--warn); color: #1a1a1a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }

.disclaimer-banner .text { font-size: 13px; color: var(--t2); line-height: 1.5; }

.disclaimer-banner .text strong { color: var(--warn); }

.toc { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 12px; padding: 24px 28px; margin-bottom: 50px; }

.toc h4 { font-size: 11px; font-weight: 700; color: var(--acc); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }

.toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: 24px; }

.toc li { counter-increment: toc; padding: 5px 0; font-size: 14px; }

.toc li::before { content: counter(toc) ". "; color: var(--t4); }

.toc a { color: var(--t2); }

.toc a:hover { color: var(--acc); }

.legal-section { margin-bottom: 40px; scroll-margin-top: 80px; }

.legal-section h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--t1); }

.legal-section p { font-size: 15px; color: var(--t2); margin-bottom: 14px; }

.legal-section ul, .legal-section ol { font-size: 15px; color: var(--t2); margin-bottom: 14px; padding-left: 24px; }

.legal-section li { margin-bottom: 6px; }

.legal-section strong { color: var(--t1); font-weight: 600; }

.summary-box { background: var(--bg-3); border: 1px solid var(--acc-border); border-radius: 16px; padding: 28px 32px; margin-bottom: 50px; }

.summary-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

.summary-box ul { list-style: none; padding: 0; }

.summary-box li { padding: 8px 0; font-size: 14px; color: var(--t2); display: flex; gap: 10px; align-items: flex-start; }

.summary-box li::before { content: '✓'; color: var(--grn); font-weight: 700; flex-shrink: 0; }

.legal-section table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }

.legal-section th { text-align: left; padding: 12px 16px; background: var(--bg-3); color: var(--t1); font-weight: 700; border: 1px solid var(--bd); }

.legal-section td { padding: 12px 16px; border: 1px solid var(--bd); color: var(--t2); vertical-align: top; }

.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }

.quick-card { background: var(--bg-3); border: 1px solid var(--bd); border-radius: 14px; padding: 24px; }

.quick-card.featured { border-color: var(--acc-border); background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-4) 100%); }

.quick-card .quick-icon { font-size: 28px; margin-bottom: 14px; }

.quick-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--t1); }

.quick-card p { font-size: 14px; color: var(--t2); line-height: 1.5; }

.step-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }

.step { display: flex; gap: 16px; align-items: flex-start; }

.step-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--acc-soft); border: 1px solid var(--acc-border); color: var(--acc); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }

.step-text { flex: 1; padding-top: 4px; }

.step-text h4 { font-size: 16px; font-weight: 700; color: var(--t1); margin-bottom: 4px; }

.step-text p { font-size: 14px; color: var(--t3); margin: 0; line-height: 1.5; }


/* === RESPONSIVE === */

/* From about.html */
@media (max-width: 900px) {
  .page-header h1 { font-size: 44px; }
  .page-header { padding: 60px 24px 40px; }
  .content { padding: 0 24px 60px; }
  .content h2 { font-size: 28px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* From contact.html */
@media (max-width: 900px) {
  .page-header h1 { font-size: 44px; }
  .page-header { padding: 60px 24px 40px; }
  .content { padding: 0 24px 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* From press.html */
@media (max-width: 900px) {
  .page-header h1 { font-size: 44px; }
  .page-header { padding: 60px 24px 40px; }
  .content { padding: 0 24px 60px; }
  .facts-grid { grid-template-columns: 1fr; }
  .assets-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* From terms.html */
@media (max-width: 900px) {
  .page-header h1 { font-size: 36px; }
  .page-header { padding: 60px 24px 30px; }
  .content { padding: 0 24px 60px; }
  .toc ol { columns: 1; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* From refund.html */
@media (max-width: 900px) {
  .page-header h1 { font-size: 36px; }
  .page-header { padding: 60px 24px 30px; }
  .content { padding: 0 24px 60px; }
  .quick-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}


/* ── Legal page overrides ─────────────── */
body.legal .page-header { max-width: 820px; padding: 80px 32px 40px; }
body.legal .page-header h1 { font-size: 56px; }
body.legal a { color: var(--acc); }
body.legal a:hover { text-decoration: underline; }
body.legal .logo, body.legal .nav-links a, body.legal .footer-col a {
  color: inherit;
}
body.legal .logo:hover, body.legal .nav-links a:hover, body.legal .footer-col a:hover { text-decoration: none; }
/* CTA button keeps white text on orange background (not the legal-link orange) */
body.legal .btn-primary { color: #fff; }
body.legal .btn-primary:hover { text-decoration: none; }

@media (max-width: 900px) {
  body.legal .page-header h1 { font-size: 36px; }
  body.legal .page-header { padding: 60px 24px 30px; }
}


/* ── Per-page content overrides ──────── */
/* About page uses narrow content (720px) by default in styles.css */
/* Contact and Press use wider content */
body.contact .content,
body.press .content { max-width: 920px; }

/* Legal pages use medium-width content */
body.legal .content { max-width: 820px; }
