/* ═══════════════════════════════════════════════════════════
   IteraUX — Main Stylesheet
   Warm precision. Quiet authority. Unmistakably elevated.
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* ─── Palette: OKLCH, brand-tinted neutrals (hue 70) ─── */
  --bg: oklch(0.96 0.01 70);
  --bg-warm: oklch(0.92 0.018 70);
  --bg-deep: oklch(0.85 0.025 70);
  --surface: oklch(0.99 0.005 70);
  --text: oklch(0.18 0.015 70);
  --text-mid: oklch(0.42 0.02 70);
  --text-light: oklch(0.60 0.015 70);
  --text-faint: oklch(0.76 0.01 70);
  --accent: oklch(0.52 0.1 65);
  --accent-hover: oklch(0.46 0.11 65);
  --accent-soft: oklch(0.52 0.1 65 / 0.08);
  --accent-rose: oklch(0.58 0.08 25);
  --accent-rose-soft: oklch(0.58 0.08 25 / 0.1);
  --rule: oklch(0.18 0.015 70 / 0.08);
  --rule-dark: oklch(0.18 0.015 70 / 0.15);
  --success: oklch(0.52 0.08 155);
  --danger: oklch(0.52 0.1 25);
  /* ─── Spacing (4pt scale) ─── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  /* ─── Misc ─── */
  --radius: 8px;
  --header-h: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--surface); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Layout ─── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 80px; }
.full-width { width: 100%; }

@media (max-width: 768px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 24px; }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: oklch(0.96 0.01 70 / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s;
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled { background: oklch(0.96 0.01 70 / 0.97); }

.header-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  transition: opacity 0.3s;
}
.header-brand:hover { opacity: 0.7; }
.brand-accent { color: var(--accent); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--surface);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px oklch(0.52 0.1 65 / 0.2);
}

/* Nav is flat — no dropdown */

/* ─── Header Phone ─── */
.header-phone {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.3s;
  margin-right: 16px;
}
.header-phone:hover {
  color: var(--accent);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header-wrap { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .header-nav { display: none !important; }
  .header-nav.open {
    display: block !important;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-h));
    background: #f3ede6;
    z-index: 99;
    padding: 40px 24px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-list {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .nav-item { width: 100%; }
  .nav-link { font-size: 20px; display: block; }
  .nav-cta { font-size: 16px; padding: 14px 32px; display: inline-block; }
  .header-phone { display: none; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   SECTION SYSTEM
   ═══════════════════════════════════════════ */
.section {
  padding: 140px 0;
  position: relative;
}
.section + .section {
  border-top: 1px solid var(--rule);
}
/* Alternating backgrounds for spatial rhythm */
.section:nth-of-type(even) {
  background: var(--surface);
}
/* Subtle grain texture on all sections */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px oklch(0.52 0.1 65 / 0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--rule-dark);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   HERO (FRONT PAGE)
   ═══════════════════════════════════════════ */
.hero {
  padding: 180px 0 140px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 720px; }
.hero-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -3.5px;
  line-height: 0.97;
  margin-bottom: 32px;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── Hero Phone (secondary CTA) ─── */
.hero-phone {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.3s, text-decoration 0.3s;
  text-decoration: none;
}
.hero-phone:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ─── Hero Warm Visitor Hook (prominent) ─── */
.hero-warm-hook {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-top: var(--space-xl);
  background: var(--accent-soft);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid oklch(0.52 0.1 65 / 0.15);
  opacity: 0;
  animation: fadeUp 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-warm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-warm-hook a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.3s;
}
.hero-warm-hook a:hover {
  opacity: 0.8;
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--bg-warm);
  padding: 24px 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-bar-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stats-bar-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.stats-bar-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}
.stats-bar-sep {
  margin: 0 20px;
  color: var(--text-faint);
  font-size: 14px;
}

@media (max-width: 768px) {
  .stats-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
  .stats-bar-sep {
    display: none;
  }
  .stats-bar-item {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-dot { color: var(--accent); }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   EDITORIAL STATEMENT
   ═══════════════════════════════════════════ */
.editorial {
  padding: 200px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.editorial::before {
  content: '\201C';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Young Serif', serif;
  font-size: clamp(300px, 40vw, 500px);
  color: var(--accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}
.editorial-ornament {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.editorial-text {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.4;
  color: var(--text-mid);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.editorial-text strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

/* (metrics section removed — was dead CSS) */

/* ─── Funnel ─── */
.funnel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.funnel-stages { display: flex; flex-direction: column; gap: 5px; }
.funnel-stage {
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.funnel-stage:hover { transform: translateX(6px); }
.funnel-bg {
  position: absolute;
  left: 0; top: 0; height: 100%;
  border-radius: var(--radius);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.funnel-stage-label,
.funnel-stage-pct {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

/* (chart + donut sections removed — was dead CSS) */

/* ═══════════════════════════════════════════
   PROCESS SECTION / PAGE
   ═══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: step;
}
.process-step {
  padding: 50px;
  border-right: 1px solid var(--rule);
  counter-increment: step;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--surface); }
.process-step-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: -2px;
  margin-bottom: 8px;
  transition: color 0.4s;
  position: relative;
  z-index: 1;
}
/* Oversized ghost number behind content */
.process-step::after {
  content: attr(data-num);
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s;
}
.process-step:hover::after {
  opacity: 0.08;
}
.process-step:hover .process-step-num { color: var(--accent); }
.process-step-day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }
}

/* (objections + portfolio sections removed — was dead CSS) */

/* ═══════════════════════════════════════════
   SCARCITY / FINAL CTA
   ═══════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 140px 0;
  background: var(--surface);
  border-top: 1px solid var(--rule);
}
.final-cta .scarcity {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.final-cta h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-cta h2 em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.final-cta p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-cta .cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   IMAGE GRID
   ═══════════════════════════════════════════ */
.img-grid { display: grid; gap: 4px; }
.img-grid-2 { grid-template-columns: 1fr 1fr; }
.img-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.img-slot {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-slot:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .section-label { margin-bottom: 24px; }
.page-hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
}
.page-hero-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-value {
  padding: 30px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.about-value h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-value p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   REQUEST AUDIT PAGE
   ═══════════════════════════════════════════ */
.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.audit-form-wrap {
  background: var(--surface);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid var(--rule);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9389' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}

.audit-info h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.audit-info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.audit-info-list {
  margin-top: 30px;
}
.audit-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.audit-info-item:last-child { border-bottom: none; }
.audit-info-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
}
.audit-info-text h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.audit-info-text p {
  font-size: 13px;
  margin-bottom: 0;
}

/* Calendly embed */
.calendly-embed {
  min-height: 650px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .audit-layout { grid-template-columns: 1fr; gap: 40px; }
  .audit-form-wrap { padding: 30px; }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 40px;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: inline-block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.footer-heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-faint);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--text-mid); }

@media (max-width: 768px) {
  .footer-wrap { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── Footer Contact Row ─── */
.footer-contact-row {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
}
.footer-contact-row a {
  color: var(--text-mid);
  transition: color 0.3s;
}
.footer-contact-row a:hover {
  color: var(--accent);
}
.footer-contact-sep {
  margin: 0 12px;
  color: var(--text-faint);
}

@media (max-width: 768px) {
  .footer-contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-contact-sep {
    display: none;
  }
}

/* ─── Calendly Page ─── */
.calendly-inline-widget {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   404
   ═══════════════════════════════════════════ */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0;
}
.page-404 h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -4px;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   CLIENT AUDIT PAGE
   ═══════════════════════════════════════════ */
.client-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.client-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.client-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.client-hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.client-hero-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.client-hero-message {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 580px;
}

/* Audit content */
.client-audit-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}
.client-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* Video embed — self-hosted */
.client-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: oklch(0.12 0.01 70);
}
.client-video-player {
  width: 100%;
  display: block;
  border-radius: 12px;
}
/* YouTube fallback container */
.client-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.client-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* PDF embed */
.client-pdf-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface);
}
.client-pdf-embed {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: block;
}

/* Placeholder */
.client-placeholder {
  text-align: center;
  padding: 80px 40px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.client-placeholder p {
  font-size: 17px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .client-hero { padding: 120px 0 60px; }
  .client-audit-section { padding: 60px 0; }
  .client-pdf-embed { height: 50vh; min-height: 400px; }
}

/* ═══════════════════════════════════════════
   TIER C — REVENUE BANNER + FINDING CARDS
   ═══════════════════════════════════════════ */

/* ─── Client Hero (Tier C overrides) ─── */
.client-hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 580px;
}
.client-hero-sub strong {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Revenue Banner ─── */
.tier-c-revenue-banner {
  background: var(--bg-warm);
  border: 1px solid oklch(0.52 0.1 65 / 0.15);
  border-radius: var(--radius);
  padding: var(--space-2xl) var(--space-2xl);
  margin-bottom: var(--space-3xl);
  text-align: center;
}
.tier-c-revenue-loss {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.tier-c-revenue-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}
.tier-c-revenue-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--text);
}
.tier-c-revenue-context {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--text-mid);
}
.tier-c-revenue-sep {
  color: var(--text-faint);
}
.tier-c-revenue-count {
  font-weight: 600;
  color: var(--accent);
}

/* ─── Findings Grid ─── */
.tier-c-findings-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}
.finding-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.finding-card:hover {
  border-color: var(--rule-dark);
  transform: translateY(-2px);
}
.finding-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.finding-card-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: -1px;
  line-height: 1;
  padding-top: 2px;
}
.finding-card-body {}
.finding-card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.finding-card-evidence {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 65ch;
}
.finding-card-evidence strong { color: var(--text); font-weight: 600; }
.finding-card-impact {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-top: var(--space-md);
  display: inline-block;
}
.finding-card-impact strong { color: var(--accent); font-weight: 700; }

/* ─── Tier C CTA Block ─── */
.tier-c-cta-block {
  text-align: center;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--rule);
  margin-bottom: var(--space-2xl);
}
.tier-c-cta-heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--text);
}
.tier-c-cta-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
}
.tier-c-cta-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Tier C Scarcity ─── */
.tier-c-cta-scarcity {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: var(--space-lg);
}
.client-final-scarcity {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--space-lg);
}

