/* === BASE === */
:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --fg: #F0EDE8;
  --fg-muted: #8A8680;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

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

.nav-cta {
  padding: 8px 20px;
  background: var(--accent) !important;
  color: #0A0A0A !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* === HERO (base styles — overridden by landing page grid layout) === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: var(--bg-card);
}

/* === STATS === */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === MODELS === */
.models {
  padding: 96px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.model-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 166, 35, 0.25);
}

.model-card--featured {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.04);
}

.model-card--featured:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.07);
}

.model-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.model-icon {
  margin-bottom: 20px;
}

.model-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.model-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.model-math {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.model-math span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.model-math strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.model-examples {
  font-size: 0.75rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

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

.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 24px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
}

.manifesto-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.manifesto-rule {
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.manifesto-attr span {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === CLOSING === */
.closing {
  padding: 96px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

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

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === LANDING PAGE SECTIONS === */
.value-props, .how-it-works {
  padding: 80px 40px;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.prop-icon { margin-bottom: 20px; }

.prop-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.prop-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step { flex: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  padding-top: 32px;
  flex-shrink: 0;
}

/* === WAITLIST === */
.waitlist-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

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

.waitlist-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

.waitlist-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.waitlist-form { width: 100%; }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: rgba(245,166,35,0.5); }
.form-input::placeholder { color: var(--fg-muted); }

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0A0A0A;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: #fdb53a; transform: translateY(-1px); }

.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px;
}

.waitlist-error {
  margin-top: 12px;
  color: #ff6b6b;
  font-size: 0.875rem;
}

/* === HERO LAYOUT (landing page) === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner { max-width: 540px; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

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

.quote-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  width: 300px;
}

.quote-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.quote-logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
  font-size: 0.95rem;
}

.quote-badge {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.quote-preview-route {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.route-dot--end { background: var(--fg-muted); }

.route-line {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-left: 4px;
}

.route-city {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

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

.quote-preview-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.quote-preview-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === LIVE DEMO QUOTE === */
.demo-quote-section {
  padding: 96px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.demo-form {
  margin-top: 40px;
}

.demo-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 180px;
}

.demo-field--sm {
  flex: 0 1 140px;
}

.demo-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.demo-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

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

.demo-input option {
  background: #1a1a1a;
  color: var(--fg);
}

.demo-submit {
  background: var(--accent);
  color: #0A0A0A;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: opacity .2s;
  align-self: flex-end;
  height: 46px;
}

.demo-submit:disabled { opacity: .6; cursor: not-allowed; }

.demo-error {
  margin-top: 16px;
  color: #f87171;
  font-size: 14px;
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.25);
  border-radius: 8px;
  padding: 10px 16px;
}

/* Result card */
.demo-result-card {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.demo-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #0f0f0f;
  border-bottom: 1px solid var(--border);
}

.demo-result-lane {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  font-family: var(--font-display);
}

.demo-result-badge {
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 100px;
  padding: 4px 12px;
}

.demo-result-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.demo-stat {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.demo-stat:last-child { border-right: none; }

.demo-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.demo-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.demo-rate-range {
  color: var(--accent);
  font-size: 20px;
}

.demo-result-note {
  padding: 8px 24px 0;
  font-size: 12px;
  color: var(--fg-muted);
}

/* PDF email capture */
.demo-pdf-cta {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.demo-email-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-email-input {
  flex: 1 1 240px;
}

.demo-email-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--fg-muted);
}

.demo-pdf-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
  font-size: 15px;
  color: var(--fg);
}

/* === ROI CALCULATOR === */
.roi-calc {
  padding: 96px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.roi-inputs { display: flex; flex-direction: column; gap: 28px; }

.roi-input-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-input-group label span:first-child {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.roi-input-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
  text-align: right;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
  transition: box-shadow 0.2s;
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}

.roi-slider:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(245,166,35,0.25);
}

.roi-outputs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: sticky;
  top: 80px;
}

.roi-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.roi-output-row:last-of-type { border-bottom: none; }

.roi-output-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.roi-output-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.roi-net {
  margin-top: 24px;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  text-align: center;
}

.roi-net-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.roi-net-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.roi-net-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.roi-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: var(--accent);
  color: #0A0A0A;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s, transform 0.15s;
}

.roi-cta:hover { background: #fdb53a; transform: translateY(-1px); }

.roi-disclosure {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .stats { padding: 32px 20px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-divider { width: 48px; height: 1px; }
  .models { padding: 64px 20px; }
  .models-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 48px 20px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .value-props, .how-it-works { padding: 64px 20px; }
  .props-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .waitlist-section { padding: 64px 20px; }
  .demo-quote-section { padding: 64px 20px; }
  .demo-form-row { flex-direction: column; }
  .demo-field, .demo-field--sm { flex: 1 1 100%; }
  .demo-submit { width: 100%; }
  .demo-result-body { grid-template-columns: repeat(2, 1fr); }
  .demo-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .demo-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .demo-stat:nth-last-child(-n+2) { border-bottom: none; }
  .roi-calc { padding: 64px 20px; }
  .roi-calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .roi-outputs { position: static; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .stat-number { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
}

/* === BENCHMARK LEAD MAGNET === */
.benchmark-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1200 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benchmark-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.benchmark-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.benchmark-headline {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 12px;
}
.benchmark-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.benchmark-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.benchmark-lane-chip {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.benchmark-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 12px;
}
.benchmark-input {
  flex: 1;
  padding: 12px 16px;
  background: #111;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  color: var(--fg);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.benchmark-input:focus { border-color: var(--accent); }
.benchmark-success {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.benchmark-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.benchmark-note {
  color: var(--fg-muted);
  font-size: 0.78rem;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .benchmark-section { padding: 64px 20px; }
  .benchmark-headline { font-size: 1.6rem; }
  .benchmark-form { flex-direction: column; }
  .benchmark-input { width: 100%; }
}