/* STROKEINK CSS BUILD-20260610-013503 */
/* ═══════════════════════════════════════════════════════════════
   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;
}

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;
  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: 900px;
  margin: 0 auto;
}

.story-head {
  margin-bottom: 36px;
}

.story-section h2 {
  font-size: 52px;
  margin-bottom: 0;
  margin-top: 12px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

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

.story-text {
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.story-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.story-text.open {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 18px;
}
.story-text.open::after { display: none; }
/* Themed scrollbar for the story box */
.story-text.open::-webkit-scrollbar { width: 8px; }
.story-text.open::-webkit-scrollbar-track { background: var(--bg-3); border-radius: 4px; }
.story-text.open::-webkit-scrollbar-thumb { background: var(--bd-strong); border-radius: 4px; }
.story-text.open::-webkit-scrollbar-thumb:hover { background: var(--acc); }
.story-text.open { scrollbar-width: thin; scrollbar-color: var(--bd-strong) var(--bg-3); }

.story-text h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t1);
  margin: 36px 0 16px;
  line-height: 1.2;
}
.story-text h3:first-child { margin-top: 0; }
.story-text p {
  font-size: 19px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 22px;
}
.story-text p strong { color: var(--t1); font-weight: 600; }
.story-text p em { color: var(--t1); font-style: italic; }

.story-quote {
  font-size: 22px !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: 28px 0 !important;
  font-weight: 500;
}

.story-toggle {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acc-soft);
  border: 1px solid var(--acc-border);
  color: var(--acc);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: inherit;
  transition: background 0.18s, border-color 0.18s;
}
.story-toggle::after {
  content: "→";
  display: inline-block;
  transition: transform 0.18s;
}
.story-toggle:hover {
  background: rgba(232,96,44,.2);
  border-color: var(--acc);
}
.story-toggle:hover::after { transform: translateX(4px); }
.story-toggle.open::after { content: "↑"; }
.story-toggle.open:hover::after { transform: translateY(-3px); }

/* ── 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;
  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(4, 1fr);
  gap: 20px;
  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; }

/* AI Coach mockup */
.mock-coach-debrief {
  background: var(--acc-soft);
  border: 1px solid var(--acc-border);
  border-radius: 9px;
  padding: 8px 9px;
}
.mock-coach-debrief-head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.mock-coach-spark { font-size: 8px; }
.mock-coach-debrief-body { font-size: 7.5px; line-height: 1.55; color: var(--t2); }
.mock-coach-debrief-body strong { color: var(--t1); font-weight: 700; }
.mock-coach-msg { display: flex; }
.mock-coach-msg.user { justify-content: flex-end; }
.mock-coach-msg.ai { justify-content: flex-start; }
.mock-coach-bubble {
  max-width: 82%;
  font-size: 7.5px;
  line-height: 1.5;
  padding: 6px 8px;
  border-radius: 10px;
}
.mock-coach-bubble.user { background: var(--acc); color: #fff; border-bottom-right-radius: 3px; }
.mock-coach-bubble.ai { background: #1e1e1e; color: var(--t2); border: 1px solid var(--bd); border-bottom-left-radius: 3px; }
.mock-coach-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e1e1e;
  border: 1px solid var(--bd);
  border-radius: 999px;
  padding: 6px 6px 6px 11px;
}
.mock-coach-input-text { font-size: 7.5px; color: var(--t3); }
.mock-coach-send {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--acc);
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── 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);
}

/* Disabled (pre-launch) — not yet purchasable */
.price-cta:disabled,
.price-card.featured .price-cta:disabled {
  cursor: not-allowed;
  background: var(--bg-4);
  color: var(--t4);
  border: 1px solid var(--bd);
  box-shadow: none;
  opacity: 0.7;
}

.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;
  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: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo-link { display: inline-block; margin-bottom: 8px; transition: opacity 0.15s; }
.footer-logo-link:hover { opacity: 0.75; }
.footer-logo-img { height: 24px; width: auto; display: block; }

.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; text-align: right; }

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

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

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) and (min-width: 901px) {
  .phones-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}

@media (max-width: 900px) {
  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-text p { font-size: 16px; }
  .story-text h3 { font-size: 21px; }
  .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 .nav-menu-dropdown a { color: var(--t2); }
body.legal .nav-menu-dropdown a:hover { color: var(--t1); text-decoration: none; }
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; }