/* ─── Tier C Calendly Wrap ─── */
.tier-c-calendly-wrap {
  margin-top: var(--space-2xl);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

/* ─── Client Next Steps ─── */
.client-next-steps {
  padding: var(--space-4xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.client-next-steps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}
.client-next-steps > * {
  position: relative;
  z-index: 1;
}

/* ─── Tier C Portfolio Section ─── */
.tier-c-portfolio {
  padding: var(--space-4xl) 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.tier-c-portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}
.tier-c-portfolio > * {
  position: relative;
  z-index: 1;
}
.tier-c-portfolio .section-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.tier-c-portfolio-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.portfolio-thumb {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-thumb:hover {
  border-color: var(--rule-dark);
  transform: translateY(-2px);
}
.portfolio-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.portfolio-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.portfolio-thumb-label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--surface);
  background: oklch(0.18 0.015 70 / 0.7);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ─── Portfolio Lightbox Overlay ─── */
.portfolio-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: oklch(0.18 0.015 70 / 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.portfolio-overlay.active { display: flex; }
.portfolio-modal {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}
.portfolio-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 24px;
  color: var(--text-mid);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-close:hover { color: var(--text); }
.portfolio-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.portfolio-modal-body { padding: var(--space-lg); }

/* ─── Client Final CTA ─── */
.client-final-cta {
  text-align: center;
  padding: var(--space-4xl) 0;
  background: var(--surface);
  border-top: 1px solid var(--rule);
}
.client-final-cta h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: var(--space-md);
}
.client-final-cta h2 em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
}
.client-final-cta p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}
.client-final-cta .cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.client-guarantee {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  background: var(--bg-warm);
  border: 1px solid oklch(0.52 0.1 65 / 0.15);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
}
.client-guarantee .section-label {
  margin-bottom: var(--space-sm);
}
.client-guarantee p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: none;
  margin: 0;
}

