:root {
  color-scheme: dark;
  --bg: #08090a;
  --bg-deep: #010102;
  --panel: rgba(255,255,255,.035);
  --panel-strong: rgba(255,255,255,.065);
  --surface: #111318;
  --surface-2: #191b22;
  --text: #f7f8f8;
  --text-soft: #d0d6e0;
  --muted: #8a8f98;
  --faint: #62666d;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --purple: #5e6ad2;
  --purple-hot: #7170ff;
  --cyan: #4df3ff;
  --green: #10b981;
  --navy: #061b31;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0,0,0,.42);
  --shadow-blue: rgba(50,50,93,.25) 0 30px 45px -30px, rgba(0,0,0,.25) 0 18px 36px -18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -4%, rgba(94,106,210,.42), transparent 30rem),
    radial-gradient(circle at 85% 6%, rgba(77,243,255,.14), transparent 26rem),
    linear-gradient(180deg, #08090a 0%, #0b0d12 48%, #050609 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv01", "ss03";
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25), transparent 85%);
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); line-height: 1.7; }

.ambient { position: fixed; pointer-events: none; filter: blur(16px); opacity: .8; }
.ambient-one { width: 260px; height: 260px; border-radius: 50%; background: rgba(94,106,210,.18); top: 18%; left: -120px; }
.ambient-two { width: 240px; height: 240px; border-radius: 50%; background: rgba(16,185,129,.1); right: -110px; top: 52%; }

.site-header,
.section-shell,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  min-height: 66px;
  margin-top: 14px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,9,10,.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); letter-spacing: -.02em; }
.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f8f8, #d0d6e0);
  color: #08090a;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-blue);
}
.desktop-nav { display: flex; gap: 8px; align-items: center; }
.desktop-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 510;
  padding: 10px 12px;
  border-radius: 10px;
}
.desktop-nav a:hover { color: var(--text); background: rgba(255,255,255,.045); }
.nav-cta {
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--purple);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 42px rgba(94,106,210,.32);
}

.section-shell { position: relative; padding: 92px 0; }
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 56px;
  padding-top: 76px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #aeb6ff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(52px, 8vw, 94px);
  font-weight: 510;
  line-height: .92;
  letter-spacing: -0.075em;
}
h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 510;
  line-height: .98;
  letter-spacing: -0.055em;
}
h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 22px;
  font-weight: 590;
  letter-spacing: -.025em;
}
.hero-subhead {
  max-width: 690px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 730;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--purple); border-color: rgba(255,255,255,.14); color: white; box-shadow: 0 18px 54px rgba(94,106,210,.34); }
.button.primary:hover { background: var(--purple-hot); }
.button.secondary { background: rgba(255,255,255,.035); color: var(--text-soft); }
.button.secondary:hover { background: rgba(255,255,255,.06); color: var(--text); }
.button.large { min-height: 58px; padding-inline: 28px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255,255,255,.025);
  font-size: 13px;
}

