/* ============================================================
   Solvanta Labs — shared stylesheet (EN + TR pages)
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Dark surfaces */
  --ink:        #06080B;
  --graphite:   #0B0E13;
  --graphite-2: #10141B;
  --navy:       #0F1A2E;
  --surface:    #131820;
  --surface-2:  #181E28;
  --surface-3:  #1E2530;

  /* Light surfaces */
  --paper:      #FFFFFF;
  --warm-bg:    #F7F4EE;
  --warm-bg-2:  #EFEAE0;
  --warm-line:  #E5DFD2;
  --warm-line-strong: #D4CCB8;

  /* Type — dark mode (warm white on dark) */
  --warm-white: #F2EDE4;
  --warm-mute:  #B8B2A6;
  --warm-dim:   #7E7869;
  --warm-faint: #5A5547;

  /* Type — light mode (ink on warm) */
  --ink-text:   #1A1816;
  --ink-mute:   #5A554B;
  --ink-dim:    #8A8377;

  /* Lines on dark */
  --line:        rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.12);
  --line-bright: rgba(255,255,255,0.18);

  /* Accents */
  --green:       #7CC0A1;
  --green-deep:  #2A6B52;
  --green-2:     #5FA989;
  --green-soft:  rgba(124,192,161,0.12);
  --green-line:  rgba(124,192,161,0.28);
  --green-tint:  rgba(42,107,82,0.08);
  --green-tint-line: rgba(42,107,82,0.18);

  --gold:        #C9A86A;
  --gold-deep:   #8C6D2E;
  --gold-soft:   rgba(201,168,106,0.10);
  --gold-line:   rgba(201,168,106,0.24);

  /* Radii + shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-deep: 0 30px 80px -28px rgba(0,0,0,0.7), 0 8px 24px -10px rgba(0,0,0,0.5);
  --shadow-card: 0 16px 40px -16px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-light: 0 18px 44px -22px rgba(60,52,40,0.20), 0 2px 6px rgba(60,52,40,0.06);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--warm-white); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  font-feature-settings: 'ss01' on, 'cv11' on;
  overflow-x: hidden;
}
::selection { background: rgba(124,192,161,0.30); color: var(--warm-white); }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   MOTION
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes ringPulse { 0% { opacity: 0.7; transform: scale(0.7); } 100% { opacity: 0; transform: scale(2.4); } }
@keyframes drawLine { from { stroke-dashoffset: 600; } to { stroke-dashoffset: 0; } }
@keyframes waveform { 0%,100% { transform: scaleY(0.32); } 50% { transform: scaleY(1); } }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(2px,-3px); } }
@keyframes rowIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow { 0%,100% { opacity: 0.30; } 50% { opacity: 0.55; } }
@keyframes marqueeTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lightSweep { from { transform: translateX(-130%) skewX(-16deg); } to { transform: translateX(130%) skewX(-16deg); } }
@keyframes metricPop { 0% { transform: translateY(0); color: inherit; } 35% { transform: translateY(-2px); color: var(--green); } 100% { transform: translateY(0); color: inherit; } }
@keyframes orbitGlow { 0%,100% { transform: rotate(0deg) scale(1); opacity: 0.55; } 50% { transform: rotate(180deg) scale(1.05); opacity: 0.85; } }
@keyframes dataFlow { from { transform: translateX(-18px); opacity: 0.25; } to { transform: translateX(18px); opacity: 0.9; } }
@keyframes softFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes phoneBreath { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes phoneOrbPulse { 0%,100% { transform: scale(0.84); opacity: 0.16; } 50% { transform: scale(1.08); opacity: 0.36; } }
@keyframes phoneCallPulse { 0% { transform: scale(0.92); opacity: 0.55; } 70%,100% { transform: scale(1.35); opacity: 0; } }
@keyframes phoneIdleBars { 0%,100% { transform: scaleY(0.28); opacity: 0.48; } 50% { transform: scaleY(1); opacity: 0.92; } }

/* Reveal-on-scroll (base + staggered children) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .13s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .29s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .37s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .53s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .61s; }

/* Hero headline: line-by-line rise */
.headline-line { display: block; opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in .headline-line:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.reveal.in .headline-line:nth-child(2) { opacity: 1; transform: none; transition-delay: .17s; }
.reveal.in .headline-line:nth-child(3) { opacity: 1; transform: none; transition-delay: .29s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > *, .headline-line { opacity: 1; transform: none; }
}

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 820px) { .container { padding: 0 20px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.eyebrow > span { white-space: nowrap; }
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px rgba(124,192,161,0.7);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.eyebrow.on-dark {
  color: var(--warm-mute);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.025);
}
.eyebrow.on-light {
  color: var(--ink-mute);
  border: 1px solid var(--warm-line-strong);
  background: rgba(255,255,255,0.6);
}
.eyebrow.on-light::before { background: var(--green-deep); box-shadow: 0 0 10px rgba(42,107,82,0.4); }
.eyebrow .sep { color: var(--warm-faint); }
.eyebrow.on-light .sep { color: var(--ink-dim); }
.eyebrow .accent { color: var(--gold); }
.eyebrow.on-light .accent { color: var(--gold-deep); }

/* buttons */
.btn {
  height: 46px;
  padding: 0 22px; border-radius: 10px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }
.btn-primary-dark { background: var(--warm-white); color: var(--graphite); }
.btn-primary-dark:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(242,237,228,0.3); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.025);
  color: var(--warm-white);
  border-color: var(--line-strong);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }
.btn-primary-light { background: var(--ink-text); color: var(--warm-white); }
.btn-primary-light:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(26,24,22,0.3); }
.btn-ghost-light {
  background: rgba(0,0,0,0.02);
  color: var(--ink-text);
  border-color: var(--warm-line-strong);
}
.btn-ghost-light:hover { background: rgba(0,0,0,0.04); border-color: var(--ink-dim); }

/* CTA sheen sweep */
.btn-sheen::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-130%) skewX(-16deg);
  animation: lightSweep 4.5s var(--ease) infinite;
  pointer-events: none;
}

.hr-light { border: 0; border-top: 1px solid var(--warm-line); }
.hr-dark { border: 0; border-top: 1px solid var(--line); }

/* live dot */
.live-dot { position: relative; display: inline-block; width: 9px; height: 9px; flex-shrink: 0; }
.live-dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(124,192,161,0.7); animation: pulse 2s ease-in-out infinite; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--green); animation: ringPulse 2s ease-out infinite; }

