:root {
  --bg-primary: #08080A;
  --bg-secondary: #101014;
  --bg-tertiary: #16161C;
  --bg-elevated: #1E1E26;
  --bg-elevated-2: #26262F;

  --text-primary: #F5F4EE;
  --text-secondary: #A0A0AB;
  --text-tertiary: #6A6A75;
  --text-muted: #44444E;

  --action: #FF5722;
  --action-hover: #FF6E40;
  --action-dim: rgba(255, 87, 34, 0.12);
  --action-glow: rgba(255, 87, 34, 0.25);

  --data-cyan: #00D4FF;
  --data-cyan-dim: rgba(0, 212, 255, 0.12);

  --growth: #10E891;
  --growth-dim: rgba(16, 232, 145, 0.12);
  --growth-glow: rgba(16, 232, 145, 0.18);

  --highlight: #FFB020;
  --highlight-dim: rgba(255, 176, 32, 0.12);

  --warning: #FF4D5E;
  --warning-dim: rgba(255, 77, 94, 0.12);

  --info-purple: #A78BFA;
  --info-purple-dim: rgba(167, 139, 250, 0.12);

  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-action: rgba(255, 87, 34, 0.4);
  --border-cyan: rgba(0, 212, 255, 0.3);
  --border-growth: rgba(16, 232, 145, 0.3);

  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-action: 0 0 64px rgba(255, 87, 34, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--action); color: var(--text-primary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* ============== LOGO ============== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-mark svg { width: 100%; height: 100%; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.nav-cta {
  background: var(--action);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 150ms ease;
}

.nav-cta:hover { background: var(--action-hover); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: 900px;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--growth);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 232, 145, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight-num {
  color: var(--action);
  font-weight: 900;
  display: inline-block;
  position: relative;
}

.hero h1 .highlight-num::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 14px;
  background: var(--action);
  opacity: 0.18;
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero-sub strong { color: var(--text-primary); font-weight: 600; }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* ============== VERIFIED GUARANTEE STAMP (NEW — UP HIGH) ============== */
.guarantee-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--growth);
  border-radius: 10px;
  position: relative;
  margin-top: 8px;
  box-shadow: 0 0 32px rgba(16, 232, 145, 0.08);
}

.guarantee-stamp-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--growth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growth);
  flex-shrink: 0;
  background: var(--growth-dim);
}

.guarantee-stamp-icon svg { width: 18px; height: 18px; }

.guarantee-stamp-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guarantee-stamp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--growth);
  text-transform: uppercase;
}

.guarantee-stamp-headline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.guarantee-stamp-sub {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--action);
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: var(--shadow-action);
  position: relative;
}

.btn-primary:hover {
  background: var(--action-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(255, 87, 34, 0.4);
}

.btn-primary-large { padding: 22px 48px; font-size: 18px; }

.btn-primary-xl {
  padding: 26px 56px;
  font-size: 20px;
  font-weight: 700;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-microcopy svg {
  width: 14px;
  height: 14px;
  color: var(--growth);
}

/* ============== HERO PRODUCT VISUAL ============== */
.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  perspective: 1500px;
}

.product-frame {
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 120px rgba(0, 212, 255, 0.08);
  transform: rotateX(2deg);
  position: relative;
  overflow: hidden;
}

.product-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.product-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 12px;
}

.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--bg-elevated); }

.chrome-url {
  flex: 1;
  background: var(--bg-tertiary);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-tertiary);
  text-align: center;
}

.product-screen {
  background: var(--bg-tertiary);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
}

.dashboard-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  padding: 12px 12px 6px;
  font-family: 'JetBrains Mono', monospace;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--text-secondary);
  cursor: pointer;
}

.sidebar-item.active { background: var(--action-dim); color: var(--action-hover); }

.sidebar-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.75;
}

.dashboard-main {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dashboard-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dashboard-subtitle {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--growth-dim);
  color: var(--growth);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.metric-card.cyan { border-color: var(--border-cyan); }
.metric-card.growth { border-color: var(--border-growth); }
.metric-card.action { border-color: var(--border-action); }

.metric-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'JetBrains Mono', monospace;
}

.metric-value.cyan { color: var(--data-cyan); }
.metric-value.growth { color: var(--growth); }
.metric-value.action { color: var(--action); }