/* ═══════════════════════════════════════════════════════════════
   STORE — shop.html, cart drawer, order-confirmed.html
   Appended block. Uses existing :root tokens only.
   body.shop  → shop.html
   ═══════════════════════════════════════════════════════════════ */

/* ── Cart button in nav ──────────────── */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--t2);
  padding: 7px 4px;
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--t1); }
.nav-cart svg { width: 19px; height: 19px; }
.nav-cart .count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--acc);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Product grid ────────────────────── */
.shop-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 32px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* Single-product horizontal hero card */
.shop-grid.single { display: block; max-width: 920px; }
.product-card.wide {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
.product-card.wide .product-pic { aspect-ratio: auto; min-height: 380px; border-radius: 0; }
.product-card.wide .product-body { padding: 40px; justify-content: center; }
.product-card.wide h3 { font-size: 28px; letter-spacing: -0.02em; }
.product-card.wide .sub { font-size: 15px; margin-top: 6px; }
.product-card.wide .desc { font-size: 14px; margin-top: 16px; }
.product-card.wide .product-foot { margin-top: 28px; }
.product-card.wide .product-price { font-size: 26px; }
.product-card.wide .product-ph svg { width: 96px; height: 96px; }
@media (max-width: 760px) {
  .product-card.wide { grid-template-columns: 1fr; }
  .product-card.wide .product-pic { min-height: 240px; }
  .product-card.wide .product-body { padding: 28px; }
}
.product-card {
  background: var(--bg-4);
  border: 1px solid var(--bd);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--bd-strong); transform: translateY(-2px); }
