:root {
  --canvas: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f5f3ef;
  --border: #eae7e1;
  --border-strong: #dcd8d0;
  --text: #18181b;
  --text-muted: #6b6b72;
  --text-faint: #9a9aa2;
  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-soft: #eef0ff;
  --accent-text: #3730a3;
  --success: #0e9f6e;
  --success-soft: #e3f6ee;
  --warning: #d97706;
  --warning-soft: #fcefd9;
  --danger: #dc2626;
  --ink: #14132b;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 16, 20, 0.04);
  --shadow-md: 0 1px 2px rgba(16, 16, 20, 0.04), 0 8px 24px rgba(16, 16, 20, 0.06);
  --shadow-lg: 0 1px 2px rgba(16, 16, 20, 0.04), 0 24px 64px rgba(16, 16, 20, 0.1);
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  background: var(--canvas);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.006em;
}

.mono { font-family: "Geist Mono", monospace; font-variant-numeric: tabular-nums; }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; color: var(--text); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 19px; letter-spacing: -0.02em; }
p { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--accent-text); background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px;
}

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 15px; font-weight: 500; font-family: inherit;
  padding: 11px 20px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: all 0.15s cubic-bezier(0.2, 0, 0.2, 1); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(251, 250, 248, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent);
  display: grid; place-items: center; color: #fff;
}
.brand-mark svg { width: 17px; height: 17px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--text); }

/* Hero */
.hero { padding: 72px 0 40px; text-align: center; position: relative; overflow: hidden; }
.hero h1 {
  font-size: clamp(40px, 6vw, 64px); letter-spacing: -0.035em; line-height: 1.03;
  max-width: 880px; margin: 22px auto 0;
}
.hero .accent-word { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); max-width: 600px; margin: 22px auto 0; color: var(--text-muted); }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 20px; font-size: 14px; color: var(--text-faint); display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--success); }

