:root {
  --bg: #F8F3EC;
  --surface: #FFFFFF;
  --fg: #1A1A18;
  --fg-muted: #6B6860;
  --accent: #C97B1E;
  --accent-light: #F5E6D0;
  --border: #E0D8CC;
  --dispatch-bg: #1A1A18;
  --dispatch-fg: #F8F3EC;
  --dispatch-accent: #C97B1E;
  --success: #3A8C5C;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navbar */
.navbar {
  padding: 24px 48px;
  display: flex;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.brand-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  align-items: start;
}
.hero-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stat-row {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 300px;
  line-height: 1.5;
}

/* Dispatch Widget (Hero Visual) */
.hero-visual {
  padding-top: 8px;
}
.dispatch-widget {
  background: var(--dispatch-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}
.widget-header {
  background: #252521;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget-live {
  font-size: 10px;
  font-weight: 600;
  color: var(--success);
  letter-spacing: 0.06em;
}
.widget-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--dispatch-fg);
  letter-spacing: -0.01em;
}
.widget-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dispatch-job {
  background: #252521;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dispatch-job.incoming {
  border: 1px solid var(--accent);
}
.dispatch-job.assigned .job-status {
  background: rgba(201, 123, 30, 0.15);
  color: var(--accent);
}
.job-left {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.job-time {
  font-size: 11px;
  font-weight: 500;
  color: rgba(248,243,236,0.35);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  padding-top: 2px;
}
.job-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dispatch-fg);
}
.job-addr {
  font-size: 11px;
  color: rgba(248,243,236,0.5);
  margin-top: 2px;
}
.job-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.job-status.assigned {
  background: rgba(201, 123, 30, 0.15);
  color: var(--accent);
}
.job-status.done {
  background: rgba(58, 140, 92, 0.15);
  color: var(--success);
  font-weight: 600;
}
.widget-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(248,243,236,0.08);
  font-size: 11px;
  color: rgba(248,243,236,0.35);
}

/* Dispatch Section */
.dispatch {
  background: var(--fg);
  color: var(--dispatch-fg);
  padding: 96px 48px;
}
.dispatch-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dispatch-fg);
  margin-bottom: 24px;
}
.section-headline.centered {
  text-align: center;
  margin-bottom: 56px;
}
.section-body {
  font-size: 16px;
  color: rgba(248,243,236,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dispatch-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  padding: 24px 0;
  border-bottom: 1px solid rgba(248,243,236,0.1);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dispatch-fg);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: rgba(248,243,236,0.6);
  line-height: 1.55;
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--surface);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  background: var(--accent-light);
  padding: 96px 48px;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-headline {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 56px;
  text-align: center;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.outcome {
  background: var(--accent-light);
  padding: 40px 32px;
  text-align: center;
}
.outcome-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.outcome-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.outcomes-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 24px;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 120px 48px;
  background: var(--fg);
  text-align: center;
}
.closing-text {
  font-size: 16px;
  color: rgba(248,243,236,0.5);
  font-style: italic;
  margin-bottom: 32px;
  font-family: var(--font-display);
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: var(--dispatch-fg);
  line-height: 1.1;
}