/* tag pill */
.tag {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid;
}
.tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.tag-booked-dark    { background: var(--green-soft); color: var(--green); border-color: var(--green-line); }
.tag-qualified-dark { background: rgba(120,160,220,0.10); color: #9DB6E5; border-color: rgba(157,182,229,0.22); }
.tag-routed-dark    { background: var(--gold-soft); color: var(--gold); border-color: var(--gold-line); }
.tag-active-dark    { background: rgba(255,255,255,0.05); color: var(--warm-mute); border-color: var(--line); }

/* ============================================================
   NAV  (dark, sticky)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  background: linear-gradient(180deg, rgba(11,14,19,0.78) 0%, rgba(11,14,19,0.55) 100%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 13px 24px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--warm-white); }
.brand-mark { width: 22px; height: 22px; color: var(--green); display: block; }
.brand-name { font-weight: 500; font-size: 15.5px; letter-spacing: -0.02em; line-height: 1; }
.brand-name .labs {
  font-family: 'Geist Mono', monospace; font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-dim);
  margin-left: 9px; vertical-align: middle;
}
.nav-links { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--warm-mute); text-decoration: none;
  font-size: 13px; font-weight: 400; padding: 7px 12px;
  border-radius: 8px; transition: color .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--warm-white); background: rgba(255,255,255,0.04); }
.nav-divider { width: 1px; height: 18px; background: var(--line); margin: 0 12px; }
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.10em;
  flex-shrink: 0;
}
.lang-toggle a {
  text-decoration: none; color: var(--warm-dim);
  padding: 4px 10px; border-radius: 999px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.lang-toggle a.active { background: rgba(255,255,255,0.10); color: var(--warm-white); }
.lang-toggle a:not(.active):hover { color: var(--warm-white); }
.nav-cta {
  background: var(--warm-white); color: var(--graphite);
  padding: 8px 15px; border-radius: 8px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(255,255,255,0.22); }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-divider { display: none; }
}
@media (max-width: 820px) {
  .nav-inner { padding: 14px 20px; gap: 16px; }
  .lang-toggle { margin-left: auto; }
}

/* ============================================================
   HERO  (dark)
   ============================================================ */
.hero-wrap {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 78% 28%, rgba(201,168,106,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 18% 78%, rgba(124,192,161,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(15,26,46,0.7) 0%, transparent 60%),
    linear-gradient(180deg, var(--graphite) 0%, var(--ink) 100%);
}
.hero-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.30;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
}
.hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  min-height: clamp(620px, calc(100svh - 58px), 760px);
  padding: 52px 24px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 400px);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 520px; min-width: 0; position: relative; z-index: 2; }
h1.headline {
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.01;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin-bottom: 20px;
  margin-top: 22px;
}
h1.headline em {
  font-family: 'Fraunces', 'Inter', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
h1.headline .accent {
  color: var(--warm-mute);
  font-weight: 300;
}
.sub {
  font-size: 15.5px; line-height: 1.58;
  color: var(--warm-mute);
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 28px;
}
.ctas { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ctas-meta {
  display: flex; align-items: center; gap: 8px;
  margin-left: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-dim);
}
.ctas-meta::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--warm-faint); }

/* metrics strip */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.metric {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 16px;
  position: relative;
}
.metric + .metric::before {
  content: ""; position: absolute; left: -16px; top: 4px; bottom: 4px; width: 1px;
  background: var(--line);
}
.metric-num {
  font-weight: 400; font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  line-height: 1;
}
.metric-num.bump { animation: metricPop 700ms var(--ease); }
.metric-num .unit { color: var(--warm-dim); font-size: 14px; margin-left: 2px; }
.metric-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-dim);
  line-height: 1.4;
}

/* hero stage (right column) */
.stage {
  position: relative; z-index: 1; min-width: 0;
  min-height: 604px;
  display: flex; align-items: center; justify-content: center;
}
.stage::before {
  content: "";
  position: absolute; inset: -40px -10px -20px -10px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124,192,161,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201,168,106,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   ARIA — live receptionist call card
   ============================================================ */
.aria-card {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  isolation: isolate;
}
.aria-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  z-index: 2;
}
.aria-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.aria-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2A3548, #0F1828 80%);
  border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  flex-shrink: 0;
}
.aria-id { flex: 1; min-width: 0; }
.aria-name { font-size: 14.5px; font-weight: 500; color: var(--warm-white); }
.aria-role { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-dim); margin-top: 3px; }
.aria-live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
}
.aria-wave {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  height: 56px;
  padding: 0 24px;
  margin: 18px 0 4px;
}
.aria-wave i {
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  border-radius: 999px;
  transform: scaleY(0.14);
  transform-origin: center;
  opacity: 0.85;
  transition: transform .12s linear;
}
.aria-status {
  min-height: 18px;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-dim);
}
.aria-transcript {
  margin: 14px 18px 0;
  padding: 14px 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 190px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.aria-placeholder { font-size: 12.5px; color: var(--warm-faint); line-height: 1.6; }
.aria-line { margin-bottom: 12px; }
.aria-line:last-child { margin-bottom: 0; }
.aria-who {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-dim); margin-bottom: 3px;
}
.aria-line.agent .aria-who { color: var(--green); }
.aria-text { font-size: 13px; color: var(--warm-white); line-height: 1.5; }
.aria-quickasks {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px 18px 0;
}
.aria-quickasks[hidden] { display: none; }
.aria-chip {
  font: inherit;
  font-size: 11.5px;
  color: var(--warm-mute);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: color .15s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.aria-chip:hover { color: var(--warm-white); border-color: var(--green-line); background: var(--green-soft); }
.aria-foot { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.aria-call-btn {
  width: 100%;
  height: 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--warm-white);
  color: var(--graphite);
  font: inherit; font-size: 14.5px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.aria-call-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(242,237,228,0.3); }
.aria-card.is-live .aria-call-btn {
  background: rgba(255,255,255,0.03);
  color: var(--warm-white);
  border-color: var(--green-line);
}
.aria-card.is-connecting .aria-call-btn { opacity: 0.7; cursor: wait; }
.aria-mic-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-deep);
  position: relative; flex-shrink: 0;
}
.aria-card.is-live .aria-mic-dot { background: var(--green); box-shadow: 0 0 10px rgba(124,192,161,0.8); }
.aria-card.is-live .aria-mic-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--green); animation: ringPulse 1.6s ease-out infinite;
}
.aria-consent {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--warm-faint);
  text-align: center;
  line-height: 1.6;
}
.aria-error {
  margin: 0 18px;
  font-size: 12px; line-height: 1.5;
  color: #E5A692;
  text-align: center;
}