/* ─── CTA Section (legacy) ─── */
.cta-section {
  padding: 100px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
}
.cta-section .section-title { margin-bottom: 12px; }
.cta-section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}
.cta-row-main {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ─── Transformation Section ─── */
.transform-section { background: var(--surface); }
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.transform-item {
  padding: 50px;
  border-right: 1px solid var(--rule);
  transition: background 0.4s;
}
.transform-item:last-child { border-right: none; }
.transform-item:hover { background: var(--bg); }
.transform-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.transform-item h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.transform-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── Tier C Responsive ─── */
@media (max-width: 768px) {
  .tier-c-revenue-banner { padding: var(--space-xl) var(--space-lg); }
  .tier-c-revenue-num { font-size: 36px; letter-spacing: -1.5px; }
  .tier-c-revenue-context { flex-direction: column; gap: var(--space-xs); }
  .tier-c-revenue-sep { display: none; }
  .finding-card { grid-template-columns: 1fr; gap: var(--space-sm); padding: var(--space-lg); }
  .finding-card-num { font-size: 24px; }
  .finding-card-title { font-size: 18px; }
  .tier-c-cta-row { flex-direction: column; }
  .tier-c-cta-row .btn { text-align: center; width: 100%; justify-content: center; }
  .tier-c-cta-heading { font-size: 22px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .client-next-steps { padding: var(--space-2xl) 0; }
  .tier-c-portfolio { padding: var(--space-2xl) 0; }
  .client-final-cta { padding: var(--space-2xl) 0; }
  .client-guarantee { padding: var(--space-lg); }
  .client-final-cta .cta-row { flex-direction: column; }
  .client-final-cta .cta-row .btn { width: 100%; justify-content: center; }
  .cta-row-main { flex-direction: column; }
  .cta-row-main .btn { text-align: center; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .transform-item:last-child { border-bottom: none; }
  .guarantee-block { padding: 28px 24px; }
  .capture-form-wrap { margin: 40px auto 0; padding: 28px 24px; }
}

/* ═══════════════════════════════════════════
   INTERACTIVE AUDIT DEMO
   ═══════════════════════════════════════════ */
.audit-demo-section { background: var(--bg-warm); }

.demo-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  align-items: start;
}

/* ─── Browser Frame ─── */
.demo-browser {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule-dark);
  background: var(--surface);
  box-shadow: 0 24px 80px oklch(0.18 0.015 70 / 0.12);
}
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: oklch(0.95 0.008 70);
  border-bottom: 1px solid var(--rule);
}
.demo-dots {
  display: flex;
  gap: 6px;
}
.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.85 0.01 70);
}
.demo-url {
  flex: 1;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--surface);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--rule);
}
.demo-viewport {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* ─── Mock Website ─── */
.mock-site {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  color: oklch(0.25 0.01 70);
  line-height: 1.4;
}
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid oklch(0.90 0.008 70);
}
.mock-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.mock-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  color: oklch(0.50 0.015 70);
}
.mock-nav-cta {
  background: oklch(0.45 0.06 220);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.mock-hero {
  padding: 40px 20px 32px;
  background: linear-gradient(135deg, oklch(0.92 0.02 220) 0%, oklch(0.88 0.03 240) 100%);
}
.mock-hero-kicker {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: oklch(0.55 0.04 220);
  margin-bottom: 8px;
}
.mock-hero-h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: oklch(0.20 0.02 220);
  margin-bottom: 8px;
}
.mock-hero-sub {
  font-size: 9px;
  color: oklch(0.40 0.02 220);
  max-width: 280px;
  line-height: 1.5;
}
.mock-services {
  padding: 24px 20px;
}
.mock-services-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.mock-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mock-svc {
  background: oklch(0.97 0.005 70);
  border: 1px solid oklch(0.92 0.008 70);
  border-radius: 4px;
  padding: 10px 6px;
  font-size: 8px;
  font-weight: 500;
  text-align: center;
  color: oklch(0.40 0.015 70);
}
.mock-contact {
  padding: 20px;
  background: oklch(0.97 0.005 70);
}
.mock-contact-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.mock-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 300px;
  margin: 0 auto;
}
.mock-input {
  background: var(--surface);
  border: 1px solid oklch(0.88 0.008 70);
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 7px;
  color: oklch(0.60 0.01 70);
}
.mock-input-wide { grid-column: 1 / -1; }
.mock-submit {
  grid-column: 1 / -1;
  background: oklch(0.45 0.06 220);
  color: var(--surface);
  padding: 8px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* ─── Annotation Hotspots ─── */
.demo-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}
.demo-hotspot.active {
  opacity: 1;
  pointer-events: auto;
}
.demo-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: demoPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.demo-hotspot.active .demo-pulse {
  animation-play-state: running;
}
.demo-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 2px 12px oklch(0.52 0.1 65 / 0.3);
}
@keyframes demoPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ─── Findings Panel ─── */
.demo-findings {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}
.demo-progress {
  height: 2px;
  background: var(--rule);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.demo-progress-fill {
  height: 100%;
  width: 20%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.demo-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  font-family: 'Hanken Grotesk', sans-serif;
}
.demo-step:hover {
  background: var(--surface);
}
.demo-step.active {
  background: var(--surface);
  border-color: var(--rule);
  box-shadow: 0 2px 12px oklch(0.18 0.015 70 / 0.06);
}
.demo-step-num {
  grid-row: 1 / 3;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: -1px;
  align-self: center;
  transition: color 0.3s;
}
.demo-step.active .demo-step-num {
  color: var(--accent);
}
.demo-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.demo-step-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s,
              margin-top 0.3s;
  margin-top: 0;
  grid-column: 2;
}
.demo-step.active .demo-step-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}
.demo-step-impact {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-rose);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, margin-top 0.3s;
  margin-top: 0;
  grid-column: 2;
}
.demo-step.active .demo-step-impact {
  max-height: 24px;
  opacity: 1;
  margin-top: 6px;
}

/* ─── Summary ─── */
.demo-summary {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  margin-top: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-summary.visible {
  opacity: 1;
  transform: translateY(0);
}
.demo-summary-stat {
  display: flex;
  flex-direction: column;
}
.demo-summary-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.demo-summary-label {
  font-size: 11px;
  color: var(--text-light);
}
.demo-summary-cta {
  margin-left: auto;
  white-space: nowrap;
}

/* ─── Demo Responsive ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .demo-layout { grid-template-columns: 1fr; }
  .demo-findings { position: static; }
}
@media (max-width: 768px) {
  .demo-layout { grid-template-columns: 1fr; }
  .demo-findings { position: static; }
  .demo-viewport { min-height: 360px; }
  .mock-hero { padding: 24px 16px 20px; }
  .mock-hero-h1 { font-size: 16px; }
  .mock-nav { display: none; }
  .demo-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  .demo-summary-cta { margin-left: 0; width: 100%; justify-content: center; }
}

/* ─── Marquee Reverse ─── */
.marquee-track-reverse {
  animation-direction: reverse;
}

/* ─── Mid-page CTA ─── */
.demo-midcta-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.3px;
}