.hero-console {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.console-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.green { background: var(--green); box-shadow: 0 0 18px rgba(16,185,129,.6); }
.dot.blue { background: var(--cyan); }
.dot.violet { background: var(--purple-hot); }
.console-title { margin-left: auto; color: var(--faint); font-family: "JetBrains Mono", monospace; font-size: 12px; }
.missed-call-card { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.045); }
.mini-label { margin-bottom: 8px; color: var(--green); font-family: "JetBrains Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.missed-call-card h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); }
.live-pill { padding: 7px 10px; border-radius: 999px; background: rgba(16,185,129,.12); color: #8ff5c7; border: 1px solid rgba(16,185,129,.25); font-size: 12px; font-weight: 700; }
.message-stack { display: grid; gap: 12px; padding: 0 20px 20px; }
.bubble { max-width: 88%; padding: 14px 15px; border-radius: 16px; line-height: 1.5; color: var(--text-soft); border: 1px solid var(--line); }
.system-bubble { background: rgba(94,106,210,.13); }
.customer-bubble { justify-self: end; background: rgba(255,255,255,.06); color: var(--text); }
.pipeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.pipeline-grid div { padding: 18px; border-right: 1px solid var(--line); }
.pipeline-grid div:last-child { border-right: 0; }
.pipeline-grid strong { display: block; margin-bottom: 4px; font-size: 28px; }
.pipeline-grid span { color: var(--faint); font-size: 12px; }

.split-section,
.roi-section { display: grid; grid-template-columns: 1fr .82fr; gap: 44px; align-items: center; }
.stat-board,
.roi-card,
.feature-card,
.timeline article,
.compare-card,
.price-card,
.fit-section,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.stat-board { padding: 16px; }
.stat-row,
.calc-row,
.calc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.stat-row:last-child, .calc-row:last-of-type { border-bottom: 0; }
.stat-row span,
.calc-row span { color: var(--muted); }
.stat-row strong,
.calc-row strong { color: var(--text); text-align: right; }

.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading.compact { max-width: 880px; }
.section-heading p { font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 26px; }
.feature-card p { margin-bottom: 0; }
.card-number,
.timeline span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #aeb6ff;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}
.process-section { padding-top: 48px; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline article { padding: 28px; }
.timeline p { margin-bottom: 0; }
.roi-card { padding: 18px; }
.calc-total { margin-top: 10px; border: 0; border-radius: 18px; background: linear-gradient(135deg, rgba(94,106,210,.22), rgba(77,243,255,.08)); }
.calc-total strong { font-size: 34px; color: var(--text); letter-spacing: -.035em; }
.roi-card p { margin: 14px 16px 0; color: var(--faint); font-size: 13px; }

.compare-grid,
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.compare-card,
.price-card { padding: 30px; }
ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
li { color: var(--text-soft); line-height: 1.45; }
li::before { content: "✓"; margin-right: 10px; color: var(--green); font-weight: 800; }
.muted-card { opacity: .82; }
.highlight-card { border-color: rgba(94,106,210,.42); background: linear-gradient(180deg, rgba(94,106,210,.16), rgba(255,255,255,.035)); }
.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(174,182,255,.24);
  border-radius: 999px;
  background: rgba(94,106,210,.13);
  color: #c8cdff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.price-card h3 { margin-bottom: 4px; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.06em; }
.monthly { margin-bottom: 18px; color: var(--text) !important; font-size: 20px; font-weight: 700; }
.price-card.starter { border-color: rgba(16,185,129,.25); }
.price-card.premium { border-color: rgba(94,106,210,.42); }
.fit-section,
.final-cta { padding: 44px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-row span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--text-soft); font-weight: 600; }
.final-cta { text-align: center; margin-bottom: 42px; }
.final-cta p { max-width: 710px; margin-inline: auto; font-size: 18px; }

.site-footer {
  padding: 40px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer p { margin: 0 0 6px; }
.site-footer a:not(.brand) { color: var(--text-soft); }


.audit-form-section { padding-top: 24px; }
.form-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(94,106,210,.14), var(--panel));
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}
.audit-form { display: grid; gap: 14px; }
.audit-form label { display: grid; gap: 7px; color: var(--text-soft); font-weight: 600; font-size: 14px; }
.audit-form input, .audit-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
.audit-form textarea { min-height: 108px; resize: vertical; }
.audit-form input:focus, .audit-form textarea:focus { border-color: rgba(113,112,255,.7); box-shadow: 0 0 0 3px rgba(94,106,210,.18); }
.audit-form input::placeholder, .audit-form textarea::placeholder { color: var(--faint); }
@media (max-width: 980px) { .form-card { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .hero,
  .split-section,
  .roi-section,
  .feature-grid,
  .timeline,
  .compare-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 64px; }
  .desktop-nav { display: none; }
}
@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer { width: min(100% - 26px, 1180px); }
  .site-header { top: 8px; }
  .nav-cta { display: none; }
  .section-shell { padding: 62px 0; }
  h1 { font-size: clamp(46px, 16vw, 64px); }
  h2 { font-size: clamp(32px, 10vw, 46px); }
  .hero-subhead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .pipeline-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .pipeline-grid div:last-child { border-bottom: 0; }
  .fit-section,
  .final-cta { padding: 28px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