/* Customer demo phone surface */
.demo-handset {
  --phone-accent: var(--green-2);
  --phone-accent-deep: var(--green-deep);
  --phone-frame: rgba(124,192,161,0.08);
  --phone-frame-line: rgba(124,192,161,0.25);
  --phone-screen: #080D0C;
  --phone-screen-line: rgba(124,192,161,0.18);
  --phone-text: #F8F6EF;
  --phone-muted: #7F91AF;
  --phone-faint: rgba(127,145,175,0.52);
  --phone-pill: rgba(255,255,255,0.035);
  --phone-button: var(--green-2);
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 26px;
  border-radius: 58px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    var(--phone-frame);
  border: 1px solid var(--phone-frame-line);
  color: var(--phone-text);
  box-shadow: 0 42px 110px -54px rgba(0,0,0,0.85);
  overflow: visible;
  isolation: isolate;
}
.demo-handset::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 55px;
  border: 1px solid rgba(255,255,255,0.045);
  pointer-events: none;
  z-index: 0;
}
.demo-handset::after {
  content: "";
  position: absolute;
  inset: -36px;
  border-radius: 72px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--phone-accent) 20%, transparent) 0%, transparent 64%);
  filter: blur(12px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
.demo-handset-light {
  --phone-accent: #172A50;
  --phone-accent-deep: #172A50;
  --phone-frame: #EAF2FF;
  --phone-frame-line: #D9DFE9;
  --phone-screen: #FFFFFF;
  --phone-screen-line: #E1E6EE;
  --phone-text: #162035;
  --phone-muted: #6F788A;
  --phone-faint: #A7B0BF;
  --phone-pill: #F0EEE8;
  --phone-button: #172A50;
  box-shadow: 0 34px 90px -52px rgba(42,51,69,0.50);
}
.demo-handset-compact {
  width: min(100%, 430px);
  padding: 22px;
}
.demo-phone-screen {
  position: relative;
  z-index: 1;
  min-height: 540px;
  padding: 42px 28px 30px;
  border-radius: 38px;
  background: var(--phone-screen);
  border: 1px solid var(--phone-screen-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 28px 62px -48px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.demo-handset-compact .demo-phone-screen { min-height: 500px; padding-inline: 24px; }
.demo-phone-kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--phone-muted);
  margin-bottom: 16px;
}
.demo-phone-screen h2 {
  max-width: 330px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--phone-text);
}
.demo-phone-timer {
  margin-top: 9px;
  font-family: 'Geist Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--phone-muted);
}
.demo-phone-orb {
  position: relative;
  width: 145px;
  height: 145px;
  margin: 38px 0 28px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--phone-accent) 46%, transparent);
  display: grid;
  place-items: center;
  color: var(--phone-accent);
  background: radial-gradient(circle, color-mix(in srgb, var(--phone-accent) 12%, transparent) 0%, transparent 68%);
  box-shadow: 0 0 54px color-mix(in srgb, var(--phone-accent) 18%, transparent);
  animation: softFloat 5.8s ease-in-out infinite;
}
.demo-phone-orb::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--phone-accent) 42%, transparent);
  animation: phoneOrbPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.demo-phone-orb svg {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
}
.demo-phone-agent strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--phone-text);
}
.demo-phone-agent span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--phone-muted);
}
.demo-phone-pill {
  margin-top: 22px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--phone-pill);
  color: color-mix(in srgb, var(--phone-text) 86%, var(--phone-muted));
  font-size: 14.5px;
  line-height: 1;
}
.demo-phone-pill > span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--phone-muted);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--phone-muted) 12%, transparent);
  flex-shrink: 0;
}
.demo-phone-bars {
  width: min(100%, 300px);
  height: 34px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.demo-phone-bars i {
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--phone-faint);
  transform: scaleY(0.35);
  transform-origin: center;
  transition: transform .12s linear;
  animation: phoneIdleBars 1.55s ease-in-out infinite;
}
.demo-phone-bars i:nth-child(2n) { height: 15px; }
.demo-phone-bars i:nth-child(3n) { height: 20px; }
.demo-phone-bars i:nth-child(4n) { height: 24px; }
.demo-phone-bars i:nth-child(5n) { background: color-mix(in srgb, var(--phone-accent) 72%, var(--phone-faint)); }
.demo-phone-bars i:nth-child(2n) { animation-delay: -0.16s; }
.demo-phone-bars i:nth-child(3n) { animation-delay: -0.34s; }
.demo-phone-bars i:nth-child(4n) { animation-delay: -0.52s; }
.demo-phone-bars i:nth-child(5n) { animation-delay: -0.70s; }
.demo-phone-call {
  position: relative;
  width: 92px;
  height: 92px;
  margin-top: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--phone-button);
  color: #FFFFFF;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 46px -22px color-mix(in srgb, var(--phone-button) 80%, black);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), opacity .18s var(--ease);
}
.demo-phone-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: color-mix(in srgb, var(--phone-button) 38%, transparent);
  animation: phoneCallPulse 2.2s ease-out infinite;
  z-index: -1;
}
.demo-phone-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px -24px color-mix(in srgb, var(--phone-button) 90%, black);
}
.demo-phone-call svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.demo-phone-call-label {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--phone-muted);
}
.demo-handset .aria-consent {
  max-width: 370px;
  margin-top: 30px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--phone-muted);
}
.demo-handset .aria-error {
  position: static;
  max-width: 285px;
  min-height: 0;
  margin: 14px auto 0;
  font-size: 11px;
  line-height: 1.35;
  color: #E7A08D;
  text-wrap: balance;
  pointer-events: none;
}
.demo-handset .aria-error[hidden] { display: none; }
.demo-phone-transcript,
.demo-handset .aria-quickasks {
  display: none;
}
.phone-side-wave {
  position: absolute;
  top: 48%;
  display: flex;
  align-items: center;
  gap: 7px;
  pointer-events: none;
  opacity: 0.92;
}
.phone-side-wave-left { right: calc(100% + 28px); }
.phone-side-wave-right { left: calc(100% + 28px); }
.phone-side-wave i {
  width: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--phone-accent) 70%, var(--phone-faint));
  opacity: 0.72;
  animation: phoneSideBars 1.8s ease-in-out infinite;
}
.phone-side-wave i:nth-child(1),
.phone-side-wave i:nth-child(9) { height: 14px; animation-delay: -0.1s; }
.phone-side-wave i:nth-child(2),
.phone-side-wave i:nth-child(8) { height: 24px; animation-delay: -0.2s; }
.phone-side-wave i:nth-child(3),
.phone-side-wave i:nth-child(7) { height: 34px; animation-delay: -0.3s; }
.phone-side-wave i:nth-child(4),
.phone-side-wave i:nth-child(6) { height: 43px; animation-delay: -0.4s; }
.phone-side-wave i:nth-child(5) { height: 50px; animation-delay: -0.5s; }
.demo-handset.is-connecting .demo-phone-call,
.demo-handset.is-live .demo-phone-call {
  background: rgba(255,255,255,0.08);
  color: var(--phone-accent);
  outline: 1px solid color-mix(in srgb, var(--phone-accent) 55%, transparent);
}
.demo-handset.is-connecting .demo-phone-call::after,
.demo-handset.is-live .demo-phone-call::after,
.demo-handset.is-connecting .demo-phone-bars i,
.demo-handset.is-live .demo-phone-bars i {
  animation: none;
}
.demo-handset.is-live .demo-phone-pill > span:first-child {
  background: var(--phone-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--phone-accent) 16%, transparent), 0 0 18px color-mix(in srgb, var(--phone-accent) 40%, transparent);
}
@keyframes phoneSideBars {
  0%, 100% { transform: scaleY(0.72); opacity: 0.48; }
  50% { transform: scaleY(1.08); opacity: 0.95; }
}

/* Landing-page phone sizing: preserve the customer-demo portrait shape without
   letting the hero become a giant page. */
