/* ---------- tokens ---------- */
:root {
  --ink:        #0A1F44;
  --charcoal:   #0A1F44;
  --slate:      #475569;
  --muted:      #6b7280;
  --line:       #d7d4c7;
  --line-soft:  #e8e5d8;
  --color-grid: #e2e8f0;
  --paper:      #fafaf7;
  --paper-2:    #f8f9fc;
  --white:      #ffffff;

  --accent:        #2F9BFF;
  --accent-ink:    #ffffff;
  --accent-soft:   rgba(47, 155, 255, 0.08);
  --accent-glow:   color-mix(in srgb, #2F9BFF 12%, white);
  --accent-line:   rgba(47, 155, 255, 0.35);
  --brand-green:   #17C964;
  --brand-blue:    #2F9BFF;
  --brand-purple:  #9333FF;

  --radius: 4px;
  --radius-lg: 8px;
  --t: 300ms cubic-bezier(.4,.1,.2,1);

  --serif: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --sans:  'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --grid-lines:
    linear-gradient(to right, rgba(31,41,55,.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(to bottom, rgba(31,41,55,.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(to right, rgba(31,41,55,.028) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(to bottom, rgba(31,41,55,.028) 1px, transparent 1px) 0 0 / 24px 24px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none; animation: none; }
  .hero__route-anim-dots { display: none; }
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
body {
  font-family: var(--sans);
  color: #0A1F44;
  background:
    radial-gradient(circle, rgba(15, 23, 42, 0.07) 1px, transparent 1px) 0 0 / 22px 22px,
    #fafaf7;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 0;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
  background: transparent;
}

.hero__stage {
  position: relative;
  isolation: isolate;
  z-index: 1;
  overflow: visible;
  padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(1.5rem, 3vw, 3rem);
}

.hero__stage::before {
  display: none;
}

/* h1.hero__h1 — merged (last-declared wins per property) */
h1.hero__h1 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--ink);
  text-wrap: balance;
  text-align: left;
  margin-bottom: 0;
}
.hero__static { display: inline; }
.hero__rotator {
  display: block;
  position: relative;
  text-align: left;
  overflow: visible;
  min-height: clamp(3rem, 5vw, 6rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
  transition: height 300ms ease;
}
.hero__phrase {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #2F9BFF;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 4vw, 5rem);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms ease;
  pointer-events: none;
  white-space: nowrap;
}
.hero__phrase.is-active   { opacity: 1; transform: translateY(0); }
.hero__phrase.is-exiting  { opacity: 0; transform: translateY(-8px); }
.hero__phrase.is-entering { opacity: 0; transform: translateY(8px); }

.hero__subhead {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: var(--slate);
  max-width: 440px;
  margin: 0 0 clamp(16px, 2vw, 28px);
  text-wrap: pretty;
  text-align: left;
}
.hero__cta {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* .hero__trust — merged (last-declared wins per property) */
.hero__trust {
  margin: 20px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.2vw, 36px);
  width: auto;
  flex-wrap: wrap;
  margin-top: clamp(18px, 2vw, 28px);
  padding: 0;
  text-align: center;
}

@media (max-width: 768px) {
  h1.hero__h1 { font-size: clamp(40px, 9vw, 64px); }
}
@media (max-width: 480px) {
  .hero__trust { font-size: 13px; flex-direction: column; gap: 6px; }
}

/* ---------- section framing ---------- */
.section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
.section__h2 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 760px;
  text-wrap: balance;
}
/* ---------- alternating section backgrounds ---------- */
#pricing { background: #f8f9fc; }

/* ---------- pricing ---------- */
.pricing { padding: 58px 0; }
@media (max-width: 768px) { .pricing { padding: 40px 0; } }
.pricing .container { text-align: center; }
.pricing .section__label { justify-content: center; }
.pricing__h2 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.pricing__body { font-size: 17px; color: var(--slate); max-width: 620px; margin: 0 auto 36px; text-wrap: pretty; }
.pricing__cta { display: inline-flex; }
.mobile-pricing { display: none; }

/* ---------- FAQ ---------- */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.faq__left { display: flex; flex-direction: column; justify-content: center; }
.faq__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
}
.faq__sub {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}
.faq__right { display: flex; flex-direction: column; }
.faq__list { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--t);
}
.faq__trigger:hover { color: var(--accent); }
.faq__trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
.faq__icon { flex: 0 0 auto; width: 18px; height: 18px; position: relative; color: var(--muted); transition: color var(--t); }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__trigger[aria-expanded="true"] .faq__icon { color: var(--accent); }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height 250ms ease; }
.faq__panel-inner { padding: 0 4px 18px; }
.faq__a { color: var(--slate); font-size: 15px; line-height: 1.6; margin: 0; text-wrap: pretty; }
@media (max-width: 768px) {
  .faq__layout { grid-template-columns: 1fr; }
  .faq__left { position: static; }
}

/* ---------- final CTA ---------- */
.final {
  position: relative;
  padding: 112px 0 50px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: #f8f9fc;
}
.final__glow { display: none; }
.final__inner { position: relative; z-index: 1; }
.final__h2 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 16px;
  text-wrap: balance;
}
.final__sub { font-size: 18px; color: var(--slate); max-width: 520px; margin: 0 auto 32px; }
.final__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
/* ---------- demo card ---------- */
.demo-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.05);
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--white);
  border-bottom: 1px solid #f1f5f9;
  gap: 16px;
}
.demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex-shrink: 0;
}
.demo-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .25;
  animation: pulse 2s ease-out infinite;
}
.demo-status-text {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #17C964;
  font-weight: 600;
}
.demo-call-id {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: #6b7280;
  flex: 1;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 540px) { .demo-call-id { display: none; } }