/* ─── Qualifier Section ─── */
.qualifier-section {
  background: var(--bg-warm);
}
.qualifier-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}
.qualifier-col .section-label {
  margin-bottom: var(--space-lg);
}
.qualifier-item {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-mid);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.qualifier-item:last-child {
  border-bottom: none;
}
.qualifier-item::before {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 14px;
  font-weight: 600;
}
.qualifier-yes::before {
  content: '\2713';
  color: var(--success);
}
.qualifier-no::before {
  content: '\2715';
  color: var(--accent-rose);
}

@media (max-width: 768px) {
  .qualifier-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ─── Offer Pricing Context ─── */
.offer-pricing-context {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  margin-top: var(--space-lg);
}

/* ─── Guarantee Label ─── */
.guarantee-label {
  margin-bottom: var(--space-md);
}

/* ─── Guarantee Block ─── */
.guarantee-block {
  max-width: 640px; margin: 0 auto 48px;
  background: var(--bg-warm); border: 1px solid oklch(0.52 0.1 65 / 0.15);
  border-radius: 8px; padding: 32px 40px; text-align: center;
}
.guarantee-text {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 17px; font-weight: 300;
  line-height: 1.8; color: var(--text-mid);
}
.guarantee-text strong { color: var(--text); font-weight: 600; }

/* ─── Lead Capture Form ─── */
.capture-form-wrap {
  max-width: 480px; margin: 60px auto 0; padding: 40px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 12px; text-align: center;
}
.capture-form-label {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.capture-form-sub {
  font-size: 14px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.6;
}
.capture-form { display: flex; flex-direction: column; gap: 12px; }
.capture-input, .capture-textarea {
  font-family: 'Inter', sans-serif; font-size: 15px;
  padding: 14px 16px; border: 1px solid var(--rule-dark);
  border-radius: 8px; background: var(--bg); color: var(--text);
  outline: none; transition: border-color 0.3s;
}
.capture-input:focus, .capture-textarea:focus { border-color: var(--accent); }
.capture-textarea { resize: vertical; min-height: 80px; }
.capture-form-success {
  padding: 24px; text-align: center;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 16px;
  font-weight: 500; color: var(--accent);
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-detail {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
}

.service-detail-flagship {
  background: var(--accent-soft);
  border: 1px solid oklch(0.52 0.1 65 / 0.2);
  grid-column: 1 / -1;
}

.service-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-detail-name {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.service-detail-flagship .service-detail-name {
  color: var(--accent);
}

.service-detail-tag {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: oklch(0.52 0.1 65 / 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.service-detail-problem {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.service-detail-includes {
  margin-bottom: 20px;
}

.service-detail-item {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 16px;
  position: relative;
}

.service-detail-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-detail-item:last-child {
  border-bottom: none;
}

.service-detail-outcome {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.3px;
}
.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-detail-link:hover {
  gap: 8px;
}

@media (max-width: 768px) {
  .services-detail {
    grid-template-columns: 1fr;
  }
  .service-detail {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════
   SPRINT GRID
   ═══════════════════════════════════════════ */
.sprint-section {
  padding-block: var(--space-4xl);
}

.sprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl) var(--space-3xl);
  margin-top: var(--space-3xl);
}

.sprint-item {
  position: relative;
}

.sprint-num {
  display: block;
  font-family: 'Young Serif', serif;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.sprint-title {
  font-family: 'Young Serif', serif;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.sprint-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 38ch;
}

.sprint-cta {
  margin-top: var(--space-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.sprint-cta-note {
  font-size: 14px;
  color: var(--text-light);
}

/* ─── Guarantee Inline (near CTAs) ─── */
.guarantee-inline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .sprint-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .sprint-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════
   FOCUS INDICATORS (A11y)
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .marquee-track {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════
   TABLET BREAKPOINT (1024px)
   ═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 40px; }
  .header-wrap { padding: 0 40px; }
  .funnel-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-detail { grid-template-columns: 1fr 1fr; }
  .service-detail-flagship { grid-column: 1 / -1; }
  .hero-title { font-size: clamp(36px, 5vw, 56px); }
  .guarantee-block { max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   LEFT-ALIGNED HERO
   ═══════════════════════════════════════════ */
.hero-content {
  max-width: 720px;
}
.hero-kicker,
.hero-title,
.hero-sub {
  text-align: left;
}

/* ═══════════════════════════════════════════
   SERVICE PAGES — Shared Sections
   ═══════════════════════════════════════════ */

/* ─── Service Hero ─── */
.service-hero {
  padding: calc(var(--header-h) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.service-hero-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.service-hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--text);
  max-width: 800px;
  margin-bottom: var(--space-lg);
}
.service-hero-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
  color: var(--accent);
}
.service-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}
.service-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.service-hero-phone {
  font-size: 15px;
  color: var(--text-light);
  transition: color 0.3s;
}
.service-hero-phone:hover { color: var(--accent); }

/* ─── Service Section (generic) ─── */
.service-section {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--rule);
}
.service-section:nth-child(even) {
  background: var(--surface);
}
.service-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.service-section-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: var(--space-xl);
}
.service-section-title em {
  font-family: 'Young Serif', serif;
  font-style: italic;
}
.service-section-prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
}
.service-section-prose strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── Problem / Agitate ─── */
.service-problem {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
}
.service-problem-stat {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-rose-soft);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-rose);
}

/* ─── Interactive Section ─── */
.service-interactive {
  padding: var(--space-4xl) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

/* ─── Deliverables / What You Get ─── */
.service-deliverables {
  padding: var(--space-4xl) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}
.deliverable-list {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 640px;
}
.deliverable-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--space-md);
  align-items: start;
}
.deliverable-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin-top: 2px;
}
.deliverable-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.deliverable-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── Proof / Outcomes ─── */
.service-proof {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--rule);
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--space-xl);
}
.proof-card-vertical {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.proof-card-stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: var(--space-sm);
}
.proof-card-detail {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── Qualifier ─── */
.service-qualifier {
  padding: var(--space-4xl) 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
}
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}
.qualifier-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text);
}
.qualifier-col.qualifier-yes h3 { color: var(--success); }
.qualifier-col.qualifier-no h3 { color: var(--accent-rose); }
.service-qualifier .qualifier-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--space-sm);
  align-items: start;
  margin-bottom: var(--space-md);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mid);
  padding: 0;
  border-bottom: none;
  position: static;
}
.qualifier-icon {
  margin-top: 3px;
  font-weight: 700;
}
.qualifier-yes .qualifier-icon { color: var(--success); }
.qualifier-no .qualifier-icon { color: var(--accent-rose); }