.stage .demo-handset {
  width: min(100%, 360px);
  padding: 16px;
  border-radius: 52px;
  animation: phoneBreath 6.5s ease-in-out infinite;
}
.stage .demo-phone-screen {
  min-height: 570px;
  padding: 34px 22px 24px;
  border-radius: 38px;
}
.stage .demo-phone-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  margin-bottom: 13px;
}
.stage .demo-phone-screen h2 {
  max-width: 260px;
  font-size: 20px;
}
.stage .demo-phone-timer {
  margin-top: 8px;
  font-size: 17px;
}
.stage .demo-phone-orb {
  width: 132px;
  height: 132px;
  margin: 34px 0 26px;
}
.stage .demo-phone-orb svg {
  width: 60px;
  height: 60px;
}
.stage .demo-phone-agent strong {
  font-size: 26px;
}
.stage .demo-phone-agent span {
  margin-top: 7px;
  font-size: 15px;
}
.stage .demo-phone-pill {
  margin-top: 22px;
  min-height: 34px;
  padding: 0 17px;
  gap: 11px;
  font-size: 14px;
}
.stage .demo-phone-pill > span:first-child {
  width: 9px;
  height: 9px;
}
.stage .demo-phone-bars {
  width: min(100%, 260px);
  height: 30px;
  margin-top: 32px;
  gap: 6px;
}
.stage .demo-phone-bars i {
  width: 4px;
}
.stage .demo-phone-call {
  width: 84px;
  height: 84px;
  margin-top: 28px;
}
.stage .demo-phone-call svg {
  width: 28px;
  height: 28px;
}
.stage .demo-phone-call-label {
  margin-top: 11px;
  font-size: 14px;
}
.stage .demo-handset .aria-consent {
  max-width: 285px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.35;
}
.stage .phone-side-wave {
  display: flex;
  top: 52%;
}
.stage .demo-handset .aria-error {
  font-size: 10.5px;
  margin-top: 13px;
}

.pricing-demo .demo-handset-compact {
  width: min(100%, 315px);
  padding: 12px;
  border-radius: 38px;
}
.pricing-demo .demo-handset-compact .demo-phone-screen {
  min-height: 430px;
  padding: 28px 17px 20px;
  border-radius: 28px;
}
.pricing-demo .demo-handset-compact .demo-phone-kicker {
  font-size: 9px;
  letter-spacing: 0.22em;
  margin-bottom: 9px;
}
.pricing-demo .demo-handset-compact .demo-phone-screen h2 {
  font-size: 17px;
}
.pricing-demo .demo-handset-compact .demo-phone-timer {
  margin-top: 6px;
  font-size: 14px;
}
.pricing-demo .demo-handset-compact .demo-phone-orb {
  width: 98px;
  height: 98px;
  margin: 22px 0 18px;
}
.pricing-demo .demo-handset-compact .demo-phone-orb svg {
  width: 45px;
  height: 45px;
}
.pricing-demo .demo-handset-compact .demo-phone-agent strong {
  font-size: 21px;
}
.pricing-demo .demo-handset-compact .demo-phone-agent span {
  margin-top: 5px;
  font-size: 13px;
}
.pricing-demo .demo-handset-compact .demo-phone-pill {
  margin-top: 14px;
  min-height: 29px;
  padding: 0 14px;
  gap: 8px;
  font-size: 12.5px;
}
.pricing-demo .demo-handset-compact .demo-phone-bars {
  width: min(100%, 190px);
  height: 24px;
  margin-top: 18px;
  gap: 4px;
}
.pricing-demo .demo-handset-compact .demo-phone-bars i {
  width: 3px;
}
.pricing-demo .demo-handset-compact .demo-phone-call {
  width: 66px;
  height: 66px;
  margin-top: 20px;
}
.pricing-demo .demo-handset-compact .demo-phone-call svg {
  width: 22px;
  height: 22px;
}
.pricing-demo .demo-handset-compact .demo-phone-call-label {
  margin-top: 8px;
  font-size: 12.5px;
}
.pricing-demo .demo-handset-compact .aria-consent {
  max-width: 230px;
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.35;
}
.pricing-demo .phone-side-wave {
  display: none;
}

/* ============================================================
   INDUSTRY MARQUEE (light band)
   ============================================================ */
.marquee {
  background: var(--warm-bg-2);
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marqueeTrack 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--warm-line-strong);
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
}
.marquee-chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-deep); }

/* ============================================================
   SOLUTIONS (light)
   ============================================================ */
.section-light {
  background: var(--warm-bg);
  color: var(--ink-text);
  padding: 92px 0;
  position: relative;
}
.section-paper { background: var(--paper); }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head h2 {
  font-weight: 400;
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink-text);
  margin-top: 20px;
  margin-bottom: 18px;
}
.section-head h2 em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  color: var(--gold-deep);
}
.section-head p {
  font-size: 15.5px; line-height: 1.58;
  color: var(--ink-mute);
  max-width: 540px;
  font-weight: 400;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--warm-line); border: 1px solid var(--warm-line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-3 { grid-template-columns: 1fr; } }

.card-light {
  background: var(--paper);
  padding: 32px 28px;
  transition: background .2s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
}
.card-light:hover { background: #FCFAF5; transform: translateY(-3px); box-shadow: var(--shadow-light); z-index: 1; }
.card-light .card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--green-tint); color: var(--green-deep);
  border: 1px solid var(--green-tint-line);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.card-light h3 {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-text);
  line-height: 1.3;
}
.card-light .card-prob {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-mute);
}
.card-light .card-sol {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-text);
  padding-top: 14px;
  border-top: 1px solid var(--warm-line);
}
.card-light .card-out {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--warm-line);
}
.card-light .card-out li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-mute);
  line-height: 1.5;
}
.card-light .card-out li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-deep);
  margin-top: 7px; flex-shrink: 0;
}
.card-light .card-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s var(--ease);
  margin-top: 10px;
}
.card-light .card-cta:hover { gap: 12px; }
.card-light .card-cta::after { content: "→"; }