.metric-delta {
  font-size: 11px;
  color: var(--growth);
  font-weight: 600;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.chart-area {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.chart-title { font-size: 13px; font-weight: 600; }

.chart-legend {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.chart-svg { width: 100%; height: 130px; }

/* ============== HERO PROOF STRIP ============== */
.social-proof-strip {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.proof-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.proof-stat-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.proof-stat:nth-child(1) .proof-stat-num { color: var(--action); }
.proof-stat:nth-child(2) .proof-stat-num { color: var(--growth); }
.proof-stat:nth-child(3) .proof-stat-num { color: var(--data-cyan); }
.proof-stat:nth-child(4) .proof-stat-num { color: var(--highlight); }

.proof-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.4;
}

/* ============== EYEBROW + SECTION HEADERS ============== */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 20px;
  padding: 5px 13px;
  background: var(--action-dim);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
}

.eyebrow.cyan { color: var(--data-cyan); background: var(--data-cyan-dim); }
.eyebrow.growth { color: var(--growth); background: var(--growth-dim); }
.eyebrow.highlight { color: var(--highlight); background: var(--highlight-dim); }
.eyebrow.purple { color: var(--info-purple); background: var(--info-purple-dim); }

section h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

section h2 .accent { color: var(--action); }
section h2 .cyan { color: var(--data-cyan); }
section h2 .growth { color: var(--growth); }
section h2 .highlight { color: var(--highlight); }

/* ============== PAIN ============== */
.pain { padding: 120px 0; }

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

.pain-text h2 { margin-bottom: 32px; }

.pain-text p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.pain-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pain-close {
  margin-top: 40px;
  padding: 24px;
  border-left: 3px solid var(--action);
  background: var(--action-dim);
  border-radius: 0 8px 8px 0;
}

.pain-close-line {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.pain-close-line.action {
  color: var(--action);
  margin-top: 4px;
}

.receipt {
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.receipt-header {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.receipt-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-strong);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.receipt-row span:first-child { color: var(--text-secondary); }
.receipt-row span:last-child { color: var(--text-primary); font-weight: 600; }

.receipt-total {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--border-strong);
  font-size: 15px;
  font-weight: 700;
  color: var(--warning);
}

.receipt-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  border: 2px solid var(--warning);
  color: var(--warning);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  transform: rotate(8deg);
  border-radius: 4px;
}

.receipt-result {
  margin-top: 24px;
  padding: 18px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  border: 1px solid var(--warning);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.receipt-result-label { font-size: 12px; color: var(--text-tertiary); }

.receipt-result-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--warning);
  font-family: 'JetBrains Mono', monospace;
}

/* ============== AI MOMENT (REWRITTEN) ============== */
.ai-moment {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.ai-moment-content { position: relative; z-index: 1; }

.ai-moment-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.ai-moment-sub {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 24px;
}

.ai-moment-sub strong { color: var(--text-primary); font-weight: 600; }

/* AI moment narrative — 3-stage argument */
.ai-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.ai-stage {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}

.ai-stage-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.ai-stage-headline {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.ai-stage:nth-child(1) .ai-stage-headline strong { color: var(--warning); }
.ai-stage:nth-child(2) .ai-stage-headline strong { color: var(--data-cyan); }
.ai-stage:nth-child(3) .ai-stage-headline strong { color: var(--growth); }

.ai-stage-body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ai-stage-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.ai-window-callout {
  padding: 32px 36px;
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ai-window-text { flex: 1; }

.ai-window-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ai-window-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.ai-window-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

.ai-window-stat {
  flex-shrink: 0;
  text-align: right;
  border-left: 1px solid var(--border-strong);
  padding-left: 32px;
}

.ai-window-stat-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--highlight);
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.ai-window-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== CONTRAST ============== */
.contrast { padding: 120px 0; }

.contrast-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.contrast-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}

.contrast-card.bad { opacity: 0.85; }

.contrast-card.good {
  border-color: var(--border-action);
  box-shadow: 0 0 0 1px var(--border-action), 0 24px 64px rgba(255, 87, 34, 0.1);
}

.contrast-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
}

.contrast-label.bad { background: var(--warning-dim); color: var(--warning); }
.contrast-label.good { background: var(--action-dim); color: var(--action); }

.contrast-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contrast-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contrast-list li strong { color: var(--text-primary); font-weight: 600; }

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

.contrast-icon.x { background: var(--warning-dim); color: var(--warning); }
.contrast-icon.check { background: var(--growth-dim); color: var(--growth); }

/* ============== PRODUCT BENTO ============== */
.product-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.product-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
}

.product-sub {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 20px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}

.bento-tile {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}

.bento-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.bento-1 { grid-column: span 4; grid-row: span 2; }
.bento-2 { grid-column: span 2; grid-row: span 1; }
.bento-3 { grid-column: span 2; grid-row: span 1; }
.bento-4 { grid-column: span 3; grid-row: span 1; }
.bento-5 { grid-column: span 3; grid-row: span 1; }
.bento-6 { grid-column: span 6; grid-row: span 1; }

.bento-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}

.bento-1 .bento-num { color: var(--action); }
.bento-2 .bento-num { color: var(--data-cyan); }
.bento-3 .bento-num { color: var(--growth); }
.bento-4 .bento-num { color: var(--highlight); }
.bento-5 .bento-num { color: var(--info-purple); }
.bento-6 .bento-num { color: var(--action); }

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

.bento-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 90%;
}

.bento-1 .bento-title { font-size: 30px; }
.bento-1 .bento-desc { font-size: 16px; max-width: 60%; }

.bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 120px;
}