/* Footer */
.footer {
  padding: 48px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-link:hover { color: var(--accent); }

/* ── AI Dispatch Simulator ──────────────────────────────────── */
.sim-section {
  background: var(--fg);
  padding: 96px 48px;
  color: var(--dispatch-fg);
}
.sim-inner { max-width: 1200px; margin: 0 auto; }
.sim-header { margin-bottom: 48px; }
.sim-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dispatch-fg);
  margin-bottom: 16px;
}
.sim-subtitle {
  font-size: 16px;
  color: rgba(248,243,236,0.6);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.sim-controls { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sim-select {
  background: #252521;
  border: 1px solid rgba(248,243,236,0.15);
  color: var(--dispatch-fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 32px 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 280px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C97B1E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.sim-select:focus { outline: none; border-color: var(--accent); }
.sim-btn {
  background: var(--accent);
  color: white;
  border: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.sim-btn:hover:not(:disabled) { opacity: 0.85; }
.sim-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.sim-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.sim-left  { display: flex; flex-direction: column; gap: 16px; }
.sim-board-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.sim-board-title {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248,243,236,0.4);
}
.sim-live-dot { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: rgba(248,243,236,0.3); }
.sim-live-dot.sim-live-active { color: var(--success); }
.sim-live-dot.sim-live-done   { color: var(--accent); }
.sim-board {
  background: #1e1e1b;
  border: 1px solid rgba(248,243,236,0.08);
  border-radius: 10px; overflow: hidden; min-height: 60px;
}
.sim-tech-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(248,243,236,0.06);
  transition: background 0.25s;
}
.sim-tech-row:last-child { border-bottom: none; }
.sim-tech-row.sim-winner { background: rgba(58,140,92,0.1); }
.sim-tech-left  { display: flex; flex-direction: column; gap: 2px; }
.sim-tech-name  { font-size: 13px; font-weight: 500; color: var(--dispatch-fg); }
.sim-tech-skills { font-size: 10px; color: rgba(248,243,236,0.4); }
.sim-tech-right { display: flex; align-items: center; gap: 8px; }
.sim-tech-score { font-family: var(--font-head); font-size: 15px; font-weight: 800; min-width: 28px; text-align: right; }
.sim-tech-load  { font-size: 10px; color: rgba(248,243,236,0.35); }
.sim-assign-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(58,140,92,0.2); color: var(--success);
  padding: 3px 7px; border-radius: 4px;
}
.sim-log-wrap { background: #141412; border: 1px solid rgba(248,243,236,0.08); border-radius: 10px; overflow: hidden; }
.sim-log-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,243,236,0.3);
  padding: 8px 12px 6px; border-bottom: 1px solid rgba(248,243,236,0.06);
}
.sim-log { padding: 10px 12px; max-height: 180px; overflow-y: auto; font-size: 11px; line-height: 1.7; }
.sim-log-placeholder { color: rgba(248,243,236,0.25); font-style: italic; }
.sim-log-line    { color: rgba(248,243,236,0.7); }
.sim-log-info    { color: rgba(248,243,236,0.75); }
.sim-log-muted   { color: rgba(248,243,236,0.4); padding-left: 4px; }
.sim-log-success { color: var(--success); font-weight: 600; }
.sim-log-score   { color: rgba(201,123,30,0.85); }
.sim-sms-wrap { background: #1e1e1b; border: 1px solid rgba(248,243,236,0.08); border-radius: 10px; padding: 12px 14px; }
.sim-sms-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(248,243,236,0.35); margin-bottom: 8px; }
.sim-sms-bubble {
  background: var(--accent); color: white;
  font-size: 12px; line-height: 1.55;
  padding: 10px 13px; border-radius: 12px 12px 4px 12px;
  max-width: 92%; margin-left: auto;
}
.sim-right { display: flex; flex-direction: column; gap: 12px; }
.sim-map-header { display: flex; align-items: center; justify-content: space-between; }
.sim-map-area { font-size: 11px; color: rgba(248,243,236,0.35); }
.sim-map-wrap { background: #141412; border: 1px solid rgba(248,243,236,0.08); border-radius: 10px; overflow: hidden; }
.sim-map { width: 100%; height: auto; display: block; }
.sim-eta-bar {
  background: rgba(58,140,92,0.12); border: 1px solid rgba(58,140,92,0.25);
  border-radius: 8px; padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.sim-eta-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(248,243,236,0.45); }
.sim-eta-value { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--success); }

/* ── ROI Calculator ─────────────────────────────────────────── */
.roi-section {
  background: var(--surface);
  padding: 96px 48px;
}
.roi-inner { max-width: 1200px; margin: 0 auto; }
.roi-header { margin-bottom: 56px; }
.roi-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.roi-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.roi-inputs { display: flex; flex-direction: column; gap: 28px; }
.roi-input-group { display: flex; flex-direction: column; gap: 8px; }
.roi-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.roi-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}
.roi-input-prefix {
  padding: 0 10px;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg);
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 42px;
}
.roi-input-unit {
  padding: 0 12px;
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg);
  border-left: 1px solid var(--border);
  white-space: nowrap;
  line-height: 42px;
}
.roi-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  -moz-appearance: textfield;
}
.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi-input--prefixed { padding-left: 10px; }
.roi-assumptions {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.roi-assumptions-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.roi-assumptions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.roi-assumptions-list li {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.roi-assumptions-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.roi-results {
  background: var(--fg);
  border-radius: 16px;
  overflow: hidden;
  color: var(--dispatch-fg);
}
.roi-result-item {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(248,243,236,0.08);
}
.roi-result-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248,243,236,0.45);
  margin-bottom: 6px;
}
.roi-result-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--dispatch-fg);
  line-height: 1;
  margin-bottom: 5px;
}
.roi-result-value--green { color: var(--success); }
.roi-result-note {
  font-size: 11px;
  color: rgba(248,243,236,0.4);
  line-height: 1.4;
}
.roi-result-total {
  padding: 28px;
  background: rgba(201,123,30,0.12);
  border-top: 1px solid rgba(201,123,30,0.25);
}
.roi-result-total-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.roi-result-total-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--dispatch-fg);
  line-height: 1;
  margin-bottom: 6px;
}
.roi-result-total-note {
  font-size: 12px;
  color: rgba(248,243,236,0.5);
}
.roi-caveat {
  padding: 16px 28px;
  font-size: 11px;
  color: rgba(248,243,236,0.3);
  line-height: 1.55;
  border-top: 1px solid rgba(248,243,236,0.06);
}