/* AI employee system preview */
.employee-system {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 24px;
  align-items: stretch;
}
.employee-demo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(42,107,82,0.16);
  background:
    radial-gradient(ellipse 60% 72% at 50% 48%, rgba(124,192,161,0.18), transparent 62%),
    radial-gradient(ellipse 45% 55% at 88% 20%, rgba(201,168,106,0.14), transparent 68%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,251,248,0.94));
  box-shadow: 0 28px 80px -36px rgba(42,107,82,0.42), 0 12px 30px -24px rgba(26,24,22,0.24);
  min-height: 430px;
  padding: 18px;
  isolation: isolate;
}
.employee-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,107,82,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,107,82,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 72% 70% at 52% 44%, #000 18%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 72% 70% at 52% 44%, #000 18%, transparent 82%);
  z-index: -2;
}
.employee-demo::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, transparent, rgba(124,192,161,0.28), transparent, rgba(201,168,106,0.18), transparent),
    radial-gradient(circle, rgba(255,255,255,0.9), rgba(124,192,161,0.10) 46%, transparent 68%);
  filter: blur(0.2px);
  opacity: 0.78;
  z-index: -1;
  animation: orbitGlow 16s linear infinite;
}
.demo-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(42,107,82,0.14);
  box-shadow: 0 12px 28px -24px rgba(26,24,22,0.28);
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.demo-topbar strong { margin-left: auto; color: var(--green-deep); font-weight: 500; }
.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 14px rgba(42,107,82,0.55);
}
.demo-grid {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 26px 4px 18px;
}
.demo-panel {
  border: 1px solid rgba(42,107,82,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 24px 60px -34px rgba(26,24,22,0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  animation: softFloat 7s var(--ease) infinite;
}
.chat-panel { animation-delay: -2.6s; }
.demo-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(42,107,82,0.12);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.demo-panel-head strong {
  color: var(--ink-text);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.phone-shell { padding: 15px; }
.phone-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #F8FFFB, #D9EEE5);
  border: 1px solid rgba(42,107,82,0.22);
  color: var(--green-deep);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.phone-contact strong {
  display: block;
  font-size: 15px;
  color: var(--ink-text);
  margin-bottom: 4px;
}
.phone-contact span:last-child {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.voice-bars {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 22px 0 18px;
  padding: 0 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(42,107,82,0.06), rgba(42,107,82,0.02));
}
.voice-bars i {
  width: 7px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-deep), var(--green));
  transform-origin: center;
  animation: waveform 1.4s ease-in-out infinite;
}
.voice-bars i:nth-child(2) { animation-delay: -.2s; }
.voice-bars i:nth-child(3) { animation-delay: -.45s; }
.voice-bars i:nth-child(4) { animation-delay: -.1s; }
.voice-bars i:nth-child(5) { animation-delay: -.62s; }
.voice-bars i:nth-child(6) { animation-delay: -.3s; }
.voice-bars i:nth-child(7) { animation-delay: -.52s; }
.voice-bars i:nth-child(8) { animation-delay: -.18s; }
.demo-note {
  color: var(--ink-mute);
  font-size: 13px;
  line-height: 1.55;
}
.demo-core {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.core-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(42,107,82,0.18);
  background:
    conic-gradient(from 90deg, transparent, rgba(42,107,82,0.22), transparent, rgba(201,168,106,0.22), transparent),
    radial-gradient(circle, rgba(255,255,255,0.96), rgba(124,192,161,0.12));
  box-shadow: inset 0 0 0 20px rgba(255,255,255,0.42), 0 20px 44px -28px rgba(42,107,82,0.35);
  animation: orbitGlow 13s linear infinite reverse;
}
.core-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-deep);
  color: var(--paper);
  box-shadow: 0 20px 34px -20px rgba(42,107,82,0.65);
}
.core-mark svg { width: 28px; height: 28px; }
.core-label {
  position: absolute;
  bottom: 22px;
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  white-space: nowrap;
}
.chat-window {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 92%;
  border-radius: 16px;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-text);
  border: 1px solid rgba(42,107,82,0.10);
}
.chat-bubble.agent {
  align-self: flex-start;
  background: rgba(42,107,82,0.07);
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--ink-text);
  color: var(--paper);
  border-color: transparent;
}
.flow-strip {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(42,107,82,0.13);
  background: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.flow-strip i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-deep), transparent);
  animation: dataFlow 1.8s ease-in-out infinite alternate;
}
.system-rail {
  display: grid;
  gap: 10px;
}
.system-item {
  position: relative;
  min-height: 104px;
  padding: 16px 16px 16px 54px;
  border: 1px solid rgba(42,107,82,0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 44px -32px rgba(60,52,40,0.30);
}
.system-item span {
  position: absolute;
  left: 18px;
  top: 19px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--green-deep);
  letter-spacing: 0.14em;
}
.system-item h3 {
  font-size: 16.5px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink-text);
  margin-bottom: 8px;
}
.system-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
}
@media (max-width: 1100px) {
  .employee-system { grid-template-columns: 1fr; }
  .system-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .employee-demo { padding: 16px; min-height: auto; border-radius: 20px; }
  .demo-grid { grid-template-columns: 1fr; padding: 22px 0; }
  .demo-core { min-height: 150px; }
  .core-label { bottom: 0; }
  .flow-strip { justify-content: flex-start; }
  .flow-strip i { width: 18px; }
  .system-rail { grid-template-columns: 1fr; }
}

/* ============================================================
   INDUSTRIES (light paper)
   ============================================================ */
.industries {
  background: var(--paper);
  padding: 92px 0;
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
}
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-line);
  border: 1px solid var(--warm-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 1024px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .industries-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: var(--paper);
  padding: 16px 18px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 318px;
}
.ind-card:hover { background: #FBF8F2; transform: translateY(-3px); box-shadow: var(--shadow-light); z-index: 1; }
.ind-media {
  position: relative;
  aspect-ratio: 1.9;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--warm-line);
  background: var(--warm-bg);
  margin-bottom: 2px;
}
.ind-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(26,24,22,0.50) 100%);
}
.ind-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
}
.ind-card:hover .ind-media img { transform: scale(1.06); filter: saturate(1.04); }
.ind-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.ind-card h3 { font-size: 18.5px; font-weight: 500; color: var(--ink-text); letter-spacing: -0.02em; line-height: 1.2; }
.ind-section-h { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin-top: 4px; }
.ind-card .ind-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.ind-card .ind-list li {
  font-size: 12.5px; color: var(--ink-mute); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.ind-card .ind-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px; background: var(--ink-dim);
}
.ind-card .ind-approach { font-size: 13px; color: var(--ink-text); line-height: 1.55; padding-top: 10px; border-top: 1px solid var(--warm-line); }
.ind-card .ind-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  transition: gap .2s var(--ease);
}
.ind-card .ind-cta:hover { gap: 12px; }
.ind-card .ind-cta::after { content: "→"; }

/* ============================================================
   HOW IT WORKS — OPS CONSOLE SHOWCASE (dark)
   ============================================================ */
.ops-section {
  background: var(--ink);
  padding: 92px 0;
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.ops-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(124,192,161,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(201,168,106,0.06) 0%, transparent 60%);
}
.ops-section .container { position: relative; z-index: 2; }
.ops-head { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: end; margin-bottom: 44px; }
.ops-head h2 {
  font-weight: 400; font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06; letter-spacing: -0.035em; color: var(--warm-white);
  margin-top: 20px;
}
.ops-head h2 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); }
.ops-head p { font-size: 16px; line-height: 1.6; color: var(--warm-mute); max-width: 480px; font-weight: 300; }
@media (max-width: 900px) { .ops-head { grid-template-columns: 1fr; gap: 24px; } }

/* 4-step process strip */
.ops-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .ops-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ops-steps { grid-template-columns: 1fr; } }
.ops-step {
  background: var(--surface);
  padding: 24px 22px;
  transition: background .2s var(--ease);
}
.ops-step:hover { background: var(--surface-2); }
.ops-step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ops-step-title { font-size: 15.5px; font-weight: 500; color: var(--warm-white); letter-spacing: -0.01em; }
.ops-step-desc { font-size: 13px; color: var(--warm-mute); line-height: 1.55; margin-top: 8px; font-weight: 300; }

.console-big {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  isolation: isolate;
}
.console-big::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); z-index: 2; }
.console-big-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.traffic { display: flex; gap: 6px; }
.traffic i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.10); display: block; }
.console-url {
  flex: 1;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--warm-dim); letter-spacing: 0.04em;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px;
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 280px;
}
.console-url .lock { color: var(--green); font-size: 9px; }
.ops-tabs { display: flex; gap: 4px; margin-left: auto; }
.ops-tab {
  font-size: 12.5px; padding: 7px 13px; border-radius: 7px;
  color: var(--warm-mute); cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease);
  font-weight: 400; user-select: none;
}
.ops-tab:hover { background: rgba(255,255,255,0.04); color: var(--warm-white); }
.ops-tab.active { background: rgba(124,192,161,0.10); color: var(--green); border: 1px solid var(--green-line); padding: 6px 12px; }

