:root {
  --bg: #0d0d0f;
  --bg-surface: #141416;
  --fg: #f5f0e8;
  --fg-muted: #8a8680;
  --accent: #e8930a;
  --accent-glow: rgba(232, 147, 10, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(232,147,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-pill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,147,10,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
}

.pill-sep {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── HERO VISUAL ──────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-block {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-beam {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.6;
}

.spotlight-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,147,10,0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.product-orbit {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.12);
}

.orbit-ring-1 {
  width: 160px;
  height: 160px;
  animation: spin 12s linear infinite;
}

.orbit-ring-2 {
  width: 200px;
  height: 200px;
  border-style: dashed;
  animation: spin 20s linear infinite reverse;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.orbit-center {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(232,147,10,0.4), 0 0 80px rgba(232,147,10,0.15);
}

.orbit-icon {
  font-size: 1.5rem;
  color: var(--bg);
}

/* ── MANIFESTO ────────────────────────────── */
.manifesto {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── APPROACH ─────────────────────────────── */
.approach {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.approach-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3.5rem;
  line-height: 1.15;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.approach-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.approach-card:hover {
  border-color: rgba(232,147,10,0.3);
}

.card-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.85rem;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── STRATEGY ─────────────────────────────── */
.strategy {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.strategy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.strategy-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.strategy-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3.5rem;
  line-height: 1.15;
}

.strategy-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.flow-step {
  flex: 1;
  min-width: 0;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  position: relative;
}

.flow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 8px rgba(232,147,10,0.5);
}

.flow-content h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.flow-content p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── CLOSING ──────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,147,10,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.tagline-dot {
  font-size: 0.5rem;
  opacity: 0.5;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-sep {
  color: var(--accent);
  font-size: 0.5rem;
  opacity: 0.5;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 4rem;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .strategy-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .spotlight-block {
    width: 240px;
    height: 240px;
  }

  .product-orbit {
    width: 150px;
    height: 150px;
  }

  .orbit-ring-1 { width: 120px; height: 120px; }
  .orbit-ring-2 { width: 150px; height: 150px; }
  .orbit-center { width: 56px; height: 56px; }
}

/* ── SHARED SECTION LABELS ─────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

/* ── BTN PRIMARY ───────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-large {
  font-size: 1.1rem;
  padding: 1.15rem 2.5rem;
}

/* ── HERO (PRODUCT PAGE OVERRIDES) ─────────── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-signal {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.product-image-wrap {
  position: relative;
  display: inline-block;
}

.product-hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
}

/* ── PROBLEM ───────────────────────────────── */
.problem {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

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

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.pain-card:hover {
  border-color: rgba(232,147,10,0.25);
}

.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.65;
}

.problem-truth {
  background: rgba(232,147,10,0.06);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 3rem;
}

.problem-truth p {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.7;
}

.pain-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  opacity: 0.85;
}

/* ── SOLUTION ──────────────────────────────── */
.solution {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.solution-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solution-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.mechanism-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.2s ease;
}

.mechanism-card:hover {
  border-color: rgba(232,147,10,0.3);
}

.mech-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.mechanism-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.85rem;
}

.mechanism-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── COMPARISON ────────────────────────────── */
.comparison {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fg);
  background: var(--bg);
}

.compare-table tbody td {
  color: var(--fg-muted);
}

.compare-table .col-highlight {
  background: rgba(232,147,10,0.05);
  color: var(--fg);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.compare-table thead .col-highlight {
  border-top: 2px solid var(--accent);
}

.compare-table tbody tr:last-child .col-highlight {
  border-bottom: 2px solid var(--accent);
}

.col-price {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 400;
  font-family: var(--font-body);
  margin-top: 0.2rem;
}

.check { color: #4ade80; font-weight: 700; }
.cross { color: #f87171; font-weight: 700; }
.meh   { color: var(--fg-muted); }

.compare-cta-row {
  text-align: center;
}

/* ── HOW IT WORKS ──────────────────────────── */
.how-it-works {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}

.hiw-step {
  flex: 1;
  padding: 2rem 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  position: relative;
}

.hiw-connector {
  width: 2rem;
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
  align-self: center;
  flex-shrink: 0;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.hiw-step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.hiw-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  opacity: 0.9;
}

/* ── SOCIAL PROOF ──────────────────────────── */
.social-proof {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.social-proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.star-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.star-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stars {
  font-size: 1.4rem;
  color: var(--accent);
}

.review-count {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}

.review-placeholder {
  border-style: dashed;
  opacity: 0.5;
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.review-disclaimer {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
  opacity: 0.6;
}

/* ── FAQ ───────────────────────────────────── */
.faq {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── GUARANTEE ─────────────────────────────── */
.guarantee {
  padding: 5rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.guarantee-inner {
  max-width: 780px;
  margin: 0 auto;
}

.guarantee-badge {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(232,147,10,0.06);
  border: 1px solid rgba(232,147,10,0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}

.guarantee-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.guarantee-note {
  font-size: 0.82rem !important;
  opacity: 0.7;
}

/* ── FINAL CTA ─────────────────────────────── */
.final-cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,147,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.final-cta-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.final-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-slash {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.price-saving {
  font-size: 0.8rem;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  font-weight: 600;
}

.final-trust-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 1rem;
  opacity: 0.6;
}

/* ── FOOTER (PRODUCT PAGE) ─────────────────── */
.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--fg);
}

/* ── STICKY MOBILE CTA ─────────────────────── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 0.75rem 1.5rem;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.sticky-product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

.sticky-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}

.btn-sticky {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-sticky:hover {
  opacity: 0.88;
}

/* ── CHECKOUT STUB ─────────────────────────── */
.checkout-stub {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.checkout-stub-inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.checkout-stub-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}

.checkout-stub-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.notify-input {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify-input:focus {
  border-color: var(--accent);
}

.checkout-stub-note {
  font-size: 0.85rem;
  color: #4ade80;
  min-height: 1.2rem;
  margin-bottom: 1.5rem;
}

.back-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--fg);
}

/* ── SPECS SECTION ─────────────────────────── */
.specs {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.specs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specs-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2.5rem;
}

.spec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s ease;
}

.spec-card:hover {
  border-color: rgba(232,147,10,0.3);
}

.spec-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.spec-detail {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.specs-capsule-note {
  background: rgba(232,147,10,0.05);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.75rem;
  border-radius: 0 6px 6px 0;
}

.specs-capsule-note p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── QUALIFIER SECTION ─────────────────────── */
.qualifier {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}

.qualifier-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 3rem;
}

.qualifier-col {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}

.qualifier-yes {
  background: rgba(74,222,128,0.03);
  border-color: rgba(74,222,128,0.2);
}

.qualifier-no {
  background: rgba(248,113,113,0.03);
  border-color: rgba(248,113,113,0.15);
}

.qualifier-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.qualifier-yes-title { color: #4ade80; }
.qualifier-no-title  { color: #f87171; }

.qualifier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.qualifier-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.qualifier-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

.qualifier-cta-row {
  text-align: center;
}

/* ── COMPARISON: EXTRA ─────────────────────── */
.compare-note {
  background: rgba(232,147,10,0.05);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.75rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
}

.compare-note p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOOTER DISCLAIMER ─────────────────────── */
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.5;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── RESPONSIVE: NEW SECTIONS ──────────────── */
@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .hiw-steps {
    flex-direction: column;
    gap: 0;
  }

  .hiw-connector {
    display: none;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-badge {
    flex-direction: column;
    gap: 1rem;
  }

  .final-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .sticky-cta-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-links {
    display: none;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .notify-form {
    flex-direction: column;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .qualifier-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ORDER BUMP ────────────────────────────── */
.order-bump {
  padding: 3rem 2rem;
  background: rgba(232,147,10,0.04);
  border-top: 1px solid rgba(232,147,10,0.2);
  border-bottom: 1px solid rgba(232,147,10,0.2);
}

.order-bump-inner {
  max-width: 680px;
  margin: 0 auto;
}

.bump-box {
  background: var(--bg-surface);
  border: 2px solid rgba(232,147,10,0.3);
  border-radius: 8px;
  padding: 2rem;
}

.bump-checkbox-row {
  margin-bottom: 1.25rem;
}

.bump-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
}

.bump-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bump-check-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: background 0.2s ease;
}

.bump-checkbox:checked + .bump-check-custom {
  background: var(--accent);
}

.bump-checkbox:checked + .bump-check-custom::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 700;
}

.bump-check-text {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.5;
}

.bump-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.bump-detail {
  margin-bottom: 1.5rem;
}

.bump-copy {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bump-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bump-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 0.25rem;
}

.bump-cta {
  width: 100%;
  text-align: center;
  display: block;
}

.bump-skip {
  text-align: center;
  margin-top: 0.85rem;
}

.bump-skip-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bump-skip-link:hover {
  color: var(--fg);
}

/* ══════════════════════════════════════════
   BUYER'S GUIDE
   ══════════════════════════════════════════ */

/* Guide Header */
.guide-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 50;
}

.guide-header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guide-back {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.guide-back:hover {
  color: var(--fg);
}

.guide-back-arrow {
  font-size: 1rem;
  color: var(--accent);
}

.guide-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Guide Hero */
.guide-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.guide-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.guide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.guide-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.guide-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.guide-meta-sep {
  color: var(--accent);
  font-size: 0.5rem;
  opacity: 0.5;
}

/* Table of Contents */
.guide-toc {
  padding: 2.5rem 2rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.guide-toc-inner {
  max-width: 900px;
  margin: 0 auto;
}

.toc-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  counter-reset: none;
}

.toc-list li {
  display: inline;
}

.toc-list a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}

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

.toc-list li:not(:last-child)::after {
  content: '·';
  color: var(--border);
  margin-left: 1.5rem;
}

/* Guide Sections */
.guide-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.guide-section--alt {
  background: var(--bg-surface);
}

.guide-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.guide-section-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.guide-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.guide-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.guide-body em {
  font-style: italic;
  color: var(--fg);
}

.guide-body strong {
  font-weight: 600;
  color: var(--fg);
}

/* Callout */
.guide-callout {
  background: rgba(232,147,10,0.06);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.75rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2rem;
}

.guide-callout p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.guide-callout strong {
  color: var(--accent);
}

.guide-callout--alt {
  background: rgba(232,147,10,0.08);
  border-left-color: var(--accent);
}

/* References */
.guide-references {
  margin-top: 2.5rem;
}

.guide-refs-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.guide-ref-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  background: var(--bg-surface);
  transition: border-color 0.2s ease;
}

.guide-ref-card:hover {
  border-color: rgba(232,147,10,0.3);
}

.guide-ref-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.guide-ref-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Checklist (look for) */
.guide-checklist {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  transition: border-color 0.2s ease;
}

.checklist-item:hover {
  border-color: rgba(74,222,128,0.3);
}

.checklist-icon {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ade80;
  flex-shrink: 0;
  line-height: 1.3;
}

.checklist-content strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.checklist-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* Avoid list */
.guide-avoid-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2rem;
}

.avoid-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  transition: border-color 0.2s ease;
}

.avoid-item:hover {
  border-color: rgba(248,113,113,0.3);
}

.avoid-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f87171;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.1rem;
}

.avoid-content strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.avoid-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* Protocol */
.guide-protocol {
  margin-top: 2rem;
}

.protocol-section {
  margin-bottom: 2.5rem;
}

.protocol-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.protocol-section p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.protocol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.protocol-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}

.protocol-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

/* Timeline */
.protocol-timeline {
  margin-top: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
}

.timeline-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
}

.timeline-weeks {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.timeline-block p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* Stacking */
.guide-stacking {
  margin-top: 2rem;
}

.stack-section {
  margin-bottom: 3rem;
}

.stack-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.stack-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.stack-item:hover {
  border-color: rgba(232,147,10,0.25);
}

.stack-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.6rem;
}

.stack-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

.stack-avoid {
  background: rgba(248,113,113,0.04);
  border: 1px solid rgba(248,113,113,0.15);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}

.stack-avoid p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

.contraindication-list p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

/* Checklist Table */
.checklist-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 2rem;
}

.checklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.checklist-table th,
.checklist-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.checklist-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--fg);
  background: var(--bg);
  letter-spacing: 0.05em;
}

.checklist-table tbody td {
  color: var(--fg-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.checklist-table tbody tr:last-child td {
  border-bottom: none;
}

.score-cell {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.score-high { color: #4ade80; }
.score-mid  { color: var(--accent); }
.score-low  { color: #f87171; }

/* CTA Section */
.guide-cta-section {
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.guide-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.guide-cta-line {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.guide-cta-line a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.guide-cta-line a:hover {
  text-decoration: underline;
}

/* Guide Footer */
.guide-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.guide-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.guide-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.guide-footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.guide-footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.guide-footer-links {
  display: flex;
  gap: 1.5rem;
}

.guide-footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.guide-footer-links a:hover {
  color: var(--fg);
}

.guide-footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guide-footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}

.guide-footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.5;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .guide-header-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .guide-hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .guide-section {
    padding: 4rem 1.5rem;
  }

  .guide-section--alt {
    padding: 4rem 1.5rem;
  }

  .toc-list {
    gap: 0.5rem 1rem;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .checklist-table th,
  .checklist-table td {
    padding: 0.75rem 1rem;
  }

  .guide-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .guide-footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