.product-pic {
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 50% 40%, var(--bg-3) 0%, var(--bg-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t4);
}
.product-pic img { width: 100%; height: 100%; object-fit: cover; }
.product-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-ph svg { width: 64px; height: 64px; opacity: 0.7; }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.product-body .sub { color: var(--t3); font-size: 14px; margin-top: 4px; }
.product-body .desc { color: var(--t2); font-size: 14px; margin-top: 14px; flex: 1; line-height: 1.6; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.product-price { font-size: 22px; font-weight: 700; }
.product-add {
  background: var(--acc);
  color: #fff;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-add:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232,96,44,.4); }
.product-details {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  padding: 11px 14px;
  border: 1px solid var(--bd-strong);
  border-radius: 10px;
  transition: border-color 0.15s, color 0.15s;
}
.product-details:hover { border-color: var(--acc); color: var(--t1); }

/* ── Cart drawer ─────────────────────── */
.cart-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s; z-index: 200;
}
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(420px, 100%);
  background: var(--bg-3);
  border-left: 1px solid var(--bd);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--bd);
}
.cart-head h2 { font-size: 18px; font-weight: 700; }
.cart-x { color: var(--t3); font-size: 26px; line-height: 1; padding: 0 4px; }
.cart-x:hover { color: var(--t1); }
.cart-items { flex: 1; overflow-y: auto; padding: 4px 24px; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bd); }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-size: 14px; font-weight: 600; }
.cart-item .ci-price { color: var(--t3); font-size: 13px; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.cart-qty button {
  width: 28px; height: 28px;
  border: 1px solid var(--bd-strong);
  color: var(--t1); border-radius: 8px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cart-qty button:hover { border-color: var(--acc); }
.cart-qty span { font-size: 14px; min-width: 18px; text-align: center; }
.cart-rm { color: var(--t4); font-size: 12px; margin-top: 8px; }
.cart-rm:hover { color: var(--acc); }
.cart-line-total { color: var(--t2); font-size: 14px; font-weight: 600; }
.cart-empty { color: var(--t3); text-align: center; padding: 56px 0; font-size: 14px; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--bd); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.cart-total-row .l { color: var(--t3); font-size: 14px; }
.cart-total-row .v { font-weight: 700; font-size: 20px; }
.cart-checkout {
  width: 100%; background: var(--acc); color: #fff;
  border-radius: 12px; padding: 15px; font-size: 15px; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cart-checkout:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,96,44,.4); }
.cart-checkout:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-note { color: var(--t4); font-size: 11px; text-align: center; margin-top: 13px; }
.cart-err { color: var(--red); font-size: 13px; text-align: center; margin-top: 10px; min-height: 18px; }

/* ── Order confirmed page ────────────── */
body.confirm main { max-width: 480px; margin: 0 auto; padding: 80px 24px; }
.confirm-card { background: var(--bg-4); border: 1px solid var(--bd); border-radius: 20px; padding: 40px; }
.confirm-tick {
  width: 56px; height: 56px; border-radius: 999px;
  background: rgba(76,175,125,.16);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.confirm-tick svg { width: 28px; height: 28px; stroke: var(--grn); fill: none; stroke-width: 3; }
.confirm-card h1 { font-size: 24px; font-weight: 700; text-align: center; letter-spacing: -0.02em; }
.confirm-sub { color: var(--t3); text-align: center; font-size: 14px; margin-top: 8px; }
.confirm-table { width: 100%; border-collapse: collapse; margin: 26px 0; border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.confirm-table td { padding: 11px 0; font-size: 14px; color: var(--t1); }
.confirm-table td.r { text-align: right; color: var(--t2); }
.confirm-table .tot td { font-weight: 700; padding-top: 15px; }
.confirm-table .tot td.r { color: var(--grn); }
.confirm-home { display: block; text-align: center; margin-top: 28px; background: var(--acc); color: #fff; padding: 14px; border-radius: 12px; font-weight: 600; font-size: 14px; }
.confirm-load { color: var(--t3); text-align: center; padding: 20px; font-size: 14px; }

@media (max-width: 900px) {
  .shop-grid { padding: 8px 24px 80px; gap: 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL — product.html
   body.product → product.html
   ═══════════════════════════════════════════════════════════════ */
body.product main { max-width: 1080px; margin: 0 auto; padding: 24px 32px 100px; }

.pd-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

/* gallery */
.pd-gallery { position: sticky; top: 96px; }
.pd-main-img {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 40%, var(--bg-4) 0%, var(--bg-2) 100%);
  border: 1px solid var(--bd);
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--t4); text-align: center; padding: 24px;
}
.pd-ph svg { width: 88px; height: 88px; opacity: 0.85; }
.pd-ph .pd-ph-label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--t3); }
.pd-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.pd-thumb {
  width: 72px; height: 72px; flex: 0 0 auto;
  background: radial-gradient(circle at 50% 40%, var(--bg-4) 0%, var(--bg-2) 100%);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--t4);
  transition: border-color 0.15s;
}
.pd-thumb:hover { border-color: var(--bd-strong); }
.pd-thumb.active { border-color: var(--acc); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb svg { width: 30px; height: 30px; opacity: 0.7; }

/* info column */
.pd-info .section-tag { margin-bottom: 12px; }
.pd-info h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.pd-subtitle { color: var(--t2); font-size: 17px; margin-top: 10px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin: 24px 0; }
.pd-price { font-size: 32px; font-weight: 800; }
.pd-price-note { color: var(--t3); font-size: 13px; }
.pd-desc { color: var(--t2); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.pd-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.pd-qty { display: flex; align-items: center; gap: 14px; border: 1px solid var(--bd-strong); border-radius: 10px; padding: 6px 10px; }
.pd-qty button { width: 30px; height: 30px; color: var(--t1); font-size: 18px; border-radius: 6px; }
.pd-qty button:hover { background: var(--bg-4); }
.pd-qty span { font-size: 15px; min-width: 20px; text-align: center; }
.pd-add {
  flex: 1;
  background: var(--acc); color: #fff;
  border-radius: 12px; padding: 15px;
  font-size: 16px; font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pd-add:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,96,44,.45); }
.pd-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; }
.pd-trust span { color: var(--t3); font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.pd-trust .ico { color: var(--grn); }

/* box contents */
.pd-box-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 8px; }
.pd-box-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--t2); font-size: 14px; line-height: 1.5; }
.pd-box-list .price-check { color: var(--acc); flex: 0 0 auto; }

/* loading / not found */
.pd-load { text-align: center; color: var(--t3); padding: 80px 0; font-size: 15px; }