.console-big-body {
  display: grid;
  grid-template-columns: 190px 1fr 280px;
  min-height: 460px;
}
.side {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: rgba(0,0,0,0.18);
}
.side-h {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-faint);
  padding: 10px 10px 6px;
}
.side-item {
  padding: 9px 12px;
  border-radius: 7px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--warm-mute);
  cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease);
  margin-bottom: 1px;
}
.side-item:hover { background: rgba(255,255,255,0.03); color: var(--warm-white); }
.side-item.active {
  background: var(--green-soft); color: var(--green);
  font-weight: 500;
}
.side-item .ico { width: 14px; height: 14px; opacity: 0.9; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.side-item .badge {
  margin-left: auto;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  background: rgba(255,255,255,0.05); color: var(--warm-mute);
  padding: 1px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
}
.side-item.active .badge { background: rgba(124,192,161,0.18); color: var(--green); }

.main { display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.main-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.main-head-l { display: flex; align-items: center; gap: 10px; min-width: 0; }
.main-title { font-size: 13.5px; font-weight: 500; color: var(--warm-white); }
.main-title .smol { color: var(--warm-dim); font-weight: 400; margin-left: 6px; }
.main-stats { display: flex; gap: 18px; align-items: center; }
.ms { display: flex; align-items: baseline; gap: 5px; }
.ms-num { font-weight: 500; font-size: 13px; color: var(--warm-white); letter-spacing: -0.01em; }
.ms-num.green { color: var(--green); }
.ms-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-dim);
}

.rows { padding: 8px 12px 12px; }
.row {
  display: grid;
  grid-template-columns: 56px 1fr 92px 64px 16px;
  gap: 14px; align-items: center;
  padding: 12px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  border: 1px solid transparent;
  transition: background .15s var(--ease), border-color .15s var(--ease);
  cursor: pointer;
  opacity: 0;
  animation: rowIn 500ms var(--ease) forwards;
}
.row:nth-child(1) { animation-delay: 0.10s; }
.row:nth-child(2) { animation-delay: 0.20s; }
.row:nth-child(3) { animation-delay: 0.30s; }
.row:nth-child(4) { animation-delay: 0.40s; }
.row:nth-child(5) { animation-delay: 0.50s; }
.row:nth-child(6) { animation-delay: 0.60s; }
.row:hover { background: var(--surface-3); border-color: var(--line); }
.row.active {
  background: linear-gradient(90deg, rgba(124,192,161,0.07), transparent 70%);
  border-color: rgba(124,192,161,0.2);
}
.row-time { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--warm-dim); letter-spacing: 0.04em; }
.row-id { display: flex; align-items: center; gap: 10px; min-width: 0; }
.row-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 500; color: var(--warm-mute);
}
.row-name { font-weight: 500; color: var(--warm-white); font-size: 13px; }
.row-intent { font-size: 11.5px; color: var(--warm-dim); margin-top: 1px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row-id-meta { min-width: 0; }
.row-dur { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--warm-mute); text-align: right; }
.row-chev { color: var(--warm-faint); font-size: 14px; line-height: 1; }
.mini-wave { display: inline-flex; align-items: center; gap: 2px; height: 12px; margin-left: 8px; vertical-align: middle; }
.mini-wave i { width: 2px; background: var(--green); border-radius: 1px; height: 100%; opacity: 0.85; animation: waveform 1.1s ease-in-out infinite; }
.mini-wave i:nth-child(1) { animation-delay: 0.0s; }
.mini-wave i:nth-child(2) { animation-delay: 0.10s; }
.mini-wave i:nth-child(3) { animation-delay: 0.20s; }
.mini-wave i:nth-child(4) { animation-delay: 0.30s; }
.mini-wave i:nth-child(5) { animation-delay: 0.20s; }
.mini-wave i:nth-child(6) { animation-delay: 0.10s; }
.mini-wave i:nth-child(7) { animation-delay: 0.0s; }

.ops-detail {
  border-left: 1px solid var(--line);
  padding: 20px 20px;
  background: rgba(0,0,0,0.18);
  display: flex; flex-direction: column; gap: 18px;
}
.ops-detail-h { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.ops-detail-name { font-size: 14px; font-weight: 500; color: var(--warm-white); }
.ops-detail-role { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-dim); margin-top: 3px; }
.ops-detail-section-h { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-faint); margin-bottom: 10px; }

.kv { display: grid; grid-template-columns: 80px 1fr; gap: 8px 12px; font-size: 12.5px; }
.kv .k { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--warm-dim); letter-spacing: 0.06em; padding-top: 1px; }
.kv .v { color: var(--warm-white); }

.ops-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; }

@media (max-width: 1100px) {
  .console-big-body { grid-template-columns: 200px 1fr; }
  .ops-detail { display: none; }
}
@media (max-width: 760px) {
  .console-big-body { grid-template-columns: 1fr; }
  .console-big-body .side { display: none; }
  .console-big-body { min-height: auto; }
  .console-big-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }
  .console-url {
    order: 2;
    flex-basis: 100%;
    max-width: none;
  }
  .console-big-bar > .tag { margin-left: auto; }
  .ops-tabs {
    order: 3;
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .ops-tab {
    min-width: 0;
    text-align: center;
    font-size: 11px;
    padding: 7px 8px;
  }
  .ops-tab.active { padding: 6px 7px; }
  .main-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .main-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .rows { padding: 6px; }
  .row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .row .tag,
  .row-dur,
  .row-chev { display: none; }
  .row-intent {
    white-space: normal;
    overflow: visible;
  }
}

/* ============================================================
   WORKLOAD PRICING + DEMO PHONE
   ============================================================ */
.workload-pricing {
  background:
    linear-gradient(90deg, rgba(42,107,82,0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--warm-bg) 0%, #FAF7F1 100%);
  background-size: 96px 100%, 100% 100%;
  padding: 92px 0;
  color: var(--ink-text);
  border-top: 1px solid var(--warm-line);
  position: relative;
  overflow: hidden;
}
.workload-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(201,168,106,0.14) 0%, transparent 30%),
    linear-gradient(320deg, rgba(124,192,161,0.12) 0%, transparent 32%);
}
.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 54px;
  align-items: center;
}
.pricing-copy h2 {
  max-width: 660px;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-top: 20px;
  margin-bottom: 20px;
}
.pricing-copy h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.pricing-sub {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.workload-list {
  margin: 28px 0 26px;
  max-width: 660px;
  border-top: 1px solid var(--warm-line);
}
.workload-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--warm-line);
}
.workload-row > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--green-deep);
  background: var(--green-tint);
  border: 1px solid var(--green-tint-line);
}
.workload-row h3 {
  font-size: 16.5px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-text);
  margin-bottom: 6px;
}
.workload-row p {
  font-size: 13.5px;
  line-height: 1.58;
  color: var(--ink-mute);
}
.pricing-demo {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-inline: 24px;
}
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .pricing-demo {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .workload-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   FAQ + CONTACT (light)
   ============================================================ */
.conv {
  background: var(--paper);
  padding: 92px 0;
  color: var(--ink-text);
}
.conv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .conv-grid { grid-template-columns: 1fr; gap: 56px; } }