.mini-chart {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.mini-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mini-chart-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.mini-chart-value {
  font-size: 18px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.mini-chart-value.action { color: var(--action); }
.mini-chart-value.growth { color: var(--growth); }
.mini-chart-value.cyan { color: var(--data-cyan); }
.mini-chart-value.highlight { color: var(--highlight); }

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.bar {
  flex: 1;
  background: var(--bg-elevated);
  border-radius: 3px 3px 0 0;
}

.bar.lit { background: var(--growth); }
.bar.partial { background: linear-gradient(to top, var(--growth) 60%, var(--bg-elevated) 60%); }

.insight-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  border-left: 3px solid transparent;
  font-size: 13px;
}

.insight-item.high { border-left-color: var(--warning); }
.insight-item.med { border-left-color: var(--highlight); }
.insight-item.low { border-left-color: var(--growth); }

.insight-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 600;
  min-width: 22px;
}

.insight-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 12.5px;
}

.insight-impact {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}

.insight-item.high .insight-impact { color: var(--warning); }
.insight-item.med .insight-impact { color: var(--highlight); }
.insight-item.low .insight-impact { color: var(--growth); }

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.channel-name {
  min-width: 110px;
  color: var(--text-secondary);
  font-size: 12px;
}

.channel-bar-container {
  flex: 1;
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}

.channel-bar-fill { height: 100%; border-radius: 4px; }
.channel-bar-fill.cyan { background: var(--data-cyan); }
.channel-bar-fill.growth { background: var(--growth); }
.channel-bar-fill.warning { background: var(--warning); }
.channel-bar-fill.highlight { background: var(--highlight); }

.channel-value {
  min-width: 90px;
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
}

.channel-value.cyan { color: var(--data-cyan); }
.channel-value.growth { color: var(--growth); }
.channel-value.warning { color: var(--warning); }
.channel-value.muted { color: var(--text-tertiary); }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  font-size: 13px;
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.check-box.done {
  background: var(--growth);
  border-color: var(--growth);
}

.check-box.done::after {
  content: '✓';
  color: var(--bg-primary);
}

.checklist-text { flex: 1; color: var(--text-secondary); }

.checklist-item.done .checklist-text {
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--text-muted);
}

.checklist-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============== MOCKUP LIBRARY (UPGRADED V2) ============== */
.mockup-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.mockup-asset {
  aspect-ratio: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.mockup-asset-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5) 70%, transparent);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  z-index: 10;
}