@media (max-width: 900px) {
  body.product main { padding: 16px 24px 80px; }
  .pd-top { grid-template-columns: 1fr; gap: 28px; }
  .pd-gallery { position: static; }
  .pd-info h1 { font-size: 32px; }
  .pd-box-list { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL — extended sections
   ═══════════════════════════════════════════════════════════════ */

/* Technical specs table */
.pd-spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.pd-spec-table tr { border-bottom: 1px solid var(--bd); }
.pd-spec-table tr:last-child { border-bottom: none; }
.pd-spec-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.pd-spec-table td.k { color: var(--t3); width: 38%; padding-right: 20px; }
.pd-spec-table td.v { color: var(--t1); font-weight: 500; }

/* App section with phone screenshots */
.pd-app-intro { color: var(--t2); font-size: 15px; line-height: 1.65; max-width: 640px; margin-bottom: 32px; }
.pd-screens { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.pd-phone {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
}
.pd-phone-frame {
  width: 200px; height: 420px;
  background: radial-gradient(circle at 50% 35%, var(--bg-4) 0%, var(--bg-2) 100%);
  border: 2px solid var(--bd-strong);
  border-radius: 28px;
  padding: 10px;
  overflow: hidden;
  position: relative;
}
.pd-phone-frame::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 5px; background: var(--bd-strong); border-radius: 3px; z-index: 2;
}
.pd-phone-screen {
  width: 100%; height: 100%; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--t4); text-align: center; padding: 20px;
}
.pd-phone-screen img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.pd-phone-screen svg { width: 56px; height: 56px; opacity: 0.8; }
.pd-phone-screen .lbl { font-size: 12px; font-weight: 600; color: var(--t3); letter-spacing: 0.03em; }
.pd-phone-cap { text-align: center; margin-top: 14px; font-size: 13px; color: var(--t2); font-weight: 500; }

/* Free vs Pro */
.pd-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.pd-plan {
  background: var(--bg-4); border: 1px solid var(--bd); border-radius: 18px; padding: 28px;
}
.pd-plan.pro { border-color: var(--acc-border); background: linear-gradient(180deg, var(--acc-soft) 0%, var(--bg-4) 60%); }
.pd-plan h3 { font-size: 18px; font-weight: 700; }
.pd-plan .pp { font-size: 24px; font-weight: 800; margin: 8px 0 4px; }
.pd-plan .pp small { font-size: 13px; font-weight: 500; color: var(--t3); }
.pd-plan .pnote { color: var(--t3); font-size: 12px; margin-bottom: 18px; }
.pd-plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pd-plan li { display: flex; gap: 10px; font-size: 14px; color: var(--t2); line-height: 1.45; }
.pd-plan li .price-check { color: var(--acc); flex: 0 0 auto; }
@media (max-width: 700px) { .pd-plans { grid-template-columns: 1fr; } }

/* AI Coach highlight block */
.pd-coach {
  background: linear-gradient(135deg, var(--acc-soft) 0%, var(--bg-4) 70%);
  border: 1px solid var(--acc-border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.pd-coach h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.pd-coach p { color: var(--t2); font-size: 15px; line-height: 1.65; max-width: 520px; }
.pd-coach .badge-ai {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--acc); background: var(--acc-soft);
  border: 1px solid var(--acc-border); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.pd-coach-icon svg { width: 96px; height: 96px; stroke: var(--acc); opacity: 0.85; }
@media (max-width: 700px) { .pd-coach { grid-template-columns: 1fr; padding: 28px; } .pd-coach-icon { display: none; } }


/* Product page spec icons (SVG, not emoji) — scoped to body.product */
body.product .spec-icon { margin-bottom: 12px; line-height: 0; }
body.product .spec-icon svg { width: 26px; height: 26px; }
body.product .spec-title { font-size: 15px; margin-bottom: 6px; }
body.product .spec-desc { font-size: 13px; line-height: 1.5; }
body.product .spec { padding: 22px; }


/* Pro plan — differentiate exclusive features from the base */
.pd-plan.pro .pf-base { color: var(--t3); }
.pd-plan.pro .pf-base .price-check { color: var(--t3); }
.pd-plan.pro .pf-plus { color: var(--t1); font-weight: 500; }
.pd-plan.pro .pf-plus .price-check { color: var(--acc); }


/* ═══════════════════════════════════════════════════════════════
   EMBEDDED CHECKOUT — checkout.html
   ═══════════════════════════════════════════════════════════════ */
body.checkout-page main { max-width: 680px; margin: 0 auto; padding: 16px 24px 100px; }
#checkout-wrap { min-height: 300px; }
#checkout { border-radius: 16px; overflow: hidden; }
.co-loading { color: var(--t3); text-align: center; padding: 60px 0; font-size: 15px; }
.co-error {
  color: var(--t1); text-align: center; padding: 40px 24px; font-size: 15px;
  background: var(--bg-4); border: 1px solid var(--bd); border-radius: 16px;
}