.lead-form-card {
  background: var(--warm-bg);
  border: 1px solid var(--warm-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-light);
}
.lead-form {
  display: grid;
  gap: 16px;
}
.lead-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--warm-line-strong);
  border-radius: 9px;
  background: rgba(255,255,255,0.72);
  color: var(--ink-text);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 13px;
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(42,107,82,0.55);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(42,107,82,0.08);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.form-note {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.45;
}
.form-status {
  min-height: 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.form-status.ok { color: var(--green-deep); }
.form-status.err { color: #8A3324; }
.lead-form button[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.steps { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.step {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--warm-bg);
  border: 1px solid var(--warm-line);
  border-radius: var(--r-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-light); }
.step-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-tint); color: var(--green-deep);
  border: 1px solid var(--green-tint-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 500;
}
.step-title { font-size: 15px; font-weight: 500; color: var(--ink-text); letter-spacing: -0.01em; }
.step-desc { font-size: 13.5px; color: var(--ink-mute); line-height: 1.55; margin-top: 6px; }

.faq { display: flex; flex-direction: column; gap: 0; margin-top: 32px; border-top: 1px solid var(--warm-line); }
.faq-item { border-bottom: 1px solid var(--warm-line); padding: 20px 0; cursor: pointer; transition: background .15s var(--ease); }
.faq-item:hover { padding-left: 6px; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15.5px; font-weight: 500; color: var(--ink-text); letter-spacing: -0.01em;
}
.faq-q .toggle {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--warm-line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  font-size: 14px; line-height: 1;
  flex-shrink: 0; transition: transform .2s var(--ease), background .2s var(--ease);
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--ink-text); color: var(--warm-white); border-color: var(--ink-text); }
.faq-a {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-mute);
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ============================================================
   FOOTER (dark)
   ============================================================ */
.footer {
  background: var(--graphite);
  border-top: 1px solid var(--line);
  color: var(--warm-mute);
  padding: 72px 0 36px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--warm-dim); font-size: 13.5px; line-height: 1.6; margin-top: 16px; font-weight: 300; }
.footer-col-h {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-faint); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--warm-mute); text-decoration: none; font-size: 13.5px; transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom {
  max-width: 1180px; margin: 48px auto 0; padding: 22px 24px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-faint);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — global
   ============================================================ */
@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 46px; padding-top: 52px; }
  .hero-copy { max-width: 720px; }
  .stage { min-height: auto; }
  .stage { justify-content: center; }
}
@media (max-width: 820px) {
  .hero { min-height: auto; padding: 40px 20px 62px; gap: 34px; }
  h1.headline { font-size: 38px; line-height: 1.02; }
  .sub { font-size: 15.5px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .metric + .metric:nth-child(3)::before { display: none; }
  .section-light, .industries, .ops-section, .workload-pricing, .conv { padding: 68px 0; }
  .section-head { margin-bottom: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .demo-handset {
    width: min(100%, 340px);
    padding: 14px;
    border-radius: 42px;
  }
  .demo-phone-screen {
    min-height: 470px;
    padding: 32px 20px 24px;
    border-radius: 30px;
  }
  .demo-phone-kicker { font-size: 11px; letter-spacing: 0.32em; margin-bottom: 16px; }
  .demo-phone-screen h2 { font-size: 21px; }
  .demo-phone-timer { font-size: 18px; }
  .demo-phone-orb {
    width: 140px;
    height: 140px;
    margin: 38px 0 30px;
  }
  .demo-phone-orb svg { width: 64px; height: 64px; }
  .demo-phone-agent strong { font-size: 26px; }
  .demo-phone-agent span { font-size: 16px; }
  .demo-phone-pill { margin-top: 24px; min-height: 36px; font-size: 15px; }
  .demo-phone-bars { margin-top: 36px; }
  .demo-phone-call { width: 92px; height: 92px; margin-top: 32px; }
  .demo-phone-call svg { width: 30px; height: 30px; }
  .demo-phone-call-label { font-size: 16px; }
  .demo-handset .aria-consent { margin-top: 34px; font-size: 14px; }
  .phone-side-wave,
  .stage .phone-side-wave { display: none; }
  .stage .demo-handset,
  .pricing-demo .demo-handset-compact {
    width: min(100%, 330px);
    padding: 13px;
    border-radius: 44px;
  }
  .stage .demo-phone-screen,
  .pricing-demo .demo-handset-compact .demo-phone-screen {
    min-height: 515px;
    padding: 30px 18px 22px;
    border-radius: 32px;
  }
  .stage .demo-phone-kicker,
  .pricing-demo .demo-handset-compact .demo-phone-kicker {
    font-size: 9.5px;
    letter-spacing: 0.24em;
    margin-bottom: 10px;
  }
  .stage .demo-phone-screen h2,
  .pricing-demo .demo-handset-compact .demo-phone-screen h2 {
    font-size: 19px;
  }
  .stage .demo-phone-timer,
  .pricing-demo .demo-handset-compact .demo-phone-timer {
    font-size: 15px;
  }
  .stage .demo-phone-orb,
  .pricing-demo .demo-handset-compact .demo-phone-orb {
    width: 122px;
    height: 122px;
    margin: 30px 0 24px;
  }
  .stage .demo-phone-orb svg,
  .pricing-demo .demo-handset-compact .demo-phone-orb svg {
    width: 56px;
    height: 56px;
  }
  .stage .demo-phone-agent strong,
  .pricing-demo .demo-handset-compact .demo-phone-agent strong {
    font-size: 22px;
  }
  .stage .demo-phone-agent span,
  .pricing-demo .demo-handset-compact .demo-phone-agent span {
    font-size: 14px;
  }
  .stage .demo-phone-pill,
  .pricing-demo .demo-handset-compact .demo-phone-pill {
    margin-top: 20px;
    min-height: 33px;
    font-size: 13.5px;
  }
  .stage .demo-phone-bars,
  .pricing-demo .demo-handset-compact .demo-phone-bars {
    width: min(100%, 235px);
    margin-top: 28px;
    gap: 5px;
  }
  .stage .demo-phone-call,
  .pricing-demo .demo-handset-compact .demo-phone-call {
    width: 78px;
    height: 78px;
    margin-top: 26px;
  }
  .stage .demo-phone-call svg,
  .pricing-demo .demo-handset-compact .demo-phone-call svg {
    width: 24px;
    height: 24px;
  }
  .stage .demo-phone-call-label,
  .pricing-demo .demo-handset-compact .demo-phone-call-label {
    margin-top: 9px;
    font-size: 13.5px;
  }
  .stage .demo-handset .aria-consent,
  .pricing-demo .demo-handset-compact .aria-consent {
    margin-top: 18px;
    font-size: 12px;
  }
  .demo-handset .aria-error {
    bottom: 82px;
    font-size: 9.5px;
  }
}
@media (max-width: 520px) {
  .nav-inner { gap: 12px; }
  .nav-cta { display: none; }
  .hero { padding-top: 30px; gap: 30px; }
  .hero .eyebrow { display: none; }
  h1.headline {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1.01;
    margin-top: 0;
    margin-bottom: 18px;
  }
  .sub {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
  .metrics { display: none; }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    line-height: 1.45;
  }
  .eyebrow > span { white-space: normal; }
  h1.headline { overflow-wrap: break-word; }
  .ctas { flex-direction: column; align-items: stretch; }
  .btn {
    justify-content: center;
    height: auto;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }
  .ctas-meta { display: none; }
  .ind-card { padding: 16px 16px 24px; }
  .lead-form-card { padding: 22px 18px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .demo-handset {
    width: min(100%, 320px);
    padding: 10px;
    border-radius: 34px;
  }
  .demo-phone-screen {
    min-height: 420px;
    padding: 26px 15px 20px;
    border-radius: 25px;
  }
  .demo-phone-kicker { letter-spacing: 0.24em; }
  .demo-phone-screen h2 { font-size: 19px; }
  .demo-phone-orb {
    width: 116px;
    height: 116px;
    margin: 30px 0 24px;
  }
  .demo-phone-orb svg { width: 54px; height: 54px; }
  .demo-phone-agent strong { font-size: 24px; }
  .demo-phone-agent span { font-size: 15px; }
  .demo-phone-bars { width: 240px; gap: 5px; margin-top: 28px; }
  .demo-phone-bars i { width: 4px; }
  .demo-phone-call { width: 86px; height: 86px; margin-top: 26px; }
  .demo-handset .aria-consent { margin-top: 28px; }
  .stage .demo-handset,
  .pricing-demo .demo-handset-compact {
    width: min(100%, 300px);
    padding: 11px;
    border-radius: 40px;
  }
  .stage .demo-phone-screen,
  .pricing-demo .demo-handset-compact .demo-phone-screen {
    min-height: 470px;
    padding: 26px 15px 20px;
    border-radius: 29px;
  }
  .stage .demo-phone-kicker,
  .pricing-demo .demo-handset-compact .demo-phone-kicker {
    font-size: 9px;
    letter-spacing: 0.24em;
    margin-bottom: 11px;
  }
  .stage .demo-phone-screen h2,
  .pricing-demo .demo-handset-compact .demo-phone-screen h2 {
    font-size: 18px;
  }
  .stage .demo-phone-timer,
  .pricing-demo .demo-handset-compact .demo-phone-timer {
    font-size: 15px;
  }
  .stage .demo-phone-orb,
  .pricing-demo .demo-handset-compact .demo-phone-orb {
    width: 108px;
    height: 108px;
    margin: 24px 0 20px;
  }
  .stage .demo-phone-orb svg,
  .pricing-demo .demo-handset-compact .demo-phone-orb svg {
    width: 50px;
    height: 50px;
  }
  .stage .demo-phone-agent strong,
  .pricing-demo .demo-handset-compact .demo-phone-agent strong {
    font-size: 24px;
  }
  .stage .demo-phone-agent span,
  .pricing-demo .demo-handset-compact .demo-phone-agent span {
    font-size: 14px;
  }
  .stage .demo-phone-pill,
  .pricing-demo .demo-handset-compact .demo-phone-pill {
    margin-top: 19px;
    min-height: 32px;
    padding: 0 14px;
    font-size: 13.5px;
  }
  .stage .demo-phone-bars,
  .pricing-demo .demo-handset-compact .demo-phone-bars {
    width: min(100%, 210px);
    height: 28px;
    margin-top: 24px;
  }
  .stage .demo-phone-call,
  .pricing-demo .demo-handset-compact .demo-phone-call {
    width: 74px;
    height: 74px;
    margin-top: 22px;
  }
  .stage .demo-phone-call-label,
  .pricing-demo .demo-handset-compact .demo-phone-call-label {
    margin-top: 10px;
    font-size: 13.5px;
  }
  .stage .demo-handset .aria-consent,
  .pricing-demo .demo-handset-compact .aria-consent {
    margin-top: 16px;
    font-size: 12px;
  }
}

/* ============================================================
   DEMOS PAGE (/demos/) + homepage demo teaser
   ============================================================ */
.demos-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 72px 0 56px;
}
.demos-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 78% 20%, rgba(201,168,106,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 18% 90%, rgba(124,192,161,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--graphite) 0%, var(--ink) 100%);
}
.demos-hero .container { position: relative; z-index: 2; }
.demos-hero h1 {
  font-weight: 400;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin: 22px 0 16px;
}
.demos-hero h1 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); }
.demos-hero p { font-size: 16px; line-height: 1.6; color: var(--warm-mute); max-width: 620px; font-weight: 300; }