/* ── Scenario Cards ─────────────────────────────────────────── */
.scen-section {
  background: var(--bg);
  padding: 96px 48px;
}
.scen-inner { max-width: 1200px; margin: 0 auto; }
.scen-header { margin-bottom: 56px; }
.scen-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.scen-title em { font-style: italic; }
.scen-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}
.scen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.scen-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scen-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.scen-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.scen-tag--urgent      { background: rgba(220,38,38,0.1);  color: #DC2626; }
.scen-tag--disruption  { background: rgba(201,123,30,0.12); color: var(--accent); }
.scen-tag--reschedule  { background: rgba(58,140,92,0.1);  color: var(--success); }
.scen-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.scen-card-intro {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.scen-steps {
  list-style: none;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.scen-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.scen-step em { color: var(--fg); font-style: normal; font-weight: 500; }
.scen-step-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1.4;
}
.scen-badge {
  margin: 0 28px 24px;
  background: var(--fg);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.scen-badge-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(248,243,236,0.5);
}
.scen-badge-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--success);
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .sim-section { padding: 64px 24px; }
  .sim-stage   { grid-template-columns: 1fr; }
  .sim-select  { min-width: 100%; }
  .hero { padding: 48px 24px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .dispatch-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .features, .dispatch, .outcomes, .closing { padding: 64px 24px; }
  .navbar { padding: 20px 24px; }
  .roi-section, .scen-section { padding: 64px 24px; }
  .roi-layout { grid-template-columns: 1fr; }
  .scen-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 42px; }
}

/* ── Simulator tab toggle ───────────────────────────────────── */
.sim-tab-bar {
  display: flex;
  gap: 4px;
  background: #1a1a17;
  border: 1px solid rgba(248,243,236,0.1);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 24px;
}
.sim-tab {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: rgba(248,243,236,0.45);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.sim-tab:hover:not(.sim-tab-active) { color: rgba(248,243,236,0.75); }
.sim-tab.sim-tab-active {
  background: var(--accent);
  color: white;
}

/* ── BYO form ───────────────────────────────────────────────── */
.byo-form-wrap { margin-top: 4px; }
.byo-form { display: flex; flex-direction: column; gap: 14px; }
.byo-row { display: grid; gap: 12px; }
.byo-row-2 { grid-template-columns: 1fr 1fr; }
.byo-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.byo-field { display: flex; flex-direction: column; gap: 6px; }
.byo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,243,236,0.45);
}
.byo-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(248,243,236,0.3); }
.byo-input, .byo-select {
  background: #1e1e1b;
  border: 1px solid rgba(248,243,236,0.13);
  border-radius: 8px;
  color: var(--dispatch-fg);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 13px;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.byo-input:focus, .byo-select:focus {
  outline: none;
  border-color: var(--accent);
}
.byo-input::placeholder { color: rgba(248,243,236,0.25); }
.byo-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C97B1E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.byo-select option { background: #1e1e1b; }
.byo-actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.byo-submit-btn { min-width: 160px; }
.byo-rate-hint { font-size: 11px; color: rgba(248,243,236,0.3); }
.byo-error {
  margin-top: 8px;
  padding: 9px 13px;
  background: rgba(180,60,40,0.15);
  border: 1px solid rgba(180,60,40,0.3);
  border-radius: 8px;
  color: #e07060;
  font-size: 12px;
}
.byo-thinking { color: rgba(248,243,236,0.55) !important; font-style: normal !important; }
@media (max-width: 768px) {
  .byo-row-2 { grid-template-columns: 1fr; }
  .byo-row-3 { grid-template-columns: 1fr; }
  .sim-tab-bar { width: 100%; }
  .sim-tab { flex: 1; text-align: center; }
}