/* ─── Guarantee + Final CTA (service pages) ─── */
.service-final-cta {
  padding: var(--space-4xl) 0;
  text-align: center;
}
.service-guarantee {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-xl);
}
.service-final-cta .service-section-title {
  margin: 0 auto var(--space-md);
  text-align: center;
}
.service-final-cta .service-section-prose {
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.service-scarcity {
  font-size: 13px;
  color: var(--text-light);
  margin-top: var(--space-md);
}

/* ─── Service Page Responsive ─── */
@media (max-width: 768px) {
  .service-hero { padding: calc(var(--header-h) + var(--space-2xl)) 0 var(--space-2xl); }
  .service-section { padding: var(--space-2xl) 0; }
  .qualifier-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .proof-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   LEAK FINDER — Interactive Module (CRO Audits)
   ═══════════════════════════════════════════ */

/* ─── Industry Picker ─── */
.leak-finder {
  margin-top: var(--space-xl);
}
.lf-picker-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  text-align: center;
}
.lf-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-sm);
  max-width: 960px;
  margin: 0 auto;
}
.lf-picker-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 44px;
}
.lf-picker-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}
.lf-picker-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lf-picker-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.lf-picker-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lf-picker-icon svg {
  width: 24px;
  height: 24px;
}
.lf-picker-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ─── Leak Finder Stage ─── */
.lf-stage {
  animation: lfFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lfFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Revenue Bar ─── */
.lf-revenue-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-xl);
  background: oklch(0.95 0.02 25 / 0.5);
  border: 1px solid oklch(0.52 0.1 25 / 0.15);
  border-radius: var(--radius);
}
.lf-revenue-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}
.lf-revenue-amount {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent-rose);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

/* ─── Main Layout: Browser + Findings ─── */
.lf-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}

/* ─── Mock Browser ─── */
.lf-browser {
  border: 1px solid var(--rule-dark);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.lf-chrome {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 10px var(--space-md);
  background: oklch(0.94 0.008 70);
  border-bottom: 1px solid var(--rule);
}
.lf-dots {
  display: flex;
  gap: 6px;
}
.lf-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.82 0.01 70);
}
.lf-url {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg);
  padding: 4px 16px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.lf-viewport {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

/* ─── Mock Website Content ─── */
.lf-mock-site {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-mid);
}
.lf-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--rule);
}
.lf-mock-logo {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.lf-mock-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  color: var(--text-light);
}
.lf-mock-nav-cta {
  background: var(--text);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 9px;
}
.lf-mock-hero {
  padding: 40px 20px;
  text-align: center;
  background: var(--bg);
}
.lf-mock-hero-kicker {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.lf-mock-hero-h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.lf-mock-hero-sub {
  font-size: 10px;
  color: var(--text-light);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5;
}
.lf-mock-services {
  padding: 24px 20px;
}
.lf-mock-services-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
}
.lf-mock-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.lf-mock-svc {
  padding: 10px 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 9px;
  text-align: center;
  font-weight: 500;
  color: var(--text-mid);
}
.lf-mock-contact {
  padding: 24px 20px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.lf-mock-contact-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
}
.lf-mock-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-width: 360px;
  margin: 0 auto;
}
.lf-mock-input {
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 9px;
  color: var(--text-light);
}
.lf-mock-input-wide {
  grid-column: span 2;
}
.lf-mock-submit {
  grid-column: span 2;
  padding: 8px;
  background: var(--text);
  color: var(--surface);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* ─── Leak Highlights on Viewport ─── */
.lf-leak-highlight {
  position: absolute;
  border: 2px solid oklch(0.52 0.1 25 / 0);
  border-radius: 6px;
  background: oklch(0.52 0.1 25 / 0);
  pointer-events: none;
  transition: border-color 0.4s, background 0.4s;
  z-index: 2;
}
.lf-leak-highlight.lf-leak-active {
  border-color: oklch(0.52 0.1 25 / 0.5);
  background: oklch(0.52 0.1 25 / 0.08);
  animation: lfPulse 2s ease-in-out infinite;
}
@keyframes lfPulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.52 0.1 25 / 0.15); }
  50% { box-shadow: 0 0 0 6px oklch(0.52 0.1 25 / 0); }
}
.lf-leak-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: var(--accent-rose);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}
.lf-leak-active .lf-leak-badge {
  opacity: 1;
}

/* ─── Findings Panel ─── */
.lf-findings {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}
.lf-progress {
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.lf-progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.lf-step {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  min-height: 44px;
}
.lf-step:hover {
  border-color: var(--rule-dark);
}
.lf-step:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lf-step.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.lf-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 1px;
}
.lf-step.active .lf-step-num {
  color: var(--accent);
}
.lf-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.lf-step-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  display: none;
}
.lf-step.active .lf-step-desc {
  display: block;
  margin-top: 4px;
}
.lf-step-impact {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-rose);
  display: none;
}
.lf-step.active .lf-step-impact {
  display: block;
  margin-top: 4px;
}

/* ─── End State ─── */
.lf-end-state {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-end-state.visible {
  opacity: 1;
  transform: translateY(0);
}
.lf-end-row {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-lg);
}
.lf-end-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lf-end-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
}
.lf-end-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}
.lf-end-prose {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

/* ─── Reset Button ─── */
.lf-reset {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  margin-left: auto;
  margin-right: auto;
}
.lf-reset:hover {
  color: var(--accent);
}

/* ─── Leak Finder Responsive ─── */
@media (max-width: 1024px) {
  .lf-main {
    grid-template-columns: 1fr;
  }
  .lf-findings {
    position: static;
  }
}

@media (max-width: 768px) {
  .lf-picker-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 6px;
  }
  .lf-picker-btn {
    padding: var(--space-md) var(--space-sm);
  }
  .lf-picker-name {
    font-size: 11px;
  }
  .lf-revenue-bar {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-md);
  }
  .lf-mock-nav {
    display: none;
  }
  .lf-mock-hero {
    padding: 24px 16px;
  }
  .lf-mock-hero-h1 {
    font-size: 18px;
  }
  .lf-mock-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lf-mock-form {
    grid-template-columns: 1fr;
  }
  .lf-mock-input-wide {
    grid-column: span 1;
  }
  .lf-end-row {
    gap: var(--space-xl);
  }
  .lf-end-num {
    font-size: 28px;
  }
  .lf-step-title {
    font-size: 13px;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .lf-stage { animation: none; }
  .lf-leak-highlight { transition: none; }
  .lf-leak-highlight.lf-leak-active { animation: none; box-shadow: 0 0 0 3px oklch(0.52 0.1 25 / 0.2); }
  .lf-end-state { transition: none; }
  .lf-progress-fill { transition: none; }
  .lf-revenue-amount { transition: none; }
  .lf-picker-btn { transition: none; }
}