.demos-body {
  background: var(--ink);
  padding: 40px 0 110px;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) { .demo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 860px)  { .demo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .demo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.demo-niche-card {
  font: inherit;
  text-align: left;
  display: flex; flex-direction: column; gap: 5px;
  min-width: 0;
  padding: 16px 16px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  color: var(--warm-mute);
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.demo-niche-card:hover { transform: translateY(-2px); border-color: var(--green-line); color: var(--warm-white); }
.demo-niche-card.active {
  background: var(--green-soft);
  border-color: var(--green-line);
  color: var(--warm-white);
}
.demo-niche-icon { font-size: 18px; line-height: 1; }
.demo-niche-label { font-size: 14px; font-weight: 500; color: inherit; letter-spacing: -0.01em; min-width: 0; }
.demo-niche-biz {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--warm-dim);
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.demo-niche-voices {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.08em;
  color: var(--warm-faint);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-niche-card.active .demo-niche-biz { color: var(--green); }

.demo-stage { max-width: 720px; margin: 0 auto; }
.demo-stage-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.demo-scenario-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.demo-stage-title {
  font-weight: 400; font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em; color: var(--warm-white); line-height: 1.1;
}
.demo-stage-sub { font-size: 14px; line-height: 1.55; color: var(--warm-mute); max-width: 460px; margin-top: 8px; font-weight: 300; }
.demo-voice-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 3px;
  gap: 3px;
  flex-shrink: 0;
}
.demo-voice-btn {
  font: inherit;
  font-size: 13px;
  color: var(--warm-mute);
  background: transparent;
  border: 0; border-radius: 9px;
  padding: 9px 16px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.demo-voice-btn:hover { color: var(--warm-white); }
.demo-voice-btn.active { background: var(--green-soft); color: var(--warm-white); }
.demo-voice-kind {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-dim);
}
.demo-voice-btn.active .demo-voice-kind { color: var(--green); }
.demo-stage-phone { margin-top: 8px; }

/* Homepage teaser strip */
.demo-teaser {
  background: var(--warm-bg);
  padding: 96px 0;
  border-top: 1px solid var(--warm-line);
  color: var(--ink-text);
}
.demo-teaser-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .demo-teaser-grid { grid-template-columns: 1fr; gap: 36px; } }
.demo-teaser h2 {
  font-weight: 400; font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin: 20px 0 16px;
}
.demo-teaser h2 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold-deep); }
.demo-teaser p { font-size: 16px; line-height: 1.6; color: var(--ink-mute); max-width: 480px; }
.demo-teaser .ctas { margin-top: 26px; }
.demo-teaser-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.demo-teaser-chip {
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-text);
  background: var(--paper);
  border: 1px solid var(--warm-line-strong);
  border-radius: 999px;
  padding: 10px 16px;
  transition: transform .15s var(--ease), border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.demo-teaser-chip:hover { transform: translateY(-2px); border-color: var(--green-deep); box-shadow: var(--shadow-light); }
.demo-teaser-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-deep); }