.demo-timer {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 0;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.demo-transcript {
  padding: 16px 20px;
  height: 320px;
  overflow-y: scroll;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-transcript::-webkit-scrollbar { display: none; }

/* .demo-line — merged (last-declared wins per property) */
.demo-line {
  display: none;
  flex-shrink: 0;
  grid-template-columns: 110px 1fr;
  column-gap: 16px;
  align-items: start;
}
.demo-line.is-visible {
  display: grid;
  animation: demoLineIn 220ms ease forwards;
}

/* .demo-speaker — merged (last-declared wins per property) */
.demo-speaker {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}
.demo-speaker--sb     { color: #2F9BFF; }
.demo-speaker--caller { color: #94a3b8; }

/* .demo-text — merged (last-declared wins per property) */
.demo-text {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: #111827;
  min-height: 1.55em;
  font-weight: 400;
  letter-spacing: 0;
}
.demo-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: var(--accent);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink 900ms step-end infinite;
}

@media (max-width: 600px) {
  .demo-transcript { padding: 12px 14px; gap: 10px; }
  .demo-line {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .demo-text { font-size: 13.5px; }
}

.demo-audio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-top: 0;
  padding-top: 8px;
  background: var(--white);
}
.demo-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.demo-play-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.demo-play-btn svg { width: 14px; height: 14px; margin-left: 2px; }
.demo-waveform {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 1;
}
.demo-waveform span {
  flex-shrink: 0;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.75;
}
.demo-audio-chip {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  border: 0;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-transform: none;
  flex-shrink: 0;
}
@media (max-width: 480px) { .demo-audio-chip { display: none; } }

/* ---------- entry animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 700ms cubic-bezier(.4,.1,.2,1) forwards;
}
.fade-in.d1 { animation-delay: 80ms; }
.fade-in.d3 { animation-delay: 240ms; }
.fade-in.d4 { animation-delay: 320ms; }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .hero__subhead { font-size: 17px; }
  .section { padding: 64px 0; }
  .final { padding: 80px 0; }
  .hero__split { grid-template-columns: 1fr; }
  /* Demo card shown below hero text on mobile */
  .hero__right {
    display: flex;
    margin-top: 28px;
  }
  .hero__right .demo-transcript { height: 200px; }
  .hero__right .demo-card { font-size: 0.92em; }
  h1.hero__h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); text-align: center; }
  .hero__rotator { text-align: center; min-height: clamp(2.4rem, 8vw, 3.2rem); }
  /* Allow phrase to wrap on small screens instead of overflowing */
  .hero__phrase {
    text-align: center;
    font-size: clamp(2rem, 7vw, 2.8rem);
    white-space: normal;
    width: 100%;
  }
  .hero__subhead { text-align: center; max-width: 100%; font-size: 16px; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
}
@media (max-width: 480px) {
  .hero__cta, .final__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
}


/* Mobile-only hero elements — hidden on desktop */
.hero__stats-mobile,
.hero__subhead-mobile { display: none; }

.hero__cursor {
  display: none; /* shown on mobile via media query */
  width: 2px;
  height: 1em;
  background: #2F9BFF;
  border-radius: 1px;
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1s step-end infinite;
}

/* ---------- current page styles ---------- */
html { background: #fafaf7; }

/* ── HERO ── */

/* Full-bleed wave layer: it fills the hero stage and never positions around text. */
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.hero__route {
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}
.hero__route--blue {
  stroke: url(#sb-line-top);
  opacity: 1;
}
.hero__route--middle-blue {
  stroke: url(#sb-line-lower);
  opacity: 1;
}
.hero__route--purple {
  stroke: url(#sb-line-top);
  opacity: 1;
}
.hero__route-nodes circle {
  stroke: none;
  vector-effect: non-scaling-stroke;
}
.hero__route-nodes circle:nth-child(1) { fill: #17C964; }
.hero__route-nodes circle:nth-child(2) { fill: #2F9BFF; }
.hero__route-nodes circle:nth-child(3) { fill: #9333FF; }
.hero__inner {
  /* Content sits in its own layer above the inset SVG background. */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  padding: 0 clamp(20px, 4vw, 80px);
}

.hero__split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.hero__right {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero__right .demo-card {
  max-width: none;
  margin: 0;
  box-shadow:
    0 0 0 1px rgba(30, 41, 59, 0.06),
    0 20px 48px -20px rgba(30, 41, 59, 0.18),
    0 4px 12px rgba(30, 41, 59, 0.05);
}

.hero__right .demo-transcript {
  height: clamp(120px, 15vw, 220px);
}

.demo-tags {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  margin-top: 14px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.05);
  flex-wrap: nowrap;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
}

.demo-tag svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ── SOCIAL PROOF BAND ── */
.social-proof {
  position: relative;
  z-index: 3;
  background: transparent;
  border-top: none;
  padding: 0;
  margin-top: clamp(0.75rem, 2vw, 2rem);
}

.social-proof .container {
  max-width: 1920px;
  padding: 0 clamp(20px, 4vw, 80px);
}

/* ── TRUST ITEMS ── */

/* .trust-item — merged (last-declared wins per property) */
.trust-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  color: var(--ink);
  white-space: nowrap;
  text-align: left;
}

/* .trust-item__icon — merged (last-declared wins per property) */
.trust-item__icon {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2F9BFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.trust-item__icon svg {
  width: 30px;
  height: 30px;
  color: #2F9BFF;
  stroke: #2F9BFF;
  stroke-width: 1.8;
}

.trust-item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
  gap: 2px;
}

/* .trust-item__label — merged (last-declared wins per property) */
.trust-item__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.005em;
  text-align: left;
}

/* .trust-item__sublabel — merged (last-declared wins per property) */
.trust-item__sublabel {
  font-size: 11.5px;
  color: #6b7280;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

/* ── BREAKPOINTS ── */
@media (max-width: 1440px) {
  .hero__stage { padding: clamp(1.5rem, 3vw, 4.5rem) 0 clamp(2rem, 4vw, 5rem); }
  .hero__split {
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(16px, 2vw, 28px);
  }
  .hero__right .demo-transcript { height: clamp(100px, 12vw, 160px); }
  h1.hero__h1 { font-size: clamp(2.8rem, 4.8vw, 5.2rem); }
  .hero__phrase { font-size: clamp(2.4rem, 4vw, 4.6rem); }
  .hero__rotator { min-height: clamp(2.8rem, 4.8vw, 5.2rem); }
}

@media (max-width: 1024px) {
  .hero__stage {
    padding: 2rem 0 9rem;
  }
  h1.hero__h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
  .hero__phrase { font-size: clamp(2rem, 3.8vw, 3.5rem); }
  .hero__rotator { min-height: clamp(2.4rem, 4.5vw, 4rem); }
  .hero__right .demo-transcript {
    height: clamp(80px, 10vw, 130px);
  }
  .hero__right .demo-card {
    font-size: 0.82em;
  }
}

/* --- Small-laptop band: prevent hero-right/trust overlap + audio row overflow --- */
@media (max-width: 1100px) {
  .hero__split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
  }
  .hero__right {
    min-width: 0;
  }
  .hero__right .demo-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Let transcript grow to show more text instead of being hard-capped */
  .hero__right .demo-transcript {
    height: auto;
    min-height: 140px;
    max-height: 200px;
    padding: 14px 16px;
    font-size: 12.5px;
    line-height: 1.55;
  }
  .hero__right .demo-header {
    padding: 10px 14px;
    gap: 10px;
    font-size: 11px;
  }
  .hero__right .demo-call-id,
  .hero__right .demo-timer,
  .hero__right .demo-status-text {
    font-size: 11px;
  }
  /* Shrink audio row so chip fits inside card */
  .hero__right .demo-audio {
    padding: 10px 14px 14px;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .hero__right .demo-play-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
  }
  .hero__right .demo-play-btn svg {
    width: 12px;
    height: 12px;
  }
  .hero__right .demo-waveform {
    flex: 1 1 auto;
    min-width: 0;
    height: 20px;
  }
  .hero__right .demo-audio-chip {
    font-size: 10.5px;
    padding: 3px 8px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  /* Demo tags — scale labels down so they fit */
  .demo-tags {
    padding: 10px 14px;
    gap: 6px;
  }
  .demo-tag {
    font-size: 11.5px;
  }
  .demo-tag svg {
    width: 14px;
    height: 14px;
  }
  /* Trust row: tighten */
  .hero__trust {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hero__trust {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .trust-item {
    min-width: 0;
  }
}

@media (max-width: 780px) {
  .hero__trust { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  /* Kill animateMotion dots — CPU-bound, no GPU compositing, destroys mobile perf */
  .hero__route-anim-dots { display: none; }
  /* Re-assert after 1100px/1024px overrides */
  .hero__split {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .hero__right {
    display: flex;
    margin-top: 28px;
    min-width: 0;
  }
  .hero__right .demo-transcript {
    height: 200px;
    min-height: unset;
    max-height: unset;
  }
}

/* ── HOW IT WORKS ── */
#how-it-works {
  clip-path: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 80px 0;
  position: static;
  overflow: visible;
  z-index: auto;
}

/* Match hero container width */
#how-it-works .container {
  max-width: 1920px;
  padding: 0 clamp(20px, 4vw, 80px);
}

/* Two-column layout */
.hiw-layout {
  display: grid;
  grid-template-columns: 32fr 68fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* ── LEFT COLUMN ── */
.hiw-h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 16px;
}

.hiw-accent-bar {
  width: 40px;
  height: 3px;
  background: #2F9BFF;
  border-radius: 2px;
  margin-bottom: 18px;
}

.hiw-subtext {
  font-family: var(--sans);
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── RIGHT COLUMN ── */
.hiw-right { display: flex; flex-direction: column; gap: 10px; }

/* Connector row */
.hiw-connector {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative;
}
.hiw-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  border-top: none;
  height: 2px;
  background: linear-gradient(to right, #17C964 0%, #2F9BFF 50%, #9333FF 100%);
  opacity: 0.45;
  transform: translateY(-50%);
  z-index: 0;
}
.hiw-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Cards */
.hiw-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.hiw-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hiw-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.hiw-card__icon svg { width: 26px; height: 26px; color: #3b82f6; }

/* Per-card icon colors — solid filled circles, white icons */
.hiw-cards .hiw-card:nth-child(1) .hiw-card__icon { background: #17C964; }
.hiw-cards .hiw-card:nth-child(1) .hiw-card__icon svg { color: #ffffff; }
.hiw-cards .hiw-card:nth-child(2) .hiw-card__icon { background: #2F9BFF; }
.hiw-cards .hiw-card:nth-child(2) .hiw-card__icon svg { color: #ffffff; }
.hiw-cards .hiw-card:nth-child(3) .hiw-card__icon { background: #9333FF; }
.hiw-cards .hiw-card:nth-child(3) .hiw-card__icon svg { color: #ffffff; }
.hiw-card__title {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A1F44;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.hiw-card__body {
  font-family: var(--sans);
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.hiw-card__divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 0;
}
.hiw-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  color: #6b7280;
  margin-top: auto;
  padding-top: 16px;
}
.hiw-card__trust svg { color: #2F9BFF; flex-shrink: 0; width: 14px; height: 14px; }

@media (max-width: 900px) {
  .hiw-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hiw-connector, .hiw-cards { grid-template-columns: 1fr; }
  .hiw-connector::before { display: none; }
}

/* ── SECTION BACKGROUNDS — solid brand palette, hard lines ── */
.section, .social-proof, .final { border-top: none; }

.social-proof {
  background-color: #0A1F44;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
#how-it-works {
  background-color: #2563eb;
  background-image:
    radial-gradient(ellipse 30% 80% at 16% 50%, rgba(0,0,0,0.22) 0%, transparent 100%),
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}
#features {
  background-color: #9333FF;
  background-image:
    radial-gradient(ellipse 30% 80% at 82% 50%, rgba(0,0,0,0.32) 0%, transparent 100%),
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}
#pricing {
  background-color: #159143;
  background-image:
    radial-gradient(ellipse 65% 70% at 50% 50%, rgba(0,0,0,0.22) 0%, transparent 75%),
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}
#faq {
  background-color: #fafaf7;
  background-image: radial-gradient(circle, rgba(15,23,42,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 60px 0;
}
.final {
  background-color: #0A1F44;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ── FEATURES ── */
#features .container {
  max-width: 1920px;
  padding: 0 clamp(20px, 4vw, 80px);
}
.feat-layout {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.feat-left { order: 2; }
.feat-grid { order: 1; }
.feat-h2 {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0 0 16px;
}
.feat-sub {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat-tile {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.feat-tile__icon-raw {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.feat-tile__label {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.feat-tile__body {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .feat-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.hero__mobile-title,
.hero__cta-text-mobile,
.mobile-proof,
.mobile-hiw,
.mobile-compare,
.mobile-hero-visual {
  display: none;
}

@keyframes mobileNodePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(47, 155, 255, 0); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(47, 155, 255, 0.12); }
}

@keyframes mobileRouteMove {
  0% { left: 0; opacity: 0; }
  18%, 70% { opacity: 1; }
  100% { left: calc(100% - 12px); opacity: 0; }
}

@keyframes mobileHeroTravel {
  0% { left: 13%; opacity: 0; }
  15%, 76% { opacity: 1; }
  100% { left: calc(87% - 12px); opacity: 0; }
}

@keyframes mobileProofBar {
  0%, 100% { transform: scaleY(0.42); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes mobileProofGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-10%); }
  50% { opacity: 1; transform: translateX(10%); }
}

/* ══════════════════════════════════════════════════════════════════
   Final typography and component refinements
   ══════════════════════════════════════════════════════════════════ */

/* Shared label and utility typography — font-family set inline above */

/* ── BRAND ROUTING MOTIF ── */

/* Circles: green (step 1) / blue (step 2) / purple (step 3) */
.hiw-connector .hiw-circle:nth-child(1) { background: #17C964; }
.hiw-connector .hiw-circle:nth-child(3) { background: #9333FF; }

/* Trust item icons: green / blue (unchanged) / purple */
.hero__trust .trust-item:nth-child(1) .trust-item__icon svg { color: #17C964; stroke: #17C964; }
.hero__trust .trust-item:nth-child(3) .trust-item__icon svg { color: #9333FF; stroke: #9333FF; }

/* Demo tags: green / blue (unchanged) / purple */
.demo-tags .demo-tag:nth-child(1) svg { color: #17C964; }
.demo-tags .demo-tag:nth-child(3) svg { color: #9333FF; }

/* ── DARK SECTION OVERRIDES ── */

/* ── SOCIAL PROOF REDESIGN ── */
.social-proof .container {
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(28px, 3vw, 44px);
}
.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.sp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(16px, 2.5vw, 40px);
}
.sp-stat__value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sp-stat__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.4;
}
.sp-stat__divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.sp-ticker-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: clamp(16px, 2vw, 24px);
}
.sp-ticker-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sp-ticker {
  overflow: hidden;
}
.sp-ticker__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: spTicker 30s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .sp-ticker__track { animation: none; } }
.sp-ticker__name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0 18px;
}
.sp-ticker__dot {
  color: rgba(255,255,255,0.2);
  font-size: 18px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .sp-stats { flex-wrap: wrap; gap: 32px 0; }
  .sp-stat { flex: 0 0 50%; }
  .sp-stat__divider { display: none; }
}

/* Final CTA — navy bg */
.final .final__h2 { color: #ffffff; }
.final .final__sub { color: rgba(255,255,255,0.68); }
.final .btn--secondary {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
}
.final .btn--secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

/* How it works — blue bg */
#how-it-works .section__label { color: rgba(255,255,255,0.75); }
#how-it-works .section__label span { color: inherit; }
#how-it-works .hiw-h2 { color: #ffffff; }
#how-it-works .hiw-accent-bar { background: rgba(255,255,255,0.5); }
#how-it-works .hiw-subtext { color: rgba(255,255,255,0.78); }
#how-it-works .hiw-connector::before {
  background: linear-gradient(to right, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.4) 100%);
}
#how-it-works .hiw-circle:nth-child(1) { background: #ffffff; color: #17C964; }
#how-it-works .hiw-circle:nth-child(2) { background: #ffffff; color: #2F9BFF; }
#how-it-works .hiw-circle:nth-child(3) { background: #ffffff; color: #9333FF; }
#how-it-works .hiw-card {
  background: #1d4ed8;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
}
#how-it-works .hiw-card__title { color: #ffffff; }
#how-it-works .hiw-card__body { color: rgba(255,255,255,0.75); }
#how-it-works .hiw-card__divider { background: rgba(255,255,255,0.12); }
#how-it-works .hiw-card__trust { color: rgba(255,255,255,0.75); }
#how-it-works .hiw-card__trust svg { color: #93c5fd; }
#how-it-works .hiw-cards .hiw-card:nth-child(1) .hiw-card__icon { background: #17C964; }
#how-it-works .hiw-cards .hiw-card:nth-child(2) .hiw-card__icon { background: #2F9BFF; }
#how-it-works .hiw-cards .hiw-card:nth-child(3) .hiw-card__icon { background: #9333FF; }

/* Features — purple bg */
#features .section__label { color: rgba(255,255,255,0.75); }
#features .section__label span { color: inherit; }
#features .feat-h2 { color: #ffffff; }
#features .feat-sub { color: rgba(255,255,255,0.78); }
#features .feat-tile {
  background: #5b21b6;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
}
#features .feat-tile__label { color: #ffffff; }
#features .feat-tile__body { color: rgba(255,255,255,0.72); }
#features .feat-tile__icon-raw { color: rgba(255,255,255,0.9); }

/* Pricing — green bg */
#pricing .section__label { color: rgba(255,255,255,0.75); }
#pricing .section__label span { color: inherit; }
#pricing .pricing__h2 { color: #ffffff; }
#pricing .pricing__body { color: rgba(255,255,255,0.78); }
#pricing .btn--secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
#pricing .btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

/* ── LARGE SCREEN (1441px+) ── */
@media (min-width: 1441px) {
  h1.hero__h1 { font-size: clamp(4rem, 5vw, 6.5rem); }
  .hero__phrase { font-size: clamp(3.5rem, 4.2vw, 4.5rem); }
  .hero__rotator { min-height: clamp(4rem, 5vw, 6.5rem); }
  .hero__subhead {
    font-size: clamp(1.1rem, 1.3vw, 1.5rem);
    max-width: 640px;
  }
  .trust-item__label { font-size: clamp(14px, 0.95vw, 18px); }
  .trust-item__sublabel { font-size: clamp(12px, 0.8vw, 15px); }
  .trust-item__icon svg { width: clamp(30px, 2vw, 38px); height: clamp(30px, 2vw, 38px); }
  .hero__right .demo-transcript { height: clamp(160px, 16vw, 280px); }
}

/* ── HERO KICKER (desktop tagline above the H1) ── */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 18px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  width: fit-content;
}
.hero__kicker-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hero__kicker-dot--green  { background: var(--brand-green); }
.hero__kicker-dot--blue   { background: var(--brand-blue); }
.hero__kicker-dot--purple { background: var(--brand-purple); }
.hero__kicker-sep { color: rgba(15, 23, 42, 0.25); margin: 0 -2px; }
@media (max-width: 768px) { .hero__kicker { display: none; } }

/* ── HERO FLOW (desktop replacement for live audio demo) ── */
.hero-flow {
  position: relative;
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 1.6vw, 26px);
  font-family: var(--sans);
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(30, 41, 59, 0.04),
    0 24px 60px -28px rgba(30, 41, 59, 0.22),
    0 4px 14px rgba(30, 41, 59, 0.05);
}

.hero-flow__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}

.hero-flow__pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-green);
  flex-shrink: 0;
  animation: heroFlowPulse 1.8s ease-out infinite;
}

@keyframes heroFlowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(23, 201, 100, 0.45); }
  100% { box-shadow: 0 0 0 12px rgba(23, 201, 100, 0); }
}

.hero-flow__label { font-weight: 600; color: var(--ink); letter-spacing: 0.08em; }
.hero-flow__id { margin-left: auto; opacity: 0.7; }

.hero-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Connector lines — split into two segments so the line is only between icons */
.hero-flow__steps {
  --hf-icon: 46px;
  --hf-step-pad: 12px;
}
.hero-flow__step + .hero-flow__step::before {
  content: "";
  position: absolute;
  left: calc(var(--hf-icon) / 2 - 1px);
  top: calc(-1 * var(--hf-step-pad));
  height: calc(2 * var(--hf-step-pad));
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.08));
  z-index: 0;
}
.hero-flow__step--blue + .hero-flow__step::before,
.hero-flow__step:nth-child(2) + .hero-flow__step::before {
  background: linear-gradient(180deg, #2F9BFF 0%, #9333FF 100%);
  opacity: 0.55;
}
.hero-flow__step:nth-child(1) + .hero-flow__step::before {
  background: linear-gradient(180deg, #17C964 0%, #2F9BFF 100%);
  opacity: 0.55;
}

.hero-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: var(--hf-icon) 1fr;
  align-items: center;
  gap: 16px;
  padding: var(--hf-step-pad) 0;
  z-index: 2;
}

.hero-flow__icon {
  width: var(--hf-icon);
  height: var(--hf-icon);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid currentColor;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.hero-flow__step--green  .hero-flow__icon { color: #17C964; }
.hero-flow__step--blue   .hero-flow__icon { color: #2F9BFF; }
.hero-flow__step--purple .hero-flow__icon { color: #9333FF; }

.hero-flow__step--green  .hero-flow__icon::after,
.hero-flow__step--blue   .hero-flow__icon::after,
.hero-flow__step--purple .hero-flow__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  z-index: -1;
}
.hero-flow__step--green  .hero-flow__icon::after { background: rgba(23, 201, 100, 0.08); }
.hero-flow__step--blue   .hero-flow__icon::after { background: rgba(47, 155, 255, 0.08); }
.hero-flow__step--purple .hero-flow__icon::after { background: rgba(147, 51, 255, 0.08); }

.hero-flow__icon svg { width: 20px; height: 20px; }

.hero-flow__copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero-flow__copy strong {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-flow__copy span {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.45;
}

.hero-flow__summary {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background:
    linear-gradient(135deg,
      rgba(23, 201, 100, 0.05) 0%,
      rgba(47, 155, 255, 0.05) 50%,
      rgba(147, 51, 255, 0.05) 100%);
  border: 1px solid rgba(30, 41, 59, 0.06);
}
.hero-flow__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hero-flow__summary-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
}
.hero-flow__summary-stamp {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-flow__summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 8px;
}
.hero-flow__summary-grid > div { display: flex; flex-direction: column; gap: 1px; }
.hero-flow__summary-grid small {
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-flow__summary-grid strong {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}

.hero-flow__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.5);
}
.hero-flow__alert svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--brand-green);
}
.hero-flow__alert strong { font-weight: 600; }
.hero-flow__alert-time {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-flow,
  .hero-flow__alert { display: none; }
}

/* ── COMPARE DESKTOP (Traditional vs Switchboard) ── */
.compare-section { background: #fafaf7; }
.compare-desktop {
  position: relative;
}
.compare-desktop__intro { text-align: center; max-width: 1080px; margin: 0 auto 36px; }
.compare-desktop__intro .section__label { justify-content: center; display: flex; }
.compare-desktop__h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 14px 0 0;
  text-wrap: balance;
}
.compare-desktop__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(16px, 1.5vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
}
.compare-desktop__panel {
  border-radius: 18px;
  padding: clamp(22px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.compare-desktop__panel--old {
  background: rgba(15, 23, 42, 0.025);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  color: var(--slate);
}
.compare-desktop__panel--new {
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.08);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(30, 41, 59, 0.04),
    0 24px 60px -28px rgba(30, 41, 59, 0.18),
    0 4px 14px rgba(30, 41, 59, 0.04);
}
.compare-desktop__panel--new::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg, #17C964, #2F9BFF, #9333FF);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.compare-desktop__panel-head { display: flex; flex-direction: column; gap: 6px; }
.compare-desktop__panel-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.compare-desktop__panel--new .compare-desktop__panel-eyebrow { color: var(--brand-blue); }
.compare-desktop__panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.compare-desktop__panel--old h3 { color: rgba(15, 23, 42, 0.55); }
.compare-desktop__panel--new h3 img { height: clamp(22px, 1.6vw, 28px); width: auto; display: block; }

.compare-desktop__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-desktop__panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.compare-desktop__panel--old li { color: rgba(15, 23, 42, 0.55); }
.compare-desktop__panel--new li { color: var(--ink); }

.compare-desktop__x,
.compare-desktop__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.compare-desktop__x {
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.compare-desktop__x::before,
.compare-desktop__x::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1.6px;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 1px;
}
.compare-desktop__x::before { transform: rotate(45deg); }
.compare-desktop__x::after  { transform: rotate(-45deg); }

.compare-desktop__check {
  background: rgba(23, 201, 100, 0.12);
  border: 1px solid rgba(23, 201, 100, 0.35);
}
.compare-desktop__check::before {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 1.8px solid #17C964;
  border-bottom: 1.8px solid #17C964;
  transform: rotate(45deg) translate(-1px, -1px);
}

.compare-desktop__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.compare-desktop__vs span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

@media (max-width: 900px) {
  .compare-desktop__grid {
    grid-template-columns: 1fr;
  }
  .compare-desktop__vs { transform: rotate(90deg); margin: -4px auto; }
}
@media (max-width: 768px) {
  .compare-desktop { display: none; }
}

/* ── PRICING DESKTOP DETAIL PANEL ── */
.pricing-desktop {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 36px auto 32px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.08);
  box-shadow:
    0 0 0 1px rgba(30, 41, 59, 0.04),
    0 24px 60px -28px rgba(30, 41, 59, 0.18),
    0 4px 14px rgba(30, 41, 59, 0.04);
  text-align: left;
}
.pricing-desktop__summary {
  padding: clamp(24px, 2.4vw, 36px);
  background:
    linear-gradient(135deg,
      rgba(23, 201, 100, 0.06) 0%,
      rgba(47, 155, 255, 0.06) 50%,
      rgba(147, 51, 255, 0.06) 100%);
  border-right: 1px solid rgba(30, 41, 59, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-desktop__eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
}
.pricing-desktop__summary h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.pricing-desktop__summary p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}
.pricing-desktop__factors {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pricing-desktop__factors span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.08);
  font-weight: 500;
}
.pricing-desktop__factors i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
}
.pricing-desktop__factors span:nth-child(1) i { background: var(--brand-green); }
.pricing-desktop__factors span:nth-child(2) i { background: var(--brand-blue); }
.pricing-desktop__factors span:nth-child(3) i { background: var(--brand-purple); }

.pricing-desktop__details {
  list-style: none;
  margin: 0;
  padding: clamp(20px, 2vw, 28px) clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-desktop__details li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.pricing-desktop__bullet {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--slate);
  width: 36px;
  height: 28px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricing-desktop__details strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.pricing-desktop__details p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-desktop { display: none; }
}
@media (max-width: 900px) and (min-width: 769px) {
  .pricing-desktop { grid-template-columns: 1fr; }
  .pricing-desktop__summary { border-right: 0; border-bottom: 1px solid rgba(30, 41, 59, 0.06); }
}

/* ── MOBILE (<768px) HOMEPAGE OVERRIDES ──
   Bespoke mobile layout + mobile-* illustrations live in styles.mobile.css,
   loaded only on index.html. Smaller responsive overrides for other pages
   stay in this file alongside their desktop selectors. */


/* ════════════════════════════════════════════════════════════════════
   UNIFIED PALETTE — every section shares the paper background and
   dotted pattern. Color shows up in cards, icons, and accents only.
   `.final` keeps its dark-navy bg as the page-closing block.
   This block intentionally lives at the end so it wins on cascade.
   ════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) {
  /* All section backgrounds → paper + dotted pattern */
  .social-proof,
  #how-it-works,
  #features,
  #pricing,
  #faq,
  .compare-section {
    background-color: #fafaf7;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    border-top: none;
  }
  /* Soft separators between adjacent paper sections */
  #how-it-works,
  #features,
  .compare-section,
  #pricing,
  #faq {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
  }

  /* ── Stats / social proof: light-bg theme ── */
  .social-proof .sp-stat__value { color: var(--ink); }
  .social-proof .sp-stat__label { color: var(--slate); }
  .social-proof .sp-stat__divider { background: rgba(15, 23, 42, 0.1); }
  .social-proof .sp-ticker-wrap { border-top-color: rgba(15, 23, 42, 0.08); }
  .social-proof .sp-ticker-label { color: var(--muted); }
  .social-proof .sp-ticker__name { color: var(--slate); }
  .social-proof .sp-ticker__dot { color: rgba(15, 23, 42, 0.2); }

  /* Color the stat numbers across the brand spectrum */
  .social-proof .sp-stat:nth-child(1) .sp-stat__value { color: #17C964; }
  .social-proof .sp-stat:nth-child(3) .sp-stat__value { color: #2F9BFF; }
  .social-proof .sp-stat:nth-child(5) .sp-stat__value { color: #9333FF; }

  /* ── How it works: light-bg theme ── */
  #how-it-works .section__label { color: var(--slate); }
  #how-it-works .section__label span { color: var(--ink); }
  #how-it-works .hiw-h2 { color: var(--ink); }
  #how-it-works .hiw-subtext { color: var(--slate); }
  #how-it-works .hiw-accent-bar {
    background: linear-gradient(to right, #17C964 0%, #2F9BFF 50%, #9333FF 100%);
    opacity: 1;
  }
  #how-it-works .hiw-connector::before {
    background: linear-gradient(to right, #17C964 0%, #2F9BFF 50%, #9333FF 100%);
    opacity: 0.35;
  }
  #how-it-works .hiw-circle:nth-child(1) { background: #17C964; color: #fff; }
  #how-it-works .hiw-circle:nth-child(2) { background: #2F9BFF; color: #fff; }
  #how-it-works .hiw-circle:nth-child(3) { background: #9333FF; color: #fff; }
  #how-it-works .hiw-card {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow:
      0 1px 3px rgba(15, 23, 42, 0.04),
      0 12px 28px -16px rgba(15, 23, 42, 0.12);
  }
  #how-it-works .hiw-card__title { color: var(--ink); }
  #how-it-works .hiw-card__body { color: var(--slate); }
  #how-it-works .hiw-card__divider { background: rgba(30, 41, 59, 0.08); }
  #how-it-works .hiw-card__trust { color: var(--slate); }
  #how-it-works .hiw-card__trust svg { color: #17C964; }
  /* Color each card's icon with its own brand step */
  #how-it-works .hiw-cards .hiw-card:nth-child(1) .hiw-card__icon { background: #17C964; }
  #how-it-works .hiw-cards .hiw-card:nth-child(2) .hiw-card__icon { background: #2F9BFF; }
  #how-it-works .hiw-cards .hiw-card:nth-child(3) .hiw-card__icon { background: #9333FF; }

  /* ── Features: light-bg theme ── */
  #features .section__label { color: var(--slate); }
  #features .section__label span { color: var(--ink); }
  #features .feat-h2 { color: var(--ink); }
  #features .feat-sub { color: var(--slate); }
  #features .feat-tile {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.08);
    box-shadow:
      0 1px 3px rgba(15, 23, 42, 0.04),
      0 12px 28px -16px rgba(15, 23, 42, 0.12);
  }
  #features .feat-tile__label { color: var(--ink); }
  #features .feat-tile__body { color: var(--slate); }
  /* Cycle the tile icons through the brand spectrum */
  #features .feat-tile:nth-child(1) .feat-tile__icon-raw { color: #17C964; }
  #features .feat-tile:nth-child(2) .feat-tile__icon-raw { color: #2F9BFF; }
  #features .feat-tile:nth-child(3) .feat-tile__icon-raw { color: #9333FF; }
  #features .feat-tile:nth-child(4) .feat-tile__icon-raw { color: var(--brand-blue); }

  /* ── Pricing: light-bg theme ── */
  #pricing .section__label { color: var(--slate); }
  #pricing .section__label span { color: var(--ink); }
  #pricing .pricing__h2 { color: var(--ink); }
  #pricing .pricing__body { color: var(--slate); }
  #pricing .btn--secondary {
    background: #fff;
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.12);
  }
  #pricing .btn--secondary:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.24);
  }
}


/* ════════════════════════════════════════════════════════════════════
   RICH SECTION VISUALS — mini illustrations on HIW cards, redesigned
   Feature tiles, gradient accent bar shared across section headings.
   Desktop only; mobile keeps its own bespoke illustrations.
   ════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) {

  /* ── Unified gradient accent bar under section headings ── */
  .section-accent-bar {
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #17C964 0%, #2F9BFF 50%, #9333FF 100%);
    margin: 8px 0 18px;
  }
  .section-accent-bar--center { margin-left: auto; margin-right: auto; }

  /* Compare + Pricing + FAQ heading sizes bumped to match HIW/Features weight */
  .compare-desktop__h2 {
    font-size: clamp(2.4rem, 3.6vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  .pricing__h2 {
    font-size: clamp(2.4rem, 3.6vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  .faq__h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  /* ── HIW card adjustments to host illustrations ── */
  #how-it-works .hiw-card {
    padding: 0 0 22px;
    overflow: hidden;
    text-align: left;
    align-items: stretch;
  }
  /* The illustration carries the colored icon now; hide the legacy circle */
  #how-it-works .hiw-card .hiw-card__icon { display: none; }
  #how-it-works .hiw-card__title,
  #how-it-works .hiw-card__body,
  #how-it-works .hiw-card__divider,
  #how-it-works .hiw-card__trust { margin-left: 24px; margin-right: 24px; }
  #how-it-works .hiw-card__title {
    text-align: left;
    margin-top: 18px;
  }
  #how-it-works .hiw-card__body { text-align: left; }
  #how-it-works .hiw-card__trust { justify-content: flex-start; }

  /* ── HIW mini illustrations ── */
  .hiw-illus {
    position: relative;
    height: 132px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  .hiw-card--green  .hiw-illus { background: linear-gradient(135deg, rgba(23, 201, 100, 0.08) 0%, rgba(23, 201, 100, 0.02) 100%); }
  .hiw-card--blue   .hiw-illus { background: linear-gradient(135deg, rgba(47, 155, 255, 0.08) 0%, rgba(47, 155, 255, 0.02) 100%); }
  .hiw-card--purple .hiw-illus { background: linear-gradient(135deg, rgba(147, 51, 255, 0.08) 0%, rgba(147, 51, 255, 0.02) 100%); }

  /* Step 1 — phone with ripples + incoming call chip */
  .hiw-illus--call .hiw-illus-phone {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #17C964;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(23, 201, 100, 0.55);
    z-index: 2;
  }
  .hiw-illus--call .hiw-illus-phone svg { width: 22px; height: 22px; }
  .hiw-illus-ripple {
    position: absolute;
    left: 58px;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(23, 201, 100, 0.4);
    animation: hiwRipple 2.4s ease-out infinite;
  }
  .hiw-illus-ripple--two { animation-delay: 1.2s; }
  @keyframes hiwRipple {
    0%   { width: 52px; height: 52px; opacity: 0.55; }
    100% { width: 130px; height: 130px; opacity: 0; }
  }
  .hiw-illus-call-card {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    font-size: 12px;
    color: var(--ink);
    box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.18);
    z-index: 3;
  }
  .hiw-illus-call-card__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #17C964;
    flex-shrink: 0;
  }
  .hiw-illus-call-card__label { font-weight: 600; }
  .hiw-illus-call-card__time { font-family: var(--mono); font-size: 10.5px; color: var(--muted); margin-left: 4px; }

  /* Step 2 — structured form fields + check badge */
  .hiw-illus--collect .hiw-illus-form {
    position: absolute;
    left: 22px;
    top: 16px;
    right: 56px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.15);
  }
  .hiw-illus-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .hiw-illus-form-label {
    font-family: var(--mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .hiw-illus-form-fill {
    height: 6px;
    width: 56px;
    border-radius: 3px;
    background: linear-gradient(90deg, #2F9BFF 0%, rgba(47, 155, 255, 0.25) 100%);
  }
  .hiw-illus-form-fill--short { width: 36px; }
  .hiw-illus-form-fill--mid   { width: 44px; }
  .hiw-illus--collect .hiw-illus-check {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2F9BFF;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -6px rgba(47, 155, 255, 0.55);
    animation: hiwCheckPop 2.6s ease-in-out infinite;
  }
  .hiw-illus--collect .hiw-illus-check svg { width: 16px; height: 16px; }
  @keyframes hiwCheckPop {
    0%, 60%, 100% { transform: translateY(-50%) scale(1); }
    70% { transform: translateY(-50%) scale(1.18); }
  }

  /* Step 3 — bell + notification toast */
  .hiw-illus--route .hiw-illus-bell {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #9333FF;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(147, 51, 255, 0.55);
    z-index: 2;
  }
  .hiw-illus--route .hiw-illus-bell svg { width: 20px; height: 20px; }
  .hiw-illus-bell__pip {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #17C964;
    border: 2px solid #fff;
    animation: hiwPipPulse 1.6s ease-out infinite;
  }
  @keyframes hiwPipPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(23, 201, 100, 0.5); }
    60%      { box-shadow: 0 0 0 6px rgba(23, 201, 100, 0); }
  }
  .hiw-illus--route .hiw-illus-toast-stack {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
  }
  .hiw-illus--route .hiw-illus-toast {
    padding: 8px 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: hiwToastSlide 3.6s cubic-bezier(.4,.1,.2,1) infinite;
  }
  .hiw-illus--route .hiw-illus-toast--email { animation-delay: 0.4s; }
  @keyframes hiwToastSlide {
    0%, 8%    { transform: translateX(20px); opacity: 0; }
    20%, 80%  { transform: translateX(0); opacity: 1; }
    92%, 100% { transform: translateX(-6px); opacity: 0; }
  }
  .hiw-illus-toast__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9333FF;
    flex-shrink: 0;
  }
  .hiw-illus-toast--email .hiw-illus-toast__chip { color: #2F9BFF; }
  .hiw-illus-toast__chip svg { width: 11px; height: 11px; }
  .hiw-illus-toast__line {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.08);
  }

  /* ── Features tile redesign — illustration + colored icon tile + accent bar ── */
  #features .feat-tile {
    padding: 0;
    gap: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }
  #features .feat-tile:hover {
    transform: translateY(-3px);
    box-shadow:
      0 1px 3px rgba(15, 23, 42, 0.05),
      0 24px 44px -20px rgba(15, 23, 42, 0.22);
  }
  #features .feat-tile .feat-tile__icon-raw { display: none; }

  /* The illustration sits at the top of the tile, with a subtle tinted bg */
  .feat-illus {
    position: relative;
    height: 110px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  .feat-tile--green  .feat-illus { background: linear-gradient(135deg, rgba(23, 201, 100, 0.10) 0%, rgba(23, 201, 100, 0.02) 100%); }
  .feat-tile--blue   .feat-illus { background: linear-gradient(135deg, rgba(47, 155, 255, 0.10) 0%, rgba(47, 155, 255, 0.02) 100%); }
  .feat-tile--purple .feat-illus { background: linear-gradient(135deg, rgba(147, 51, 255, 0.10) 0%, rgba(147, 51, 255, 0.02) 100%); }
  .feat-tile--ink    .feat-illus { background: linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.01) 100%); }

  /* Tile 1 — 24/7 clock strip */
  .feat-illus--clock .feat-illus-clock__track {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 36px;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(23, 201, 100, 0.25);
  }
  .feat-illus-clock__seg {
    flex: 1;
    height: 100%;
  }
  .feat-illus-clock__seg--night { background: rgba(15, 23, 42, 0.5); }
  .feat-illus-clock__seg--day   { background: rgba(23, 201, 100, 0.85); }
  .feat-illus-clock__seg--night + .feat-illus-clock__seg--day { flex: 2; }
  .feat-illus-clock__cursor {
    position: absolute;
    top: 32px;
    left: 18px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    border: 1.5px solid #17C964;
    box-shadow: 0 4px 10px -3px rgba(23, 201, 100, 0.5);
    animation: featClockSweep 6s linear infinite;
  }
  @keyframes featClockSweep {
    0%   { left: 14px; }
    100% { left: calc(100% - 22px); }
  }
  .feat-illus-clock__labels {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 60px;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .feat-illus-clock__badge {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: #17C964;
    padding: 3px 8px;
    border-radius: 999px;
    box-shadow: 0 6px 12px -4px rgba(23, 201, 100, 0.55);
  }

  /* Tile 2 — stacked call rows with checks */
  .feat-illus--calls {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
  .feat-illus-call-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 8px;
    opacity: 0;
    animation: featRowIn 3.2s ease-out infinite;
  }
  .feat-illus-call-row:nth-child(1) { animation-delay: 0.0s; }
  .feat-illus-call-row:nth-child(2) { animation-delay: 0.45s; }
  .feat-illus-call-row:nth-child(3) { animation-delay: 0.9s; }
  @keyframes featRowIn {
    0%       { opacity: 0; transform: translateX(-6px); }
    18%, 82% { opacity: 1; transform: translateX(0); }
    100%     { opacity: 0; transform: translateX(0); }
  }
  .feat-illus-call-row__avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F9BFF, rgba(47, 155, 255, 0.55));
    flex-shrink: 0;
  }
  .feat-illus-call-row__bar {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(47, 155, 255, 0.4), rgba(47, 155, 255, 0.12));
  }
  .feat-illus-call-row__bar--short { width: 60%; flex: 0 0 60%; }
  .feat-illus-call-row__bar--mid   { width: 78%; flex: 0 0 78%; }
  .feat-illus-call-row__check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #17C964;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .feat-illus-call-row__check svg { width: 9px; height: 9px; }

  /* Tile 3 — SMS + Email alert rows */
  .feat-illus--alerts {
    padding: 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .feat-illus-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    box-shadow: 0 4px 12px -6px rgba(15, 23, 42, 0.12);
    animation: featAlertPulse 3.2s ease-in-out infinite;
  }
  .feat-illus-alert--email { animation-delay: 0.6s; }
  @keyframes featAlertPulse {
    0%, 100% { transform: translateX(0); }
    10%      { transform: translateX(2px); }
  }
  .feat-illus-alert__icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }
  .feat-illus-alert--sms   .feat-illus-alert__icon { background: #9333FF; }
  .feat-illus-alert--email .feat-illus-alert__icon { background: #2F9BFF; }
  .feat-illus-alert__icon svg { width: 12px; height: 12px; }
  .feat-illus-alert__label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .feat-illus-alert__line {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.08);
  }

  /* Tile 4 — training chips */
  .feat-illus--trained {
    padding: 18px 18px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 6px;
  }
  .feat-illus-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .feat-illus-chip__check {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ink);
    flex-shrink: 0;
    position: relative;
  }
  .feat-illus-chip__check::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 4px;
    height: 6px;
    border-right: 1.4px solid #fff;
    border-bottom: 1.4px solid #fff;
    transform: translateY(-1px) rotate(45deg);
    top: -1px;
  }
  .feat-illus-chip--ghost {
    background: transparent;
    border-style: dashed;
    color: var(--muted);
  }
  .feat-illus-chip__plus {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    position: relative;
  }
  .feat-illus-chip__plus::before,
  .feat-illus-chip__plus::after {
    content: "";
    position: absolute;
    background: var(--muted);
    border-radius: 1px;
  }
  .feat-illus-chip__plus::before { left: 4px; top: 0; width: 2px; height: 10px; }
  .feat-illus-chip__plus::after  { top: 4px; left: 0; height: 2px; width: 10px; }

  /* Icon tile + body sit under the illustration */
  #features .feat-tile .feat-tile__icon-tile {
    margin: 18px 22px 10px;
  }
  .feat-tile__icon-tile {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    align-self: flex-start;
    box-shadow: 0 6px 14px -6px rgba(15, 23, 42, 0.25);
  }
  .feat-tile__icon-tile svg { width: 22px; height: 22px; }
  .feat-tile--green  .feat-tile__icon-tile { background: #17C964; box-shadow: 0 8px 18px -8px rgba(23, 201, 100, 0.6); }
  .feat-tile--blue   .feat-tile__icon-tile { background: #2F9BFF; box-shadow: 0 8px 18px -8px rgba(47, 155, 255, 0.6); }
  .feat-tile--purple .feat-tile__icon-tile { background: #9333FF; box-shadow: 0 8px 18px -8px rgba(147, 51, 255, 0.6); }
  .feat-tile--ink    .feat-tile__icon-tile { background: var(--ink); box-shadow: 0 8px 18px -8px rgba(15, 23, 42, 0.5); }

  #features .feat-tile__label {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 22px 8px;
  }
  #features .feat-tile__body {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 22px 22px;
  }

  .feat-tile__bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    opacity: 0.55;
  }
  .feat-tile--green  .feat-tile__bar { background: #17C964; }
  .feat-tile--blue   .feat-tile__bar { background: #2F9BFF; }
  .feat-tile--purple .feat-tile__bar { background: #9333FF; }
  .feat-tile--ink    .feat-tile__bar { background: var(--ink); }
}