/* Truck wrap */
.mockup-truck {
  background: linear-gradient(180deg, #1B2942 0%, #0E1828 70%, #2A2A35 70%, #1A1A22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12% 8% 14%;
  position: relative;
}

.mockup-truck::before {
  content: '';
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(to right, #FFB020 0, #FFB020 12px, transparent 12px, transparent 24px);
  opacity: 0.4;
}

.mockup-truck svg {
  width: 100%;
  height: auto;
  max-height: 75%;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
}

/* GBP */
.mockup-gbp { background: var(--bg-tertiary); padding: 0; display: flex; flex-direction: column; }

.gbp-header {
  background: var(--bg-primary);
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.gbp-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.gbp-name-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.gbp-business-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gbp-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  flex-wrap: wrap;
  color: var(--text-tertiary);
}

.gbp-stars { color: var(--highlight); font-weight: 700; }

.gbp-meta-pills {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.gbp-pill {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 7.5px;
  padding: 2px 5px;
  border-radius: 8px;
  font-weight: 600;
}

.gbp-pill.open {
  background: rgba(16, 232, 145, 0.15);
  color: var(--growth);
}

.gbp-photos {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--bg-primary);
  position: relative;
}

.gbp-photo { position: relative; overflow: hidden; }
.gbp-photo:nth-child(1) { grid-row: span 2; }

.gbp-truck-photo {
  background: linear-gradient(160deg, #2C5A8E 0%, #1A3A5E 50%, #0E2138 100%);
  position: relative;
}

.gbp-truck-photo::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 18%;
  right: 12%;
  height: 32%;
  background: var(--text-primary);
  border-radius: 2px 2px 0 0;
  clip-path: polygon(0 100%, 75% 100%, 75% 35%, 92% 0, 100% 0, 100% 100%);
}

.gbp-truck-photo::after {
  content: 'REEVES';
  position: absolute;
  bottom: 38%;
  left: 22%;
  font-size: 7px;
  font-weight: 900;
  color: var(--action);
  letter-spacing: 0.05em;
}

.gbp-truck-wheels {
  position: absolute;
  bottom: 14%;
  left: 22%;
  right: 22%;
  display: flex;
  justify-content: space-between;
}

.gbp-truck-wheel {
  width: 10%;
  aspect-ratio: 1;
  background: #0A0A0C;
  border-radius: 50%;
}

.gbp-tech-photo {
  background:
    radial-gradient(circle at 50% 35%, #C4A982 0%, #8A6F4D 35%, transparent 36%),
    linear-gradient(135deg, #4A4030 0%, #2A2418 100%);
}

.gbp-shop-photo {
  background: linear-gradient(135deg, #2C4A3A 0%, #1A2E24 100%);
  position: relative;
}

.gbp-shop-photo::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 25%;
  right: 25%;
  bottom: 15%;
  background: linear-gradient(to bottom, var(--text-secondary) 0%, var(--text-tertiary) 100%);
  clip-path: polygon(0 100%, 0 30%, 50% 0, 100% 30%, 100% 100%);
}

.gbp-photo-count {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: var(--text-primary);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  z-index: 2;
}

/* Meta Ad */
.mockup-ad {
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.ad-meta-header {
  background: var(--bg-primary);
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.ad-avatar {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--action), #C64116);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: var(--text-primary);
}

.ad-account-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.ad-account-name {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.ad-sponsored {
  font-size: 7.5px;
  color: var(--text-tertiary);
}

.ad-menu-dots {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-image {
  flex: 1;
  background: linear-gradient(135deg, #FF5722 0%, #D84315 60%, #BF360C 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  overflow: hidden;
}

.ad-image::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}

.ad-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.ad-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  padding: 3px 7px;
  border-radius: 3px;
  align-self: flex-start;
  z-index: 1;
  width: fit-content;
}

.ad-headline-block { z-index: 1; }

.ad-headline {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}

.ad-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.ad-meta-bar {
  background: var(--bg-primary);
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.ad-link-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ad-meta-text {
  font-size: 8px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'JetBrains Mono', monospace;
}

.ad-link-headline {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-primary);
}

.ad-cta-btn {
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 8.5px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
}

.ad-reactions {
  background: var(--bg-primary);
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 8px;
  color: var(--text-tertiary);
}

.ad-reactions-left {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ad-reaction-icon {
  width: 12px;
  height: 12px;
  background: var(--data-cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 7px;
  font-weight: 700;
}

/* Landing Page */
.mockup-lp {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.lp-nav-bar {
  background: var(--bg-secondary);
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

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

.lp-logo-mark {
  width: 12px;
  height: 12px;
  background: var(--action);
  border-radius: 2px;
}

.lp-logo-text {
  width: 28px;
  height: 5px;
  background: var(--text-primary);
  border-radius: 1px;
}

.lp-nav-right {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lp-nav-link {
  width: 12px;
  height: 4px;
  background: var(--text-tertiary);
  border-radius: 1px;
}

.lp-nav-cta {
  width: 22px;
  height: 9px;
  background: var(--action);
  border-radius: 2px;
}

.lp-content {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.lp-trust-row {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lp-stars {
  font-size: 7px;
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 1px;
}

.lp-trust-text {
  font-size: 6.5px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.lp-h1 {
  height: 9px;
  background: var(--text-primary);
  border-radius: 1.5px;
  width: 75%;
}

.lp-h1-2 {
  height: 9px;
  background: var(--text-primary);
  border-radius: 1.5px;
  width: 55%;
}

.lp-subheadline {
  height: 5px;
  background: var(--text-tertiary);
  border-radius: 1px;
  width: 90%;
}

.lp-subheadline-2 {
  height: 5px;
  background: var(--text-tertiary);
  border-radius: 1px;
  width: 70%;
}

.lp-hero-image {
  flex: 1;
  background: linear-gradient(135deg, #2C4A3A 0%, #1A2E24 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-height: 30%;
}

.lp-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(16, 232, 145, 0.2), transparent 60%),
    linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.3));
}

.lp-hero-image::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 30%;
  right: 30%;
  height: 50%;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 100%, 0 35%, 50% 0, 100% 35%, 100% 100%);
}

.lp-form-block {
  background: var(--bg-tertiary);
  padding: 6px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid var(--border);
}

.lp-input-row {
  display: flex;
  gap: 3px;
}

.lp-input {
  height: 7px;
  background: var(--bg-elevated);
  border-radius: 1.5px;
  border: 1px solid var(--border);
  flex: 1;
}

.lp-cta {
  height: 12px;
  background: var(--action);
  border-radius: 2px;
  position: relative;
}

.lp-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
}

/* Email */
.mockup-email {
  background: var(--bg-primary);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.email-client-chrome {
  background: var(--bg-tertiary);
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 4px;
  align-items: center;
}

.email-chrome-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg-elevated);
}

.email-chrome-title {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.email-meta-row {
  background: var(--bg-secondary);
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.email-sender-avatar {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--action), #C64116);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--text-primary);
}

.email-sender-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.email-from-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}

.email-sender-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-primary);
}

.email-time {
  font-size: 7.5px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
}

.email-to {
  font-size: 7px;
  color: var(--text-tertiary);
}

.email-subject {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  margin-top: 1px;
}

.email-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-secondary);
}

.email-greeting {
  height: 5px;
  width: 35%;
  background: var(--text-primary);
  border-radius: 1.5px;
  margin-bottom: 4px;
}

.email-line {
  height: 4px;
  background: var(--text-tertiary);
  border-radius: 1px;
  opacity: 0.7;
}

.email-line-1 { width: 95%; }
.email-line-2 { width: 90%; }
.email-line-3 { width: 80%; }
.email-line-4 { width: 87%; }

.email-cta-button {
  margin-top: 6px;
  height: 14px;
  width: 50%;
  background: var(--action);
  border-radius: 3px;
  position: relative;
  align-self: flex-start;
}

.email-cta-button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 4px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
}

.email-signature-block {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.email-sig-line {
  height: 3px;
  background: var(--text-muted);
  border-radius: 1px;
}

.email-sig-line.name { width: 35%; background: var(--text-secondary); }
.email-sig-line.title { width: 50%; }
.email-sig-line.contact { width: 45%; }

/* Postcard */
.mockup-postcard {
  background: radial-gradient(ellipse at center, var(--bg-elevated) 0%, var(--bg-tertiary) 100%);
  padding: 10% 8%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.postcard {
  width: 100%;
  height: 100%;
  background: var(--action);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 12px 12px;
  transform: rotate(-1deg);
}

.postcard::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -25%;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
}

.postcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.025) 2px, rgba(255,255,255,0.025) 3px);
  pointer-events: none;
}

.postcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}

.postcard-pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.postcard-stamp {
  width: 24px;
  height: 28px;
  background: var(--text-primary);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  border: 1px dashed rgba(0,0,0,0.15);
}

.postcard-stamp-line-1 {
  font-size: 5px;
  font-weight: 700;
  color: var(--action);
}

.postcard-stamp-line-2 {
  font-size: 7px;
  font-weight: 900;
  color: var(--action);
}

.postcard-headline-block {
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.postcard-headline {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 4px;
}

.postcard-sub-headline {
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.postcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
  border-top: 1px dashed rgba(255,255,255,0.3);
  padding-top: 6px;
}

.postcard-phone {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.postcard-website {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* Valuation tile */
.valuation-display {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: var(--bg-tertiary);
  border-radius: 10px;
  padding: 22px;
}

.valuation-now { text-align: center; }

.valuation-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.valuation-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'JetBrains Mono', monospace;
}

.valuation-arrow {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
  background: linear-gradient(to right, var(--text-muted), var(--growth));
}

.valuation-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--growth);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.valuation-future .valuation-value { color: var(--growth); }

/* ============== DREAM OUTCOME ============== */
.future {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.future::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background: radial-gradient(ellipse, var(--growth-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.future-content { position: relative; z-index: 1; }

.future-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.future-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.future-stage {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.future-stage.first { border-color: var(--border-cyan); }

.future-stage.second {
  border-color: var(--border-growth);
  box-shadow: 0 24px 64px rgba(16, 232, 145, 0.08);
}

.future-stage-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.future-stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.future-stage-tag.first { background: var(--data-cyan-dim); color: var(--data-cyan); }
.future-stage-tag.second { background: var(--growth-dim); color: var(--growth); }

.future-stage-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.future-stage.first .future-stage-title .accent { color: var(--data-cyan); }
.future-stage.second .future-stage-title .accent { color: var(--growth); }

.future-stage-lede {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
}

.future-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.future-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.future-list li strong { color: var(--text-primary); font-weight: 600; }

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

.future-stage.first .future-list-icon { background: var(--data-cyan-dim); color: var(--data-cyan); }
.future-stage.second .future-list-icon { background: var(--growth-dim); color: var(--growth); }

.future-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 12px;
}

.future-metric { text-align: center; }

.future-metric-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

.future-stage.first .future-metric-num { color: var(--data-cyan); }
.future-stage.second .future-metric-num { color: var(--growth); }

.future-metric-label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-weight: 500;
}

.future-close {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.future-close-quote {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.future-close-quote .accent { color: var(--action); }

.future-close-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============== HOW IT WORKS ============== */
.how {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-day {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--action-dim);
  color: var(--action);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 64px;
  font-weight: 800;
  color: var(--action);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.85;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============== PROOF ============== */
.proof { padding: 120px 0; }

.proof-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.testimonial {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial.featured {
  grid-row: span 2;
  background: var(--bg-tertiary);
  border-color: var(--border-strong);
}

.testimonial-result {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--growth-dim);
  color: var(--growth);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.testimonial-result-num {
  font-size: 18px;
  font-weight: 800;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 500;
  flex: 1;
}

.testimonial.featured .testimonial-quote {
  font-size: 19px;
  line-height: 1.55;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a32 0%, #1a1a22 100%);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.testimonial-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06) 0%, transparent 40%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.google-badge-logo {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.google-badge-stars {
  color: var(--highlight);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-shop {
  font-size: 12px;
  color: var(--text-tertiary);
}

.testimonial-screenshot {
  margin-top: 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.testimonial-screenshot-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.before-after {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ba-col { flex: 1; text-align: center; }

.ba-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.ba-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 800;
}

.ba-value.before { color: var(--text-tertiary); }
.ba-value.after { color: var(--growth); }

.ba-arrow {
  font-size: 22px;
  color: var(--action);
  font-weight: 700;
}

/* ============== CREDIBILITY (REFRAMED) ============== */
.credibility {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.credibility-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 48px;
}

.credibility-narrative {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 56px;
}

.credibility-narrative h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.credibility-narrative h3 .accent { color: var(--action); }

.credibility-narrative p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.credibility-narrative p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.credibility-quote-box {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-tertiary);
  border-left: 3px solid var(--action);
  border-radius: 0 10px 10px 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 500;
}

.credibility-byline {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============== CREDIBILITY FOUNDATION (replaces byline) ============== */
.credibility-foundation {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--bg-tertiary);
  border-left: 3px solid var(--action);
  border-radius: 0 12px 12px 0;
}

.credibility-foundation-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--action);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.credibility-foundation-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.credibility-foundation-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============== HERO OFFER STRIP ============== */
.hero-offer-strip {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  padding: 24px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-offer-strip-text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-offer-strip-headline {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero-offer-strip-headline .strike {
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--warning);
  font-weight: 500;
  margin-right: 4px;
}

.hero-offer-strip-headline .price-inline {
  color: var(--action);
  font-weight: 800;
}

.hero-offer-strip-sub {
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.hero-offer-strip-sub .accent { color: var(--highlight); font-weight: 600; }

.hero-offer-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--action);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
}

.hero-offer-strip-cta:hover {
  background: var(--action-hover);
}

/* ============== WHITE-MODE FAQ PATTERN BREAK ============== */
.faq.white-mode {
  background: var(--bg-secondary);
  padding: 120px 0;
}

.faq-list.white-cards .faq-item {
  background: #FAFAF7;
  border: 1px solid #E5E2DA;
  border-radius: 12px;
  overflow: hidden;
  transition: all 200ms ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.faq-list.white-cards .faq-item:hover {
  background: #FFFFFF;
  border-color: #D1CDC2;
  transform: translateY(-1px);
}

.faq-list.white-cards .faq-item[open] {
  background: #FFFFFF;
  border-color: var(--action);
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.faq-list.white-cards .faq-item summary {
  color: #1A1A22;
  font-weight: 600;
}

.faq-list.white-cards .faq-item summary::after {
  background: #E5E2DA;
  color: #44444E;
}

.faq-list.white-cards .faq-item[open] summary::after {
  background: var(--action);
  color: #FFFFFF;
}

.faq-list.white-cards .faq-answer {
  color: #44444E;
  font-weight: 400;
}

.faq-list.white-cards .faq-answer p {
  color: #44444E;
}

.faq-list.white-cards .faq-answer strong {
  color: #1A1A22;
  font-weight: 600;
}

/* ============== SCREENSHOT TESTIMONIALS ============== */
.proof-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.screenshot-testimonial {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform-origin: center;
}

.screenshot-testimonial:nth-child(1) { transform: rotate(-1deg); }
.screenshot-testimonial:nth-child(2) { transform: rotate(0.8deg); }
.screenshot-testimonial:nth-child(3) { transform: rotate(0.5deg); }
.screenshot-testimonial:nth-child(4) { transform: rotate(-0.7deg); }

.screenshot-source-label {
  position: absolute;
  top: -10px;
  left: 16px;
  z-index: 5;
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Facebook DM screenshot */
.screenshot-fbdm {
  background: #FFFFFF;
  padding: 0;
}

.fbdm-header {
  background: #F0F2F5;
  border-bottom: 1px solid #E4E6EB;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fbdm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4267B2, #2851A3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.fbdm-name-block {
  flex: 1;
}

.fbdm-name {
  font-size: 14px;
  font-weight: 600;
  color: #050505;
}

.fbdm-status {
  font-size: 11px;
  color: #65676B;
}

.fbdm-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FFFFFF;
  min-height: 220px;
}

.fbdm-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.fbdm-bubble.received {
  background: #F0F2F5;
  color: #050505;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.fbdm-bubble.sent {
  background: #0084FF;
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.fbdm-timestamp {
  font-size: 10px;
  color: #65676B;
  text-align: center;
  margin: 8px 0 4px;
}

/* Email screenshot */
.screenshot-email {
  background: #FFFFFF;
  padding: 0;
}

.email-gmail-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-gmail-subject {
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  letter-spacing: -0.005em;
}

.email-gmail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-gmail-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB020, #E89E0A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.email-gmail-from-block { flex: 1; }

.email-gmail-from {
  font-size: 13px;
  font-weight: 500;
  color: #202124;
}

.email-gmail-from .email-addr {
  color: #5F6368;
  font-weight: 400;
}

.email-gmail-to {
  font-size: 12px;
  color: #5F6368;
}

.email-gmail-time {
  font-size: 12px;
  color: #5F6368;
}

.email-gmail-body {
  padding: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #202124;
  background: #FFFFFF;
  min-height: 170px;
}

.email-gmail-body p {
  margin-bottom: 10px;
}

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

.email-gmail-signature {
  font-size: 12px;
  color: #5F6368;
  margin-top: 12px;
}

/* Google Review screenshot */
.screenshot-google {
  background: #FFFFFF;
  padding: 18px;
}

.google-rev-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.google-rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.google-rev-name-block { flex: 1; }

.google-rev-name {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}

.google-rev-meta {
  font-size: 12px;
  color: #5F6368;
}

.google-rev-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.google-rev-stars {
  color: #FBBC04;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}

.google-rev-time {
  font-size: 12px;
  color: #5F6368;
}

.google-rev-body {
  font-size: 14px;
  line-height: 1.5;
  color: #202124;
  min-height: 100px;
}

.google-rev-helpful {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #5F6368;
}

/* SMS / Text screenshot */
.screenshot-sms {
  background: #000000;
  padding: 0;
}

.sms-header {
  background: #1C1C1E;
  border-bottom: 1px solid #2C2C2E;
  padding: 12px 16px;
  text-align: center;
}

.sms-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.sms-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #000000;
  min-height: 220px;
}

.sms-bubble {
  max-width: 78%;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
}

.sms-bubble.received {
  background: #2C2C2E;
  color: #FFFFFF;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.sms-bubble.sent {
  background: #007AFF;
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.sms-timestamp {
  font-size: 10px;
  color: #98989E;
  text-align: center;
  margin: 6px 0 2px;
}

/* Result chip on screenshots */
.screenshot-result-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  padding: 5px 11px;
  background: var(--growth);
  color: var(--bg-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(16, 232, 145, 0.3);
}

.credibility-byline-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-tertiary));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.credibility-byline-text { display: flex; flex-direction: column; gap: 2px; }

.credibility-byline-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.credibility-byline-role {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.credibility-byline-role strong { color: var(--text-secondary); font-weight: 600; }

/* ============== OFFER ============== */
.offer {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 800px;
  background: radial-gradient(ellipse, var(--action-glow) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.offer-content { position: relative; z-index: 1; }

.offer-header {
  text-align: center;
  margin-bottom: 56px;
}

.offer-pre-pitch {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 24px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.offer-pre-pitch p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.offer-pre-pitch strong { color: var(--text-primary); font-weight: 600; }
.offer-pre-pitch .action { color: var(--action); font-weight: 700; }

.offer-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 2px solid var(--action);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 24px 96px rgba(255, 87, 34, 0.18);
  position: relative;
}

.offer-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--action);
  color: var(--bg-primary);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.offer-pricing {
  text-align: center;
  margin-bottom: 40px;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  position: relative;
}

.price-old-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.price-old-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  line-height: 1;
}

.price-old-value::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 50%;
  height: 3px;
  background: var(--warning);
  transform: rotate(-3deg);
}

.price-old-period {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}

.price-arrow {
  font-size: 32px;
  color: var(--action);
  font-weight: 800;
  line-height: 1;
}

.price-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price-new-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--action);
  text-transform: uppercase;
}

.price-new-value {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.price-new-value .currency {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 4px;
  color: var(--text-tertiary);
  font-weight: 700;
}

.price-new-period {
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.price-new-period .accent { color: var(--action); }

.price-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-pill-check {
  width: 16px;
  height: 16px;
  background: var(--growth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.price-pill-check::after { content: '✓'; }

.price-pill strong { color: var(--text-primary); font-weight: 700; }

/* Old anchor styles kept for backwards compat — not used in V7 */
.price-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.price-main {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--text-primary);
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.price-main .currency {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 4px;
  color: var(--text-tertiary);
  font-weight: 700;
}

.price-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.price-tagline .accent { color: var(--action); }

/* Anti-claim block */
.anti-claim {
  margin: 0 -8px 32px;
  padding: 24px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.anti-claim-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

.anti-claim-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anti-claim-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.anti-claim-x {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anti-claim-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Inline guarantee callout near CTA button */
.guarantee-callout {
  margin: 24px 0 16px;
  padding: 18px 22px;
  background: rgba(245, 244, 238, 0.025);
  border: 1px solid rgba(16, 232, 145, 0.45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.guarantee-callout-icon {
  width: 32px;
  height: 32px;
  background: rgba(16, 232, 145, 0.12);
  border: 1.5px solid rgba(16, 232, 145, 0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growth);
  flex-shrink: 0;
}

.guarantee-callout-icon svg { width: 18px; height: 18px; }

.guarantee-callout-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guarantee-callout-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.guarantee-callout-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.offer-context {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.offer-context strong { color: var(--text-primary); font-weight: 600; }

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--bg-primary);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.include-item { display: flex; align-items: flex-start; gap: 12px; }

.include-check {
  width: 22px;
  height: 22px;
  background: var(--action);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.include-text { flex: 1; }

.include-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.include-detail {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.45;
}

.no-brainer {
  margin: 0 -8px 32px;
  padding: 28px 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border-action);
  border-radius: 16px;
}

/* SaaS justification callout — explains why monthly */
.saas-why {
  margin: 0 -8px 24px;
  padding: 28px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyan);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.saas-why::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.saas-why-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--data-cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}

.saas-why-headline {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.saas-why-headline .accent {
  color: var(--data-cyan);
}

.saas-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.saas-why-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.saas-why-icon {
  width: 28px;
  height: 28px;
  background: var(--data-cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--data-cyan);
  margin-bottom: 4px;
  font-size: 14px;
}

.saas-why-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.saas-why-detail {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.no-brainer-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

.math-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.math-section-label.savings { color: var(--warning); }
.math-section-label.automated { color: var(--growth); }
.math-section-label.outcome { color: var(--action); }

.math-section-label + .math-section-label,
.no-brainer-rows + .math-section-label {
  margin-top: 24px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.workflow-row:last-child { border-bottom: none; }

.workflow-icon {
  width: 22px;
  height: 22px;
  background: var(--growth-dim);
  border: 1px solid var(--border-growth);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--growth);
  font-size: 11px;
  font-weight: 700;
}

.workflow-name {
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-name .arrow {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.workflow-name .mechanism {
  color: var(--text-tertiary);
  font-size: 13px;
}

.workflow-impact {
  color: var(--growth);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  white-space: nowrap;
}

.workflow-impact.savings { color: var(--warning); }

.no-brainer-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.no-brainer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.no-brainer-row:last-child { border-bottom: none; }

.no-brainer-row span:first-child { color: var(--text-secondary); }

.no-brainer-row span:last-child {
  color: var(--text-primary);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.no-brainer-row.total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border-strong);
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
}

.no-brainer-row.total span:first-child {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'JetBrains Mono', monospace;
}

.no-brainer-row.total span:last-child {
  font-size: 16px;
  font-weight: 800;
}

.no-brainer-row.savings span:last-child { color: var(--warning); }
.no-brainer-row.outcome span:last-child { color: var(--growth); }

.no-brainer-row.highlight span:last-child { color: var(--growth); }

.no-brainer-conclusion {
  text-align: center;
  padding: 18px 24px;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.25);
  border-radius: 10px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-top: 24px;
}

.no-brainer-conclusion strong {
  color: var(--action);
  font-weight: 700;
}

.offer-cta-row { text-align: center; }
.offer-cta-row .btn-primary { width: 100%; justify-content: center; }

.offer-microcopy {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ============== FAQ ============== */
.faq { padding: 120px 0; background: var(--bg-secondary); }

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .eyebrow {
  background: var(--bg-elevated);
  color: var(--text-secondary);
}

.faq-header h2 { font-size: clamp(28px, 3.5vw, 40px); }

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(245, 244, 238, 0.025);
  border: 1px solid rgba(245, 244, 238, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease;
}

.faq-item:hover {
  background: rgba(245, 244, 238, 0.04);
}

.faq-item[open] {
  border-color: rgba(245, 244, 238, 0.18);
  background: rgba(245, 244, 238, 0.035);
}

.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 64px;
  list-style: none;
  color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(245, 244, 238, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 200ms ease;
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--action);
  color: var(--text-primary);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--text-primary); font-weight: 600; }

/* ============== FINAL CTA ============== */
.final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, var(--action-glow) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: -0.038em;
  margin-bottom: 32px;
  line-height: 1.05;
}

.final-cta-body {
  max-width: 760px;
  margin: 0 auto 40px;
}

.final-cta-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.final-cta-body p.emphasis {
  font-size: 23px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 28px;
  letter-spacing: -0.015em;
}

.final-microcopy {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.final-microcopy strong { color: var(--text-secondary); }

/* ============== FOOTER ============== */
.footer {
  padding: 56px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-links { display: flex; gap: 24px; font-size: 13px; }

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}

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

.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .pain-grid,
  .contrast-grid,
  .testimonial-grid,
  .future-stages,
  .ai-narrative {
    grid-template-columns: 1fr;
  }

  .testimonial.featured { grid-row: span 1; }
  .steps-timeline { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }

  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dashboard-mock { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: 1fr; }
  .price-pills { flex-direction: column; gap: 8px; }
  .price-comparison { gap: 16px; }
  .price-arrow { transform: rotate(90deg); }
  .price-old-value { font-size: 28px; }
  .price-new-value { font-size: 56px; }

  .saas-why-grid { grid-template-columns: 1fr; }

  .proof-screenshots-grid { grid-template-columns: 1fr; gap: 32px; }
  .screenshot-testimonial:nth-child(n) { transform: rotate(0deg); }

  .hero-offer-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hero-offer-strip-cta {
    justify-content: center;
  }

  .ai-window-callout { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ai-window-stat { border-left: none; padding-left: 0; padding-top: 24px; border-top: 1px solid var(--border-strong); width: 100%; text-align: left; }
}