/* Product preview frame */
.preview-wrap { margin: 56px auto 0; max-width: 1000px; position: relative; }
.preview-frame {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.preview-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.preview-bar i { width: 11px; height: 11px; border-radius: 999px; background: var(--border-strong); }
.preview-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; padding: 18px; background: var(--canvas); }
.lc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; min-height: 230px; }
.lc-head { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; margin-bottom: 14px; }
.live-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--danger); position: relative; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--danger); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0; transform: scale(2.4); } }
.bubble { font-size: 13px; padding: 9px 12px; border-radius: 12px; max-width: 82%; margin-bottom: 8px; line-height: 1.45; }
.bubble.caller { background: var(--surface-2); color: var(--text); border-radius: 12px 12px 12px 4px; }
.bubble.calla { background: var(--accent-soft); color: var(--accent-text); border-radius: 12px 12px 4px 12px; margin-left: auto; }
.steps-mini { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; }
.step-mini { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text); margin-bottom: 7px; }
.step-mini .ck { width: 16px; height: 16px; border-radius: 999px; background: var(--success-soft); color: var(--success); display: grid; place-items: center; }
.step-mini .ck svg { width: 10px; height: 10px; }
.side-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; margin-bottom: 12px; }
.side-stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); font-weight: 500; }
.side-stat .val { font-size: 22px; font-weight: 600; margin-top: 4px; font-variant-numeric: tabular-nums; }
.side-stat.hero-stat { background: var(--accent); color: #fff; border: 0; }
.side-stat.hero-stat .label { color: rgba(255, 255, 255, 0.7); }
.side-stat.hero-stat .val { font-size: 28px; }

/* Logos / context strip */
.context { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.context-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.context-grid .stat .n { font-size: clamp(26px, 3.4vw, 34px); font-weight: 600; letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums; }
.context-grid .stat .l { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

/* Calculator */
.calc { background: var(--ink); border-radius: var(--r-xl); padding: 48px; color: #fff; box-shadow: var(--shadow-lg); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.calc h2 { color: #fff; }
.calc p { color: rgba(255, 255, 255, 0.6); }
.calc-field { margin-top: 22px; }
.calc-field .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.calc-field label { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.calc-field .out { font-size: 16px; font-weight: 600; font-variant-numeric: tabular-nums; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.15); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 19px; height: 19px; border-radius: 999px; background: #fff; cursor: pointer; border: 4px solid var(--accent); }
input[type="range"]::-moz-range-thumb { width: 19px; height: 19px; border-radius: 999px; background: #fff; cursor: pointer; border: 4px solid var(--accent); }
.calc-result { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--r-lg); padding: 28px; text-align: center; }
.calc-result .lbl { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.calc-result .big { font-size: clamp(40px, 6vw, 56px); font-weight: 600; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; margin: 6px 0; }
.calc-result .sub { font-size: 14px; color: var(--warning); }
.calc-result .annual { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 15px; color: rgba(255, 255, 255, 0.85); }
.calc-result .annual b { color: #fff; font-variant-numeric: tabular-nums; }
.calc-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.4); margin-top: 16px; text-align: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.step-num { width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-text); display: grid; place-items: center; font-weight: 600; font-size: 14px; font-variant-numeric: tabular-nums; }
.step-card h3 { margin: 16px 0 8px; }
.step-card p { font-size: 14.5px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: box-shadow 0.2s, transform 0.2s; }
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature .ico { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.feature .ico svg { width: 20px; height: 20px; }
.feature h3 { margin: 16px 0 8px; }
.feature p { font-size: 14.5px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; position: relative; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.price-badge { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 999px; }
.price-card .plan { font-size: 15px; font-weight: 600; }
.price-card .who { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.price-card .amount { margin: 20px 0 4px; font-size: 38px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price-card .amount span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.price-card .setup { font-size: 13.5px; color: var(--text-muted); }
.price-card ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.price-card li { display: flex; gap: 9px; font-size: 14.5px; align-items: flex-start; }
.price-card li svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { width: 100%; }
.perf-note { text-align: center; margin-top: 28px; font-size: 14.5px; color: var(--text-muted); }
.perf-note b { color: var(--text); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: 0; font-family: inherit; text-align: left; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 17px; font-weight: 500; color: var(--text); }
.faq-q svg { width: 20px; height: 20px; color: var(--text-faint); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 22px; font-size: 15.5px; }

/* CTA band */
.cta-band { background: var(--accent); border-radius: var(--r-xl); padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); top: -120px; right: -80px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 14px auto 0; max-width: 520px; position: relative; }
.cta-band .hero-cta { position: relative; margin-top: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #f3f3f7; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 48px 0 36px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.foot-brand { max-width: 280px; }
.foot-brand p { font-size: 14px; margin-top: 12px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-faint); font-weight: 500; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--text-faint); }

/* Reveal on scroll — only hides content when JS is active (SEO/no-JS safe) */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ── Multi-page additions ───────────────────────────────────────────── */
.nav-links a.active { color: var(--text); font-weight: 500; }
.hero-sm { padding: 64px 0 8px; }
.hero-sm h1 { font-size: clamp(34px, 5vw, 52px); }
.container.narrow { max-width: 760px; }
.lead { font-size: 21px; line-height: 1.5; color: var(--text); letter-spacing: -0.01em; }

/* Prose (about, legal) */
.prose h1 { font-size: clamp(30px, 4.5vw, 44px); }
.prose h2 { font-size: 22px; margin: 36px 0 12px; }
.prose p { font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; color: var(--text-muted); }
.prose p.muted { color: var(--text-faint); font-size: 14px; margin-top: -4px; }
.prose a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 2px; }
.legal { padding-top: 56px; }

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text-muted); }
.checklist li b { color: var(--text); font-weight: 500; }
.checklist svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* Compare table */
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 13px; font-weight: 500; color: var(--text-muted); background: var(--surface-2); }
.compare th.hl, .compare td.hl { background: var(--accent-soft); color: var(--accent-text); }
.compare td:first-child { color: var(--text); font-weight: 500; }
.compare td svg { width: 16px; height: 16px; color: var(--success); }
.compare tr:last-child td { border-bottom: 0; }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.reassure { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.reassure-item { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text-muted); }
.reassure-item b { color: var(--text); font-weight: 500; }
.reassure-item svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.contact-alt { margin-top: 24px; font-size: 15px; color: var(--text-muted); }
.contact-alt a { color: var(--accent-text); }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text); background: var(--surface);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 10px 12px; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 14.5px; text-align: center; min-height: 20px; }
.form-status.ok { color: var(--success); }
.form-status.err { color: var(--danger); }
.form-fine { margin-top: 14px; font-size: 12.5px; color: var(--text-faint); text-align: center; }
.form-fine a { color: var(--text-muted); text-decoration: underline; }

/* Industries index */
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trade-card { display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: box-shadow 0.2s, transform 0.2s; }
.trade-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trade-ico { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.trade-ico svg { width: 20px; height: 20px; }
.trade-card h3 { margin-top: 8px; }
.trade-card p { font-size: 14px; color: var(--text-muted); }
.trade-link { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--accent-text); }

/* Resources / articles */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: box-shadow 0.2s, transform 0.2s; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.article-card p { font-size: 14.5px; color: var(--text-muted); }
.article-tag { align-self: flex-start; font-size: 12px; font-weight: 500; color: var(--accent-text); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; }
.article-meta { margin-top: auto; font-size: 13px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.back-link { display: inline-block; font-size: 14px; color: var(--text-muted); }
.back-link:hover { color: var(--text); }
.prose .lead { margin: 8px 0 24px; }
.prose ul { margin: 0 0 16px 0; padding-left: 22px; color: var(--text-muted); }
.prose ul.checklist { padding-left: 0; }
.prose li { margin-bottom: 8px; font-size: 16.5px; line-height: 1.6; }
.article-cta { margin-top: 48px; padding: 32px; background: var(--surface-2); border-radius: var(--r-lg); text-align: center; }
.article-cta .hero-cta { justify-content: center; margin-top: 20px; }

/* ROI calculator */
.roi { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.roi-inputs { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.roi-inputs .calc-field { margin-top: 0; margin-bottom: 22px; }
.roi-inputs .calc-field:last-child { margin-bottom: 0; }
.roi-inputs label { color: var(--text); }
.roi-inputs input[type="range"] { background: var(--border); }
.roi-inputs input[type="range"]::-webkit-slider-thumb { border-color: var(--accent); }
.plan-toggle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.plan-toggle button { font-family: inherit; font-size: 14px; font-weight: 500; padding: 10px; border-radius: var(--r-sm); border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
.plan-toggle button.on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-text); }
.roi-results { background: var(--ink); border-radius: var(--r-lg); padding: 28px; color: #fff; box-shadow: var(--shadow-md); }
.roi-hero { text-align: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.roi-hero .lbl { font-size: 14px; color: rgba(255,255,255,0.6); }
.roi-hero .big { font-size: clamp(38px, 6vw, 52px); font-weight: 600; letter-spacing: -0.03em; color: #fff; margin: 6px 0 2px; }
.roi-hero .sub { font-size: 13.5px; color: var(--success); }
.roi-rows { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.roi-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; color: rgba(255,255,255,0.8); }
.roi-row b { color: #fff; font-weight: 500; }
.roi-row .muted { color: rgba(255,255,255,0.45); font-size: 13px; }
.roi-row.total { padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 16px; color: #fff; }
.roi-multiple { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 14px; text-align: center; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.roi-multiple b { color: #fff; }

@media (max-width: 900px) {
  .contact-grid, .compare-wrap, .roi { grid-template-columns: 1fr; }
  .trade-grid, .article-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 28px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px; box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 10px 0; font-size: 16px; }
  .preview-body, .calc-grid, .steps, .features, .pricing { grid-template-columns: 1fr; }
  .context-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .calc { padding: 32px 24px; }
  .cta-band { padding: 40px 24px; }
  .section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   LIQUID GLASS THEME + VAPI-STYLE PHOTO HERO
   ════════════════════════════════════════════════════════════════════════ */
:root {
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-blur: blur(22px) saturate(180%);
  --glass-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 34px rgba(16,16,20,.08);
  --ink-2: #0b0b12;
}

/* Ambient gradient field so frosted surfaces read as glass */
body {
  background:
    radial-gradient(60rem 40rem at 12% -8%, rgba(79,70,229,0.10), transparent 60%),
    radial-gradient(48rem 36rem at 100% 8%, rgba(45,212,191,0.10), transparent 55%),
    radial-gradient(50rem 50rem at 50% 120%, rgba(124,108,255,0.08), transparent 60%),
    var(--canvas);
  background-attachment: fixed;
}

/* Frosted nav */
.nav { background: rgba(251,250,248,0.6); backdrop-filter: var(--glass-blur); border-bottom: 1px solid rgba(255,255,255,0.5); }

/* Glass utility + frosted cards (override the flat surfaces) */
.glass,
.feature, .price-card, .step-card, .article-card, .trade-card, .form-card,
.roi-inputs, .compare, .preview-frame, .side-stat:not(.hero-stat) {
  background: var(--glass) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
}
.feature:hover, .price-card:hover, .article-card:hover, .trade-card:hover { background: var(--glass-strong) !important; }
.context { background: rgba(255,255,255,0.4); backdrop-filter: var(--glass-blur); border-color: var(--glass-border); }

/* ── Photographic glass hero (Vapi-style) ───────────────────────────── */
.hero-photo { position: relative; min-height: 600px; display: flex; align-items: center; padding: 96px 0; overflow: hidden; }
.hero-photo-bg { position: absolute; inset: 0; background: url("/hero.jpg") center 30%/cover no-repeat; transform: scale(1.03); }
.hero-photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,14,0.92) 0%, rgba(8,8,14,0.7) 42%, rgba(8,8,14,0.35) 100%),
    radial-gradient(40rem 30rem at 8% 50%, rgba(79,70,229,0.35), transparent 60%);
}
.hero-photo-inner { position: relative; z-index: 1; max-width: 680px; color: #fff; }
.hero-photo h1 { color: #fff; font-size: clamp(40px, 6vw, 66px); letter-spacing: -0.035em; line-height: 1.02; }
.accent-word-light { background: linear-gradient(90deg, #a5b4fc, #5eead4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.onglass-sub { color: rgba(255,255,255,0.82); font-size: clamp(17px, 2.2vw, 20px); max-width: 560px; margin-top: 20px; }
.eyebrow-onglass { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: var(--glass-blur); }
.hero-trust-onglass { margin-top: 26px; }
.hero-trust-onglass span { color: rgba(255,255,255,0.82); }
.hero-trust-onglass svg { color: #5eead4; }

/* ── Glass launcher (inline live demo) ──────────────────────────────── */
.glass-launcher {
  display: flex; gap: 10px; align-items: center; margin-top: 32px; max-width: 540px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 18px; padding: 10px; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 16px 50px rgba(0,0,0,.35);
}
.gl-select { position: relative; flex: 1; display: flex; align-items: center; }
.gl-select select {
  width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer;
  background: transparent; border: 0; color: #fff; font-family: inherit; font-size: 15px;
  padding: 12px 36px 12px 14px;
}
.gl-select select option { color: #18181b; }
.gl-select > svg { position: absolute; right: 12px; width: 18px; height: 18px; color: rgba(255,255,255,0.7); pointer-events: none; }
.gl-btn { white-space: nowrap; gap: 8px; }
.gl-btn svg { width: 16px; height: 16px; }
.gl-btn.calling { background: var(--danger); }
.gl-btn.calling::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: #fff; animation: pulse 1.1s ease-in-out infinite; }

/* Inline demo status + transcript on the hero */
.demo-status { margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,0.7); min-height: 18px; }
.demo-transcript { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; max-width: 540px; max-height: 220px; overflow-y: auto; }
.demo-transcript .bubble { font-size: 13.5px; padding: 9px 12px; border-radius: 14px; max-width: 85%; line-height: 1.45; backdrop-filter: var(--glass-blur); }
.demo-transcript .bubble.calla { background: rgba(124,108,255,0.28); color: #fff; align-self: flex-start; border: 1px solid rgba(165,180,252,0.4); }
.demo-transcript .bubble.caller { background: rgba(255,255,255,0.14); color: #fff; align-self: flex-end; border: 1px solid rgba(255,255,255,0.18); }

@media (max-width: 760px) {
  .hero-photo { padding: 64px 0; min-height: 0; }
  .hero-photo-scrim { background: linear-gradient(180deg, rgba(8,8,14,0.8), rgba(8,8,14,0.92)); }
  .glass-launcher { flex-direction: column; align-items: stretch; }
  .gl-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════════
   Liquid Glass theme — frosted surfaces, photo hero, ambient depth
   ════════════════════════════════════════════════════════════════════ */
:root {
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: saturate(180%) blur(20px);
  --glass-shadow: 0 1px 1px rgba(255,255,255,.5) inset, 0 8px 30px rgba(16,16,20,.08);
  --glass-dark: rgba(18, 17, 35, 0.55);
}

/* Ambient color field behind everything (so glass has something to refract) */
body { position: relative; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50rem 40rem at 12% -5%, rgba(79,70,229,.14), transparent 60%),
    radial-gradient(45rem 38rem at 100% 8%, rgba(14,159,110,.10), transparent 55%),
    radial-gradient(55rem 45rem at 60% 110%, rgba(217,119,6,.08), transparent 60%),
    var(--canvas);
}

/* ── Frosted nav ─────────────────────────────────────────────────── */
.nav {
  background: rgba(251, 250, 248, 0.6) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255,255,255,.5);
}

/* ── Photo hero (Vapi-style) ─────────────────────────────────────── */
.hero-photo { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero-photo-bg {
  position: absolute; inset: 0; background-image: url("/hero.jpg");
  background-size: cover; background-position: 62% center; transform: scale(1.03);
}
.hero-photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,18,.82) 0%, rgba(10,10,18,.55) 38%, rgba(10,10,18,.12) 70%, rgba(10,10,18,.30) 100%),
    linear-gradient(0deg, rgba(10,10,18,.45), transparent 40%);
}
.hero-photo-inner { position: relative; z-index: 2; padding: 96px 0; text-align: left; max-width: 760px; }
.hero-photo-inner h1 {
  color: #fff; font-size: clamp(42px, 6vw, 70px); line-height: 1.02;
  letter-spacing: -0.035em; margin: 18px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.accent-word-light { color: #c5cbff; }
.onglass-sub { color: rgba(255,255,255,.9); max-width: 540px; margin-top: 20px; text-shadow: 0 1px 16px rgba(0,0,0,.3); }
.eyebrow-onglass {
  background: rgba(255,255,255,.16); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-trust-onglass { color: rgba(255,255,255,.85); margin-top: 28px; }
.hero-trust-onglass svg { color: #6ee7b7; }

/* Glass launcher (frosted dark pill: scenario select + Talk button) */
.glass-launcher {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px;
  padding: 8px; border-radius: 16px;
  background: var(--glass-dark); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 1px 1px rgba(255,255,255,.18) inset, 0 12px 40px rgba(0,0,0,.35);
  flex-wrap: wrap;
}
.gl-select { position: relative; display: flex; align-items: center; }
.gl-select select {
  appearance: none; -webkit-appearance: none; font-family: inherit; font-size: 15px; font-weight: 500;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px; padding: 12px 40px 12px 16px; cursor: pointer; min-width: 230px;
}
.gl-select select option { color: #18181b; }
.gl-select svg { position: absolute; right: 14px; width: 18px; height: 18px; color: rgba(255,255,255,.8); pointer-events: none; }
.gl-btn { padding: 12px 22px; border-radius: 11px; }
.gl-btn svg { width: 15px; height: 15px; }

/* ── Glass surfaces (cards) ──────────────────────────────────────── */
.feature, .price-card, .step-card, .article-card, .trade-card, .form-card,
.preview-frame, .compare, .roi-inputs, .article-cta, .mic, .cal-embed,
.side-stat:not(.hero-stat) {
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.feature:hover, .trade-card:hover, .article-card:hover { background: var(--glass-bg-strong) !important; }
.price-card.featured { border: 2px solid var(--accent) !important; background: var(--glass-bg-strong) !important; }
.context { background: rgba(255,255,255,.4); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); }

/* Secondary/ghost buttons get a glassy feel */
.btn-ghost {
  background: rgba(255,255,255,.55) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.6) !important;
}

/* Dark glass panels keep depth */
.calc, .roi-results, .cta-band {
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 1px rgba(255,255,255,.08) inset, 0 18px 50px rgba(0,0,0,.22) !important;
}

@media (max-width: 900px) {
  .hero-photo { min-height: 0; }
  .hero-photo-inner { padding: 64px 0; }
  .glass-launcher { width: 100%; }
  .gl-select, .gl-select select { width: 100%; }
  .gl-btn { width: 100%; justify-content: center; }
}

/* Inline hero demo (status + transcript on the photo scrim) */
.demo-status { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.88); min-height: 20px; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.demo-transcript { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; max-height: 200px; overflow-y: auto; max-width: 540px; }
.demo-transcript > div { font-size: 13.5px; line-height: 1.4; padding: 8px 12px; border-radius: 12px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.dt-calla { background: rgba(197,203,255,.20); color: #eef0ff; align-self: flex-start; border: 1px solid rgba(255,255,255,.18); }
.dt-caller { background: rgba(255,255,255,.14); color: #fff; align-self: flex-end; border: 1px solid rgba(255,255,255,.14); }
.gl-btn.calling { background: var(--danger) !important; }