/* ═══════════════════════════════════════════
   DECAY CURVE — Interactive Module (Website Redesign)
   ═══════════════════════════════════════════ */

/* ─── Container ─── */
.dc-container {
  margin-top: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  overflow: hidden;
}

/* ─── Split Header ─── */
.dc-split-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: var(--space-xl);
  text-align: center;
}
.dc-side {
  padding: 0 var(--space-md);
}
.dc-side-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.dc-side-decay .dc-side-label { color: var(--accent-rose); }
.dc-side-growth .dc-side-label { color: var(--success); }
.dc-side-rate {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  transition: color 0.3s;
}
.dc-side-decay .dc-side-rate { color: var(--accent-rose); }
.dc-side-growth .dc-side-rate { color: var(--success); }
.dc-side-rate-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.dc-side-divider {
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
}
.dc-vs {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── SVG Chart ─── */
.dc-chart-wrap {
  position: relative;
  margin-bottom: var(--space-sm);
}
.dc-chart {
  width: 100%;
  height: auto;
  display: block;
}
.dc-axis-months {
  position: relative;
  height: 20px;
  margin-top: var(--space-xs);
}
.dc-axis-label {
  position: absolute;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
}

/* ─── Timeline Events ─── */
.dc-timeline {
  margin: var(--space-lg) 0;
  padding: 0 calc(50px / 800 * 100%);
}
.dc-timeline-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.dc-timeline-events {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  min-height: 20px;
}
.dc-event {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}
.dc-event-visible {
  opacity: 1;
}
.dc-event-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dc-event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dc-event-decay .dc-event-dot { background: var(--accent-rose); }
.dc-event-growth .dc-event-dot { background: var(--success); }
.dc-event-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}
.dc-event-decay .dc-event-text { color: var(--accent-rose); }
.dc-event-growth .dc-event-text { color: var(--success); }

/* ─── Revenue Row ─── */
.dc-revenue-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--space-lg);
  text-align: center;
}
.dc-revenue-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dc-revenue-amount {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.dc-revenue-decay .dc-revenue-amount { color: var(--accent-rose); }
.dc-revenue-growth .dc-revenue-amount { color: var(--success); }
.dc-revenue-gap-amount {
  color: var(--accent) !important;
  font-size: 28px !important;
}

/* ─── Playback Controls ─── */
.dc-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.dc-play-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.dc-play-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}
.dc-play-icon, .dc-pause-icon {
  display: block;
}
.dc-progress-track {
  flex: 1;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.dc-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
}
.dc-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.1s linear, box-shadow 0.2s;
  cursor: grab;
}
.dc-progress-thumb:hover,
.dc-progress-track:focus .dc-progress-thumb {
  box-shadow: 0 0 0 4px oklch(0.52 0.1 65 / 0.2);
}
.dc-progress-track:focus {
  outline: none;
}
.dc-progress-track:focus-visible .dc-progress-thumb {
  box-shadow: 0 0 0 4px oklch(0.52 0.1 65 / 0.3);
}
.dc-month-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  min-width: 70px;
  text-align: right;
  flex-shrink: 0;
}

/* ─── Redesign: What Makes This Different ─── */
.rd-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.rd-diff-item {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.rd-diff-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}
.rd-diff-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.rd-diff-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Redesign: Optimization Cycle ─── */
.rd-cycle {
  display: grid;
  grid-template-columns: repeat(11, auto);
  align-items: start;
  gap: 0;
  margin-top: var(--space-xl);
}
.rd-cycle-step {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  min-width: 0;
}
.rd-cycle-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}
.rd-cycle-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.rd-cycle-step p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.4;
}
.rd-cycle-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-xl);
}
.rd-cycle-connector span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rule-dark);
  position: relative;
}
.rd-cycle-connector span::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 5px solid var(--rule-dark);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.rd-cycle-step-repeat {
  background: var(--accent-soft);
  border-radius: var(--radius);
}
.rd-cycle-step-repeat .rd-cycle-num {
  font-size: 16px;
}
.rd-cycle-connector-loop span {
  background: var(--accent);
}
.rd-cycle-connector-loop span::after {
  border-left-color: var(--accent);
}

/* ─── Redesign Page Responsive (Tablet) ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .dc-container { padding: var(--space-lg); }
  .dc-side-rate { font-size: 28px; }
  .rd-diff-grid { gap: var(--space-lg); }
  .rd-cycle {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  .rd-cycle-connector { display: none; }
}

/* ─── Redesign Page Responsive (Mobile) ─── */
@media (max-width: 768px) {
  .dc-container {
    padding: var(--space-md);
    border-radius: 6px;
  }
  .dc-split-header {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .dc-side-divider { display: none; }
  .dc-side-rate { font-size: 24px; }
  .dc-side-rate-label { font-size: 11px; }

  .dc-timeline { margin: var(--space-md) 0; }

  .dc-revenue-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .dc-revenue-amount { font-size: 20px; }
  .dc-revenue-gap-amount { font-size: 24px !important; }

  .dc-month-label { min-width: 60px; font-size: 12px; }

  .rd-diff-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .rd-diff-item { padding: var(--space-lg); }

  .rd-cycle {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .rd-cycle-connector { display: none; }
  .rd-cycle-step {
    text-align: left;
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
  }
  .rd-cycle-step-repeat { background: var(--accent-soft); }
}

/* ─── Decay Curve Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .dc-event { transition: none; opacity: 1; transform: none; }
  .dc-progress-fill { transition: none; }
  .dc-progress-thumb { transition: none; }
  .dc-side-rate { transition: none; }
}

/* ═══════════════════════════════════════════
   VISIBILITY MAP — Interactive Module (Paid Media)
   ═══════════════════════════════════════════ */

/* ─── Container ─── */
.vm-container {
  margin-top: var(--space-xl);
}

/* ─── Business Type Picker ─── */
.vm-picker-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  text-align: center;
}
.vm-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-sm);
  max-width: 840px;
  margin: 0 auto;
}
.vm-picker-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 44px;
}
.vm-picker-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}
.vm-picker-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.vm-picker-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.vm-picker-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ─── Map Wrap ─── */
.vm-map-wrap {
  margin-top: var(--space-xl);
}
.vm-map-entering {
  animation: vmFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes vmFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Legend + Toggle ─── */
.vm-legend {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.vm-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--text-mid);
}
.vm-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vm-legend-dot--dim {
  background: oklch(0.85 0.01 70);
  border: 1px solid oklch(0.76 0.01 70);
}
.vm-legend-dot--active {
  background: oklch(0.52 0.1 65);
  border: 1px solid oklch(0.46 0.11 65);
}
.vm-toggle-btn {
  margin-left: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.vm-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}
.vm-toggle-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}
.vm-toggle-btn--active:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--surface);
}

/* ─── SVG Map ─── */
.vm-svg {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: auto;
}

/* ─── Spokes (center to node) ─── */
.vm-spoke {
  stroke: oklch(0.85 0.01 70);
  stroke-width: 1;
  transition: stroke 0.5s;
}

/* ─── Node Styling ─── */
.vm-node {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

/* Dim state */
.vm-node--dim .vm-node-ring {
  stroke: oklch(0.85 0.01 70);
  transition: stroke 0.5s;
}
.vm-node--dim .vm-node-fill {
  fill: oklch(0.94 0.008 70);
  transition: fill 0.5s;
}
.vm-node--dim .vm-node-label {
  fill: oklch(0.72 0.01 70);
  transition: fill 0.5s;
}
.vm-node--dim .vm-node-pulse {
  stroke: transparent;
}

/* Active state */
.vm-node--active .vm-node-ring {
  stroke: oklch(0.52 0.1 65);
  transition: stroke 0.5s;
}
.vm-node--active .vm-node-fill {
  fill: oklch(0.52 0.1 65 / 0.08);
  transition: fill 0.5s;
}
.vm-node--active .vm-node-label {
  fill: oklch(0.30 0.03 70);
  transition: fill 0.5s;
}
.vm-node--active .vm-node-pulse {
  stroke: oklch(0.52 0.1 65 / 0.3);
  animation: vmPulse 2.5s ease-out infinite;
}

@keyframes vmPulse {
  0% { r: 36; opacity: 0.6; }
  100% { r: 52; opacity: 0; }
}

/* ─── Connection Lines ─── */
.vm-connection {
  stroke: oklch(0.52 0.1 65 / 0.5);
  opacity: 0;
  transition: opacity 0.4s;
  stroke-dasharray: 6 4;
}
.vm-connection--visible {
  opacity: 1;
  animation: vmDashFlow 1.2s linear infinite;
}

@keyframes vmDashFlow {
  to { stroke-dashoffset: -20; }
}

/* ─── Summary Stats ─── */
.vm-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.vm-summary-num {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vm-summary-label {
  display: block;
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ─── Reset Button ─── */
.vm-reset {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-xl) auto 0;
  padding: var(--space-sm) var(--space-md);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}
.vm-reset:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   PAID MEDIA PAGE — Section-specific Styles
   ═══════════════════════════════════════════ */

/* ─── Ecosystem Grid ─── */
.pm-ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.pm-eco-item {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.pm-eco-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}
.pm-eco-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.pm-eco-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Reporting Contrast ─── */
.pm-report-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: start;
}
.pm-report-col {
  display: grid;
  gap: var(--space-md);
}
.pm-report-col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.pm-report-col--old .pm-report-col-label {
  color: var(--text-light);
}
.pm-report-col--new .pm-report-col-label {
  color: var(--accent);
}
.pm-report-item {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.pm-report-item--dim {
  opacity: 0.55;
}
.pm-report-metric {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.pm-report-item--dim .pm-report-metric {
  color: var(--text-light);
}
.pm-report-desc {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
}
.pm-report-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-3xl);
}
.pm-report-divider span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── Patient Journey ─── */
.pm-journey {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.pm-journey-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.pm-journey-steps {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.pm-journey-step {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg);
  border-radius: 6px;
  min-width: 0;
}
.pm-journey-channel {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.pm-journey-action {
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
}
.pm-journey-arrow {
  font-size: 14px;
  color: var(--text-faint);
  flex-shrink: 0;
}
.pm-journey-note {
  margin-top: var(--space-md);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PAID MEDIA PAGE — Responsive (Tablet)
   ═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .vm-svg { max-width: 560px; }
  .pm-ecosystem-grid { gap: var(--space-lg); }
  .pm-report-contrast { gap: var(--space-lg); }
  .pm-report-metric { font-size: 18px; }
  .pm-journey-steps { gap: var(--space-xs); }
}

/* ═══════════════════════════════════════════
   PAID MEDIA PAGE — Responsive (Mobile)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .vm-picker-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }
  .vm-picker-btn { padding: var(--space-sm); }
  .vm-picker-name { font-size: 12px; }

  .vm-legend {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .vm-toggle-btn { margin-left: 0; width: 100%; }

  .vm-svg { max-width: 100%; }

  .vm-summary {
    gap: var(--space-sm);
  }
  .vm-summary-num { font-size: 24px; }

  .pm-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .pm-eco-item { padding: var(--space-lg); }

  .pm-report-contrast {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .pm-report-divider {
    padding-top: 0;
    padding-bottom: 0;
  }
  .pm-report-divider span {
    display: block;
    text-align: center;
    width: 100%;
    padding: var(--space-sm) 0;
  }

  .pm-journey-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .pm-journey-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
  .pm-journey-step {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
  }
}

/* ─── Visibility Map Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .vm-node--active .vm-node-pulse { animation: none; opacity: 0; }
  .vm-connection--visible { animation: none; }
  .vm-map-entering { animation: none; }
}

/* ═══════════════════════════════════════════
   WORKFLOW X-RAY — Interactive Module (AI Operations)
   ═══════════════════════════════════════════ */

.wx-container {
  margin-top: var(--space-xl);
}

/* ─── Recovery Bar ─── */
.wx-recovery-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-xl);
  background: oklch(0.93 0.025 155 / 0.4);
  border: 1px solid oklch(0.52 0.08 155 / 0.2);
  border-radius: var(--radius);
}
.wx-recovery-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}
.wx-recovery-amount {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--success);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

/* ─── Timeline Track ─── */
.wx-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--space-xl);
}
.wx-track::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rule-dark);
}

/* ─── Timeline Node ─── */
.wx-node {
  display: grid;
  grid-template-columns: 80px 12px 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  margin-left: calc(-1 * var(--space-xl));
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background 0.25s;
  border-radius: var(--radius);
}
.wx-node:hover {
  background: var(--accent-soft);
}
.wx-node:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.wx-node-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.wx-node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-rose);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-rose);
  position: relative;
  z-index: 1;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.wx-node--explored .wx-node-dot {
  background: var(--success);
  box-shadow: 0 0 0 2px var(--success);
}
.wx-node--active .wx-node-dot {
  transform: scale(1.4);
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px oklch(0.52 0.1 65 / 0.3);
}
.wx-node-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
  transition: color 0.25s;
}
.wx-node--active .wx-node-label,
.wx-node:hover .wx-node-label {
  color: var(--text);
}

/* ─── Detail Card ─── */
.wx-detail {
  margin-top: var(--space-lg);
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
}
.wx-detail-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-light);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.wx-detail-close:hover {
  color: var(--text);
  background: var(--bg);
}
.wx-detail-time {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.wx-detail-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-lg);
  padding-right: var(--space-xl);
}
.wx-detail-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.wx-detail-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.wx-detail-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}
.wx-detail-current .wx-detail-col-label {
  color: var(--accent-rose);
}
.wx-detail-ai .wx-detail-col-label {
  color: var(--success);
}
.wx-detail-metric {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}
.wx-detail-vs {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: var(--space-xl);
}
.wx-detail-impact {
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: oklch(0.93 0.025 155 / 0.4);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
  display: inline-block;
}

/* ─── Explore Hint ─── */
.wx-explore-hint {
  margin-top: var(--space-lg);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.5px;
}
.wx-explore-count {
  font-weight: 700;
  color: var(--accent);
}

/* ─── Configurator ─── */
.wx-configurator {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.wx-config-header {
  margin-bottom: var(--space-2xl);
}
.wx-config-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.wx-config-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.wx-config-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.wx-config-group {
  margin-bottom: var(--space-xl);
}
.wx-config-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.wx-config-hint {
  font-weight: 400;
  color: var(--text-light);
  font-size: 13px;
}
.wx-config-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.wx-config-opt {
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}
.wx-config-opt:hover {
  border-color: var(--accent);
  color: var(--text);
}
.wx-config-opt:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.wx-config-opt.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.wx-config-submit {
  margin-top: var(--space-md);
}
.wx-config-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ─── Configurator Results ─── */
.wx-config-results-header {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xl);
}
.wx-config-brief {
  margin-bottom: var(--space-xl);
}
.wx-brief-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.wx-brief-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  padding: var(--space-md);
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: var(--space-xl);
  font-style: italic;
}
.wx-brief-phases {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.wx-brief-phase {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg);
  border-radius: var(--radius);
}
.wx-brief-phase-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.wx-brief-phase-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.wx-brief-phase-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.wx-config-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: oklch(0.93 0.025 155 / 0.3);
  border-radius: var(--radius);
}
.wx-config-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.wx-config-stat-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.wx-config-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}
.wx-config-reset {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) auto 0;
  padding: var(--space-sm) var(--space-md);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.25s;
}
.wx-config-reset:hover {
  color: var(--text);
}
.wx-config-reset svg {
  width: 16px;
  height: 16px;
}

/* ─── Possibilities Grid ─── */
.wx-possibilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.wx-poss-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.wx-poss-card:hover {
  border-color: oklch(0.52 0.1 65 / 0.3);
}
.wx-poss-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  cursor: pointer;
}
.wx-poss-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.wx-poss-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  min-width: 24px;
}
.wx-poss-trigger h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.wx-poss-chevron {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wx-poss-card[data-expanded="true"] .wx-poss-chevron {
  transform: rotate(180deg);
}
.wx-poss-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.wx-poss-card[data-expanded="true"] .wx-poss-body {
  grid-template-rows: 1fr;
}
.wx-poss-body > ul {
  overflow: hidden;
  padding: 0 var(--space-lg) 0 calc(var(--space-lg) + 24px + var(--space-md));
  margin: 0;
  list-style: none;
}
.wx-poss-card[data-expanded="true"] .wx-poss-body > ul {
  padding-bottom: var(--space-lg);
}
.wx-poss-body li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-md);
}
.wx-poss-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Compounding Timeline ─── */
.wx-compound-timeline {
  position: relative;
  padding-left: var(--space-xl);
  margin-top: var(--space-xl);
}
.wx-compound-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--success));
}
.wx-compound-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  position: relative;
}
.wx-compound-marker {
  position: relative;
}
.wx-compound-marker::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 2px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-warm);
}
.wx-compound-step:last-child .wx-compound-marker::before {
  background: var(--success);
}
.wx-compound-month {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.wx-compound-step:last-child .wx-compound-month {
  color: var(--success);
}
.wx-compound-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-xs);
}
.wx-compound-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   AI OPERATIONS PAGE — Responsive (Tablet)
   ═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .wx-possibilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  .wx-config-stats {
    gap: var(--space-md);
  }
  .wx-detail-comparison {
    gap: var(--space-md);
  }
}

/* ═══════════════════════════════════════════
   AI OPERATIONS PAGE — Responsive (Mobile)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Recovery bar */
  .wx-recovery-bar {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-md);
  }

  /* Timeline nodes */
  .wx-node {
    grid-template-columns: 56px 12px 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-sm) var(--space-sm) 0;
  }
  .wx-node-time { font-size: 11px; }
  .wx-node-label { font-size: 13px; }

  /* Detail card */
  .wx-detail {
    padding: var(--space-lg);
  }
  .wx-detail-comparison {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .wx-detail-vs {
    padding-top: 0;
    text-align: center;
  }
  .wx-detail-title {
    font-size: 16px;
  }

  /* Configurator */
  .wx-configurator {
    padding: var(--space-lg);
  }
  .wx-config-options {
    gap: var(--space-xs);
  }
  .wx-config-opt {
    padding: var(--space-sm) var(--space-md);
    font-size: 12px;
  }
  .wx-config-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .wx-config-stat-num {
    font-size: 28px;
  }

  /* Possibilities grid */
  .wx-possibilities-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .wx-poss-trigger {
    padding: var(--space-md);
  }
  .wx-poss-body > ul {
    padding-left: var(--space-lg);
  }

  /* Compound timeline */
  .wx-compound-step {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding-left: var(--space-md);
  }
  .wx-compound-marker::before {
    left: calc(-1 * var(--space-xl) - var(--space-md) + 2px);
  }
}

/* ─── Workflow X-Ray Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .wx-node { transition: none; }
  .wx-node-dot { transition: none; }
  .wx-poss-body { transition: none; }
  .wx-poss-chevron { transition: none; }
}

