@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --paper: #fbfcfa;
  --paper-warm: #f4f7f2;
  --ink: #122331;
  --muted: #5f707d;
  --line: #dbe4e9;
  --line-strong: #c4d2da;
  --blue: #155fd0;
  --blue-strong: #0b4cac;
  --blue-soft: #e8f1ff;
  --mint: #a6e6c2;
  --mint-soft: #e8f8ed;
  --coral: #f0a18b;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(18, 35, 49, .06);
  --shadow-lg: 0 28px 80px rgba(18, 35, 49, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(21, 95, 208, .42); outline-offset: 4px; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 20; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; color: var(--white); background: var(--ink); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -.045em; font-size: 20px; }
.brand img { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--blue); }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 12px 17px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink) !important; background: var(--white); box-shadow: 0 4px 12px rgba(18, 35, 49, .03); transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { border-color: var(--blue); color: var(--blue) !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; }
.menu-toggle::before, .menu-toggle::after, .menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 4px; background: var(--ink); content: ''; transition: transform .2s ease, opacity .2s ease; }

.eyebrow, .section-kicker, .window-label, .micro-label {
  margin: 0;
  color: var(--blue);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-kicker { color: var(--muted); }
.display, h1, h2, h3, p { margin-top: 0; }
.display, h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -.045em; text-wrap: balance; }
h1, h2, h3 { color: var(--ink); }
h1 { margin-bottom: 23px; font-size: clamp(3.3rem, 6.8vw, 6rem); font-weight: 700; line-height: 1; }
h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1.02; }
.section-kicker + h2 { margin-top: 12px; }
h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.08; }
.lede { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.27rem); line-height: 1.55; }
.muted { color: var(--muted); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 0 19px; border: 1px solid var(--blue); border-radius: 999px; color: var(--white); background: var(--blue); cursor: pointer; font-size: 14px; font-weight: 700; box-shadow: 0 8px 18px rgba(21, 95, 208, .17); transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.button::after { content: '↗'; font-size: 17px; font-weight: 500; }
.button:hover { border-color: var(--blue-strong); background: var(--blue-strong); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(21, 95, 208, .23); }
.button-secondary { border-color: var(--line-strong); color: var(--ink); background: var(--white); box-shadow: none; }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--white); box-shadow: 0 8px 18px rgba(18, 35, 49, .07); }
.button-quiet { min-height: auto; padding: 0; border: 0; border-radius: 0; color: var(--blue); background: transparent; box-shadow: none; }
.button-quiet:hover { background: transparent; box-shadow: none; transform: none; }

.hero { padding: clamp(54px, 8vw, 102px) 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); align-items: center; gap: clamp(42px, 7vw, 94px); }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 660px; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy .lede { max-width: 530px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 29px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); content: ''; }
.hero-visual { position: relative; }
.hero-visual::before { position: absolute; z-index: -1; top: -70px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: var(--blue-soft); content: ''; filter: blur(1px); }
.hero-visual::after { position: absolute; z-index: -1; bottom: -55px; left: -65px; width: 150px; height: 150px; border: 1px solid var(--mint); border-radius: 50%; content: ''; }

.console { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.console-top { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 0 21px; border-bottom: 1px solid var(--line); background: var(--paper-warm); }
.console-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.console-brand::before { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 12px 0 0 var(--mint), 24px 0 0 var(--coral); content: ''; margin-right: 27px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: #25834d; font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.live-pill::before { width: 7px; height: 7px; border-radius: 50%; background: #57c881; box-shadow: 0 0 0 4px var(--mint-soft); content: ''; animation: pulse 2s ease-in-out infinite; }
.console-grid { display: grid; grid-template-columns: 165px minmax(0, 1fr); min-height: 430px; }
.console-side { padding: 24px 14px; border-right: 1px solid var(--line); background: #f2f6fa; }
.console-side .micro-label { margin: 0 10px 17px; color: #8b9ba7; font-size: 9px; }
.side-link { display: flex; align-items: center; gap: 9px; width: 100%; margin: 4px 0; padding: 11px 10px; border: 1px solid transparent; border-radius: 11px; color: var(--muted); font-size: 12px; font-weight: 600; }
.side-link::before { width: 7px; height: 7px; border: 1.5px solid currentColor; border-radius: 2px; content: ''; }
.side-link.active { color: var(--blue); border-color: #cfe0fb; background: var(--white); box-shadow: 0 6px 15px rgba(18, 35, 49, .05); }
.console-main { min-width: 0; padding: 28px 25px 23px; }
.console-main-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 21px; }
.console-main-head h3 { margin: 7px 0 0; font-size: 25px; }
.date-stamp { color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.call-card { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 8px 24px rgba(18, 35, 49, .05); }
.call-card-top, .call-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.caller { display: flex; min-width: 0; align-items: center; gap: 10px; }
.caller-avatar { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; border-radius: 11px; color: var(--white); background: var(--blue); font-size: 12px; font-weight: 700; }
.caller strong, .caller small { display: block; }
.caller strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.caller small { margin-top: 3px; color: #8b9ba7; font-family: 'IBM Plex Mono', monospace; font-size: 9px; }
.call-state { color: #268552; font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; }
.wave { display: flex; height: 44px; align-items: center; gap: 3px; margin: 18px 0 15px; padding: 0 2px; }
.wave i { display: block; width: 3px; height: 17px; border-radius: 4px; background: var(--blue); animation: wave 1.2s ease-in-out infinite alternate; }
.wave i:nth-child(3n) { height: 28px; background: var(--coral); animation-delay: -.35s; }
.wave i:nth-child(4n) { height: 11px; background: var(--mint); animation-delay: -.63s; }
.wave i:nth-child(5n) { animation-delay: -.15s; }
.call-card-bottom { padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.call-card-bottom b { color: var(--blue); font-size: 11px; }
.console-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.summary-item { padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-warm); }
.summary-item span, .summary-item strong { display: block; }
.summary-item span { color: var(--muted); font-size: 10px; }
.summary-item strong { margin-top: 4px; color: var(--ink); font-size: 12px; }
.console-note { display: flex; align-items: center; gap: 9px; margin-top: 15px; color: var(--muted); font-size: 11px; }
.console-note::before { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); content: ''; }

.trust-band { border-block: 1px solid var(--line); background: var(--paper-warm); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 25px 23px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-family: 'Space Grotesk', sans-serif; font-size: 25px; letter-spacing: -.05em; }
.trust-item span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.section { padding: clamp(82px, 10vw, 140px) 0; }
.section-sm { padding: 75px 0; }
.section-blue { background: var(--blue-soft); }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-kicker, .section-dark .lede, .section-dark .muted { color: #aebdc7; }
.section-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr); align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading .lede { justify-self: end; max-width: 450px; }

.feature-layout { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: 18px; }
.feature-list { display: grid; align-content: start; gap: 8px; }
.feature-tab { display: grid; grid-template-columns: 34px 1fr; gap: 12px; width: 100%; padding: 17px 16px; border: 1px solid transparent; border-radius: 14px; color: var(--muted); background: transparent; cursor: pointer; text-align: left; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.feature-tab:hover { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,.55); transform: translateX(2px); }
.feature-tab.is-active { border-color: var(--line-strong); color: var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-tab-no { color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.feature-tab strong, .feature-tab small { display: block; }
.feature-tab strong { font-size: 14px; }
.feature-tab small { margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.feature-stage { position: relative; min-height: 480px; overflow: hidden; padding: 30px; border: 1px solid #c9dafa; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-panel { display: none; height: 100%; animation: fade-in .3s ease both; }
.feature-panel.is-active { display: block; }
.feature-stage-top { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.feature-stage h3 { max-width: 620px; margin: 35px 0 11px; font-size: clamp(2.2rem, 4.3vw, 4.5rem); line-height: 1.02; }
.feature-stage p { max-width: 600px; margin-bottom: 28px; color: var(--muted); font-size: 15px; }
.routing-map { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 20px; min-height: 145px; margin-top: 24px; }
.routing-map::before { position: absolute; top: 50%; right: 12%; left: 12%; height: 1px; background: var(--line-strong); content: ''; }
.routing-node { position: relative; z-index: 1; display: grid; place-items: center; width: 106px; height: 106px; justify-self: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); background: var(--white); font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-align: center; }
.routing-node.accent { border-color: var(--blue); color: var(--white); background: var(--blue); box-shadow: 0 0 0 10px rgba(21,95,208,.1); }
.routing-node:last-child { border-color: var(--mint); background: var(--mint-soft); }
.feature-footer-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.feature-footer-note::before { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); content: ''; }
.calendar-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 16px; margin-top: 28px; }
.calendar-date { display: flex; min-height: 195px; flex-direction: column; justify-content: space-between; padding: 18px; border-radius: 17px; color: var(--white); background: var(--ink); }
.calendar-date small, .calendar-date span { color: #aebdc7; font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.calendar-date strong { font-family: 'Space Grotesk', sans-serif; font-size: 75px; letter-spacing: -.08em; line-height: .8; }
.slots { display: grid; gap: 8px; }
.slot { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-size: 12px; }
.slot b { color: #45a66d; font-size: 10px; }
.slot.selected { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.greeting-box { margin-top: 30px; padding: 24px; border-radius: 17px; background: var(--ink); }
.greeting-box .window-label { color: var(--mint); }
.greeting-box blockquote { margin: 20px 0 25px; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.35rem, 2.5vw, 2.25rem); letter-spacing: -.04em; line-height: 1.08; }
.language-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.language-card { display: flex; min-height: 130px; flex-direction: column; justify-content: space-between; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper-warm); }
.language-card strong { color: var(--blue); font-family: 'Space Grotesk', sans-serif; font-size: 37px; letter-spacing: -.08em; }
.language-card span { color: var(--muted); font-size: 12px; }

.section-outcomes { background: var(--paper-warm); }
.section-outcomes .section-heading h2 em, .outcome-copy h3 em { color: var(--blue); font-style: normal; }
.outcome-stage { display: grid; grid-template-columns: minmax(220px, .46fr) minmax(0, 1.54fr); overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.outcome-tabs { display: grid; align-content: center; gap: 8px; padding: 14px; border-right: 1px solid var(--line); background: var(--blue-soft); }
.outcome-tab { display: grid; grid-template-columns: 27px 1fr; gap: 10px; min-height: 102px; padding: 17px 14px; border: 1px solid transparent; border-radius: 14px; color: var(--muted); background: transparent; cursor: pointer; text-align: left; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.outcome-tab:hover { border-color: #bcd0ef; color: var(--ink); background: rgba(255,255,255,.55); transform: translateX(2px); }
.outcome-tab.is-active { border-color: var(--line-strong); color: var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
.outcome-tab > span { grid-row: 1 / span 2; color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.outcome-tab > strong, .outcome-tab > small { grid-column: 2; }
.outcome-tab strong { display: block; font-size: 14px; }
.outcome-tab small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.outcome-panels { min-width: 0; padding: 32px; }
.outcome-panel { display: grid; grid-template-columns: minmax(210px, .78fr) minmax(320px, 1.22fr); align-items: center; gap: 30px; animation: outcome-in .35s ease both; }
.outcome-panel[hidden] { display: none; }
.outcome-index { color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .1em; }
.outcome-copy h3 { margin: 19px 0 14px; font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.02; }
.outcome-copy p { max-width: 355px; margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.outcome-footnote { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; line-height: 1.5; text-transform: uppercase; }
.outcome-footnote::before { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--mint); content: ''; }
.outcome-ui { min-width: 0; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper-warm); }
.ui-window-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.ui-window-head strong, .ui-label { display: block; }
.ui-window-head strong { margin-top: 5px; font-size: 15px; }
.ui-label { color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .07em; line-height: 1.4; text-transform: uppercase; }
.ui-status { flex: 0 0 auto; color: #318a58; font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.ui-status.needs-human { color: #c66b54; }
.booking-body { display: grid; grid-template-columns: .78fr 1.22fr; gap: 13px; margin-top: 16px; }
.booking-date { display: flex; min-height: 176px; flex-direction: column; justify-content: space-between; padding: 16px; border-radius: 13px; color: var(--white); background: var(--ink); }
.booking-date small, .booking-date span { color: #b7c5cc; font-family: 'IBM Plex Mono', monospace; font-size: 9px; }
.booking-date strong { font-family: 'Space Grotesk', sans-serif; font-size: 67px; letter-spacing: -.09em; line-height: .8; }
.booking-slots { display: grid; align-content: start; gap: 7px; }
.booking-slots .ui-label { margin-bottom: 2px; }
.booking-slot { display: flex; min-height: 39px; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: var(--white); font-size: 12px; }
.booking-slot b { color: #3caa6b; font-family: 'IBM Plex Mono', monospace; font-size: 9px; font-weight: 500; text-transform: uppercase; }
.booking-slot.selected { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.booking-confirmation { display: flex; align-items: center; gap: 10px; margin-top: 13px; padding: 12px; border: 1px solid #b5e4c5; border-radius: 11px; background: var(--mint-soft); }
.confirmation-mark, .source-mark { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #28754a; background: var(--mint); font-size: 13px; font-weight: 700; }
.booking-confirmation strong, .booking-confirmation small, .answer-source strong, .answer-source .ui-label { display: block; }
.booking-confirmation strong { color: #28754a; font-size: 12px; }
.booking-confirmation small { margin-top: 2px; color: #4a8d62; font-size: 10px; }
.confirmation-time { margin-left: auto; color: #4a8d62; font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; }
.answer-thread { display: grid; gap: 11px; margin-top: 17px; }
.thread-line { max-width: 88%; padding: 12px 13px; border-radius: 12px; font-size: 12px; line-height: 1.45; }
.thread-line span { display: block; margin-bottom: 5px; color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .06em; }
.thread-line p { margin: 0; color: var(--muted); }
.thread-line.caller { justify-self: end; border: 1px solid var(--line); background: var(--white); }
.thread-line.assistant { border: 1px solid #b5e4c5; background: var(--mint-soft); }
.thread-line.assistant p { color: #2c6545; }
.answer-source { display: flex; align-items: center; gap: 10px; margin-top: 5px; padding: 12px; border-top: 1px solid var(--line); }
.answer-source strong { margin-top: 3px; color: var(--ink); font-size: 11px; }
.source-state { margin-left: auto; color: #318a58; font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; }
.handoff-body { margin-top: 19px; }
.confidence-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.confidence-row strong { color: var(--coral); font-size: 14px; }
.confidence-bar { height: 7px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: #e5eaed; }
.confidence-bar i { display: block; width: 42%; height: 100%; border-radius: inherit; background: var(--coral); }
.handoff-body > p { max-width: 420px; margin: 19px 0; color: var(--muted); font-size: 12px; }
.handoff-ticket { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px; border: 1px solid #f0c3b7; border-radius: 11px; background: #fff6f2; }
.handoff-ticket strong, .handoff-ticket small { display: block; }
.handoff-ticket strong { margin-top: 4px; color: var(--ink); font-size: 12px; }
.handoff-ticket small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.handoff-badge { flex: 0 0 auto; color: #b85e49; font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-align: right; text-transform: uppercase; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.industry-card { position: relative; min-height: 214px; display: flex; flex-direction: column; justify-content: space-between; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.industry-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.industry-card .card-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.industry-card p { max-width: 270px; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.industry-arrow { align-self: flex-end; color: var(--blue); font-size: 19px; }
.industry-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 17px; padding: 21px 23px; border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: var(--paper-warm); }
.industry-cta p { margin: 0; color: var(--muted); font-size: 13px; }

.workflow-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.workflow-copy h2 { max-width: 500px; }
.workflow-copy .lede { max-width: 500px; }
.workflow-list { position: relative; display: grid; gap: 0; }
.workflow-list::before { position: absolute; top: 27px; bottom: 27px; left: 23px; width: 1px; background: var(--line-strong); content: ''; }
.workflow-step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 17px; min-height: 122px; }
.step-dot { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue); background: var(--paper); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.workflow-step:last-child .step-dot { color: var(--ink); border-color: var(--mint); background: var(--mint-soft); }
.workflow-step h3 { margin: 2px 0 7px; font-size: 19px; }
.workflow-step p { max-width: 460px; margin: 0; color: var(--muted); font-size: 13px; }

.proof-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: 35px; align-items: stretch; padding: 27px; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow-lg); }
.proof-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 7px 0; }
.proof-copy h2 { margin-bottom: 15px; color: var(--white); }
.proof-copy .lede { color: #b7c5cc; }
.proof-copy .button { align-self: flex-start; margin-top: 28px; color: var(--ink); border-color: var(--mint); background: var(--mint); box-shadow: 0 8px 18px rgba(166,230,194,.13); }
.proof-copy .button:hover { border-color: #c8f5d9; background: #c8f5d9; }
.activity-panel { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); }
.activity-head { display: flex; justify-content: space-between; padding: 15px 17px; border-bottom: 1px solid rgba(255,255,255,.13); color: #b7c5cc; font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.activity-body { padding: 19px; }
.activity-stat { display: flex; align-items: end; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.activity-stat strong { color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 67px; letter-spacing: -.09em; line-height: .8; }
.activity-stat span { color: var(--mint); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.activity-feed { display: grid; gap: 12px; padding-top: 17px; }
.activity-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #d8e2e5; font-size: 12px; }
.activity-row span:last-child { color: var(--mint); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.price-card { display: flex; min-height: 340px; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 15px 42px rgba(21,95,208,.11); }
.price-card .plan-tag { align-self: flex-start; min-height: 22px; padding: 4px 8px; border-radius: 6px; color: var(--blue); background: var(--blue-soft); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.price-card h3 { margin-top: 19px; margin-bottom: 6px; font-size: 22px; }
.price-card > p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.price { margin-top: auto; margin-bottom: 17px; font-family: 'Space Grotesk', sans-serif; font-size: 38px; letter-spacing: -.08em; }
.price small { color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0; }
.price-list { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; color: var(--muted); font-size: 12px; list-style: none; }
.price-list li::before { margin-right: 8px; color: #3caa6b; content: '✓'; font-weight: 700; }
.price-card .button { width: 100%; }
.price-note { margin-top: 20px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }

.security-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.security-list { display: grid; gap: 9px; }
.security-item { display: grid; grid-template-columns: 39px 1fr; gap: 14px; align-items: start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.security-item:last-child { border-bottom: 0; }
.security-icon { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(166,230,194,.4); border-radius: 12px; color: var(--mint); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.security-item h3 { margin: 0 0 5px; color: var(--white); font-size: 17px; }
.security-item p { margin: 0; color: #b7c5cc; font-size: 13px; }
.security-card { padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.07); }
.security-card .micro-label { color: var(--mint); }
.security-card h3 { max-width: 330px; margin: 28px 0 15px; font-size: 30px; }
.security-card p { color: #b7c5cc; font-size: 14px; }
.boundary { display: flex; align-items: start; gap: 10px; margin-top: 23px; padding: 13px; border: 1px solid rgba(240,161,139,.43); border-radius: 11px; color: #ffd0c4; font-size: 12px; }
.boundary::before { width: 7px; height: 7px; flex: 0 0 auto; margin-top: 6px; border-radius: 50%; background: var(--coral); content: ''; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 35px 1fr 25px; align-items: center; gap: 15px; padding: 21px 0; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--blue); content: '+'; font-size: 22px; font-weight: 400; text-align: right; }
.faq-list details[open] summary::after { content: '−'; }
.faq-label { color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.faq-list summary strong { font-size: 16px; letter-spacing: -.025em; }
.faq-answer { max-width: 670px; margin: -5px 50px 22px; color: var(--muted); font-size: 14px; }

.cta-panel { position: relative; overflow: hidden; padding: 70px 55px; border-radius: var(--radius-lg); background: var(--blue); box-shadow: var(--shadow-lg); }
.cta-panel::after { position: absolute; right: -70px; bottom: -110px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.08), 0 0 0 72px rgba(255,255,255,.06); content: ''; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 700px; color: var(--white); }
.cta-panel p { position: relative; z-index: 1; max-width: 520px; color: #d9e8ff; }
.cta-panel .button { position: relative; z-index: 1; margin-top: 13px; color: var(--ink); border-color: var(--mint); background: var(--mint); box-shadow: none; }
.cta-panel .button:hover { border-color: #c8f5d9; background: #c8f5d9; }

.footer { padding: 29px 0 42px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer small { color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 19px; color: var(--muted); font-size: 12px; }
.footer-nav a:hover { color: var(--blue); }

/* Inner pages */
.page-hero { padding: 86px 0 78px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 60px; }
.page-hero h1 { max-width: 690px; margin-top: 18px; font-size: clamp(3.3rem, 7vw, 6.2rem); }
.page-hero .lede { justify-self: end; }
.page-hero-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.page-hero-note::before { width: 28px; height: 1px; background: var(--blue); content: ''; }
.page-hero-grid--visual { grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: clamp(40px, 6vw, 88px); }
.page-hero-grid--visual .page-hero-copy .lede { justify-self: start; max-width: 560px; margin-top: 31px; }
.page-hero-visual { position: relative; overflow: hidden; min-height: 365px; padding: 20px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--blue-soft); box-shadow: var(--shadow-lg); }
.page-hero-visual::before { position: absolute; top: 55px; right: -70px; width: 260px; height: 260px; border: 1px solid rgba(21,95,208,.18); border-radius: 50%; content: ''; }
.page-hero-visual::after { position: absolute; bottom: -90px; left: -60px; width: 220px; height: 220px; border: 1px solid rgba(21,95,208,.14); border-radius: 50%; content: ''; }
.hero-visual-chrome { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(95,112,125,.25); color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual-status { display: inline-flex; align-items: center; gap: 7px; color: #2d8752; }
.hero-visual-status::before { width: 7px; height: 7px; border-radius: 50%; background: #57c881; box-shadow: 0 0 0 4px var(--mint-soft); content: ''; animation: pulse 2s ease-in-out infinite; }
.sector-flow { position: relative; z-index: 1; display: grid; gap: 17px; margin-top: 28px; }
.flow-context, .flow-outcome { padding: 18px; border: 1px solid rgba(196,210,218,.95); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 10px 24px rgba(18,35,49,.06); }
.hero-visual-label { display: block; margin-bottom: 13px; color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.flow-context strong, .flow-outcome strong { display: block; color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 20px; letter-spacing: -.04em; }
.flow-context p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.flow-path { position: relative; display: flex; align-items: center; justify-content: space-between; height: 16px; padding-inline: 18px; }
.flow-path::before { position: absolute; top: 50%; right: 37px; left: 37px; height: 1px; background: rgba(21,95,208,.35); content: ''; }
.flow-path i { position: relative; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; background: var(--blue-soft); }
.flow-path i:nth-child(2) { width: 12px; height: 12px; background: var(--blue); box-shadow: 0 0 0 5px rgba(21,95,208,.12); }
.flow-outcome { display: flex; align-items: center; gap: 12px; border-color: rgba(166,230,194,.9); background: rgba(255,255,255,.96); }
.flow-check, .signal-check { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 11px; color: #28754a; background: var(--mint); font-weight: 700; }
.flow-outcome small, .security-signal small { display: block; margin-top: 4px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: .02em; text-transform: uppercase; }
.hero-sector-tabs { position: relative; z-index: 1; display: flex; gap: 7px; margin-top: 22px; }
.hero-sector-tabs span { padding: 7px 10px; border: 1px solid rgba(196,210,218,.8); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.45); font-size: 10px; }
.hero-sector-tabs .is-active { border-color: var(--blue); color: var(--blue); background: var(--white); }
.security-hero-visual { background: var(--paper-warm); }
.security-hero-visual::before { top: 75px; right: -80px; border-color: rgba(166,230,194,.4); }
.security-hero-visual::after { border-color: rgba(21,95,208,.2); }
.guard-map { position: relative; z-index: 1; display: grid; min-height: 240px; margin-top: 14px; place-items: center; }
.guard-map::before, .guard-map::after { position: absolute; width: 190px; height: 190px; border: 1px solid rgba(21,95,208,.28); border-radius: 50%; content: ''; animation: guard-breathe 4s ease-in-out infinite; }
.guard-map::after { width: 120px; height: 120px; border-color: rgba(166,230,194,.8); animation-delay: -2s; }
.guard-core { position: relative; z-index: 2; display: grid; width: 106px; height: 106px; place-content: center; justify-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: 0 0 0 9px rgba(21,95,208,.1), 0 18px 35px rgba(21,95,208,.22); animation: core-float 4s ease-in-out infinite; }
.guard-core span { color: var(--mint); font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .12em; }
.guard-core strong { margin-top: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 20px; letter-spacing: -.04em; }
.guard-core small { margin-top: 3px; color: #d9e8ff; font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.guard-orbit { position: absolute; z-index: 3; padding: 7px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.92); box-shadow: 0 6px 14px rgba(18,35,49,.06); font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .02em; text-transform: uppercase; }
.guard-orbit--one { top: 24px; left: 2px; }
.guard-orbit--two { right: 3px; bottom: 37px; }
.guard-orbit--three { bottom: 9px; left: 47px; border-color: rgba(166,230,194,.95); color: #28754a; }
.security-signal { position: relative; z-index: 1; display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid rgba(166,230,194,.85); border-radius: 14px; background: rgba(255,255,255,.82); }
.security-signal strong { display: block; color: var(--ink); font-size: 13px; }
@keyframes guard-breathe { 0%, 100% { transform: scale(.98); opacity: .7; } 50% { transform: scale(1.03); opacity: 1; } }
@keyframes core-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.pricing-hero-visual { background: linear-gradient(135deg, var(--blue-soft), var(--paper-warm)); }
.pricing-preview { position: relative; z-index: 1; margin-top: 32px; padding: 20px; border: 1px solid rgba(196,210,218,.95); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 14px 30px rgba(18,35,49,.08); }
.pricing-preview-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.pricing-preview-head .hero-visual-label { margin-bottom: 0; }
.pricing-preview-head strong { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 27px; letter-spacing: -.05em; line-height: 1; }
.pricing-track { position: relative; display: flex; align-items: center; justify-content: space-between; height: 34px; margin: 23px 0 21px; }
.pricing-track::before { position: absolute; top: 50%; right: 0; left: 0; height: 6px; border-radius: 99px; background: var(--blue-soft); content: ''; transform: translateY(-50%); }
.pricing-track-fill { position: absolute; top: 50%; left: 0; width: 44%; height: 6px; transform: translateY(-50%); border-radius: 99px; background: var(--blue); }
.pricing-track i { position: relative; width: 12px; height: 12px; border: 3px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.pricing-track i:nth-of-type(2) { width: 17px; height: 17px; box-shadow: 0 0 0 6px rgba(21,95,208,.12); }
.pricing-preview-price { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 0; border-block: 1px solid var(--line); }
.pricing-preview-price .hero-visual-label { margin-bottom: 0; }
.pricing-preview-price strong { display: block; margin-top: 6px; color: var(--blue); font-family: 'Space Grotesk', sans-serif; font-size: 42px; letter-spacing: -.07em; line-height: .95; }
.pricing-preview-price small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.pricing-preview-arrow { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue); background: var(--white); font-size: 19px; }
.pricing-preview-foot { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.pricing-preview-foot span { padding: 7px 9px; border-radius: 7px; color: #28754a; background: var(--mint-soft); font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; }
.demo-hero-visual { border-color: rgba(201,218,250,.35); background: linear-gradient(145deg, var(--ink), #19395f 68%, var(--blue)); }
.demo-hero-visual::before { border-color: rgba(255,255,255,.14); }
.demo-hero-visual::after { border-color: rgba(166,230,194,.22); }
.demo-hero-visual .hero-visual-chrome { border-color: rgba(255,255,255,.2); color: #c9dafa; }
.demo-hero-visual .hero-visual-status { color: var(--mint); }
.demo-hero-stack { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 25px; }
.demo-hero-callbar { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.09); }
.demo-hero-callbar .hero-visual-label { margin-bottom: 7px; color: var(--mint); }
.demo-hero-callbar strong { display: block; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 17px; letter-spacing: -.03em; }
.demo-hero-duration { color: #c9dafa; font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.demo-hero-bubble { max-width: 86%; padding: 12px 14px; border-radius: 14px; animation: rise-in .6s ease both; }
.demo-hero-bubble span { display: block; margin-bottom: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.demo-hero-bubble p { margin: 0; font-size: 12px; line-height: 1.4; }
.demo-hero-bubble--caller { justify-self: end; color: var(--white); background: var(--blue); animation-delay: .08s; }
.demo-hero-bubble--caller span { color: #c9dafa; }
.demo-hero-bubble--assistant { justify-self: start; border: 1px solid rgba(196,210,218,.9); color: var(--ink); background: rgba(255,255,255,.94); animation-delay: .18s; }
.demo-hero-bubble--assistant span { color: var(--blue); }
.demo-hero-outcome { display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid rgba(166,230,194,.65); border-radius: 13px; background: rgba(232,248,237,.13); animation: rise-in .6s .28s ease both; }
.demo-hero-outcome .flow-check { width: 31px; height: 31px; border-radius: 10px; color: #28754a; }
.demo-hero-outcome strong { display: block; color: var(--white); font-size: 13px; }
.demo-hero-outcome small { display: block; margin-top: 3px; color: #c9e8d4; font-family: 'IBM Plex Mono', monospace; font-size: 9px; }
.demo-hero-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.demo-hero-tags span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #dce8ff; background: rgba(255,255,255,.08); font-family: 'IBM Plex Mono', monospace; font-size: 8px; text-transform: uppercase; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.solution-card { min-height: 290px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.solution-card h2 { margin: 38px 0 11px; font-size: 30px; }
.solution-card p { max-width: 450px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.solution-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.solution-card li { padding: 6px 9px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.solution-card .card-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--blue); background: var(--blue-soft); font-family: 'IBM Plex Mono', monospace; font-size: 11px; }
.call-example { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.call-example-intro { padding: 34px; color: var(--white); background: var(--ink); }
.call-example-intro h2 { margin-top: 32px; color: var(--white); font-size: 34px; }
.call-example-intro p { color: #b7c5cc; font-size: 14px; }
.call-example-intro .button { margin-top: 20px; color: var(--ink); border-color: var(--mint); background: var(--mint); box-shadow: none; }
.transcript { padding: 27px; }
.transcript-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.transcript-head strong { font-family: 'Space Grotesk', sans-serif; font-size: 17px; }
.transcript-head span { color: #328d59; font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; }
.transcript-lines { display: grid; gap: 16px; margin-top: 20px; }
.transcript-line { display: grid; grid-template-columns: 65px 1fr; gap: 14px; align-items: start; font-size: 13px; }
.transcript-line b { color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.transcript-line p { margin: 0; color: var(--muted); }
.transcript-outcome { margin-top: 22px; padding: 13px; border-radius: 11px; background: var(--mint-soft); color: #28754a; font-size: 12px; font-weight: 600; }

.calculator { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; padding: 26px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.calculator-copy { padding: 13px; }
.calculator-copy h2 { margin-top: 21px; font-size: 34px; }
.calculator-copy p { color: var(--muted); font-size: 14px; }
.calc-controls { display: grid; gap: 18px; padding: 23px; border-radius: var(--radius-md); background: var(--paper-warm); }
.calc-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 12px; }
.calc-value { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; }
input[type='range'] { width: 100%; accent-color: var(--blue); cursor: pointer; }
.calc-result { display: flex; align-items: end; justify-content: space-between; gap: 15px; padding-top: 16px; border-top: 1px solid var(--line); }
.calc-result strong { color: var(--blue); font-family: 'Space Grotesk', sans-serif; font-size: 40px; letter-spacing: -.08em; line-height: .95; }
.calc-result span { max-width: 120px; color: var(--muted); font-size: 11px; text-align: right; }
.plan-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.plan-row { display: grid; grid-template-columns: 1fr 1fr 1fr 140px; align-items: center; gap: 18px; padding: 21px 23px; border-bottom: 1px solid var(--line); }
.plan-row:last-child { border-bottom: 0; }
.plan-row.featured { color: var(--white); background: var(--blue); }
.plan-row h3 { margin: 0; font-size: 19px; }
.plan-row.featured h3, .plan-row.featured .plan-meta, .plan-row.featured .plan-price { color: var(--white); }
.plan-meta { color: var(--muted); font-size: 12px; }
.plan-price { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 26px; letter-spacing: -.06em; }
.plan-price small { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0; }
.plan-row .button { min-height: 43px; padding-inline: 14px; font-size: 12px; }
.plan-row.featured .button { color: var(--blue); border-color: var(--white); background: var(--white); }
.billing-note { margin-top: 13px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.security-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.security-tile { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.security-tile h3 { margin-top: 40px; font-size: 21px; }
.security-tile p { color: var(--muted); font-size: 13px; }
.security-tile .tile-mark { display: inline-flex; min-width: 32px; align-items: center; justify-content: center; padding: 7px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.demo-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 16px; padding: 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.demo-controls { display: flex; flex-direction: column; padding: 25px; border-radius: var(--radius-md); background: var(--ink); }
.demo-controls h2 { margin-top: 28px; color: var(--white); font-size: 34px; }
.demo-controls p { color: #b7c5cc; font-size: 14px; }
.demo-scenarios { display: grid; gap: 6px; margin-top: 26px; }
.demo-scenario { display: flex; min-height: 44px; align-items: center; justify-content: flex-start; padding: 0 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; color: #b7c5cc; background: transparent; cursor: pointer; font-size: 12px; text-align: left; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease; }
.demo-scenario:hover { border-color: rgba(166,230,194,.55); color: var(--white); transform: translateX(2px); }
.demo-scenario.is-active { border-color: var(--mint); color: var(--ink); background: var(--mint); }
.demo-actions { margin-top: auto; padding-top: 35px; }
.demo-actions .button { width: 100%; color: var(--ink); border-color: var(--mint); background: var(--mint); box-shadow: none; }
.demo-actions small { display: block; margin-top: 11px; color: #82949f; font-family: 'IBM Plex Mono', monospace; font-size: 9px; line-height: 1.5; text-align: center; }
.demo-screen { min-width: 0; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-warm); }
.demo-screen-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.demo-screen-head h3 { margin: 0; font-size: 19px; }
.demo-screen-head span { color: var(--muted); font-family: 'IBM Plex Mono', monospace; font-size: 10px; }
.demo-log { display: grid; gap: 11px; min-height: 290px; align-content: end; padding-top: 24px; }
.demo-message { max-width: 84%; padding: 12px 14px; border-radius: 13px; font-size: 13px; line-height: 1.45; animation: rise-in .35s ease both; }
.demo-message.ai { justify-self: start; border: 1px solid var(--line); background: var(--white); }
.demo-message.caller { justify-self: end; color: var(--white); background: var(--blue); }
.demo-result { display: none; margin-top: 19px; padding: 14px; border-radius: 12px; color: #28754a; background: var(--mint-soft); font-size: 12px; }
.demo-result.show { display: block; animation: fade-in .3s ease both; }

.reveal { animation: rise-in .7s ease both; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }

@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--mint-soft); } 50% { box-shadow: 0 0 0 7px rgba(232,248,237,.3); } }
@keyframes wave { from { transform: scaleY(.7); } to { transform: scaleY(1.16); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes rise-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes outcome-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

@media (max-width: 1000px) {
  .hero-grid, .security-grid, .workflow-grid { gap: 45px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; }
  .hero-visual { max-width: 780px; }
  .section-heading, .page-hero-grid { grid-template-columns: 1fr; align-items: start; gap: 19px; }
  .page-hero-grid.page-hero-grid--visual { grid-template-columns: 1fr; }
  .section-heading .lede, .page-hero .lede { justify-self: start; }
  .workflow-grid, .security-grid { grid-template-columns: 1fr; }
  .workflow-copy { max-width: 690px; }
  .security-list { order: 2; }
  .security-card { order: 1; max-width: 690px; }
  .outcome-stage { grid-template-columns: 1fr; }
  .outcome-tabs { grid-template-columns: repeat(3, 1fr); align-content: stretch; border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-tab { min-height: 90px; }
  .outcome-tab:hover { transform: translateY(-2px); }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .site-header { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; z-index: 10; top: 72px; right: 16px; left: 16px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 9px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-lg); }
  .nav-links.is-open { display: flex; animation: fade-in .2s ease both; }
  .nav-links a { padding: 12px; }
  .nav-cta { justify-content: center; margin-top: 5px; }
  .hero { padding: 52px 0 60px; }
  h1 { font-size: clamp(3.15rem, 15vw, 5.1rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .console-grid { grid-template-columns: 1fr; }
  .console-side { display: none; }
  .console-main { padding: 22px 17px 18px; }
  .console-top { padding-inline: 15px; }
  .console-brand { font-size: 9px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item, .trust-item:first-child { padding: 18px 12px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-list { display: grid; overflow: visible; padding-bottom: 0; }
  .feature-tab { min-width: 0; }
  .feature-stage { min-height: 450px; padding: 21px; }
  .feature-stage h3 { margin-top: 27px; font-size: 2.35rem; }
  .routing-map { gap: 6px; }
  .routing-node { width: 76px; height: 76px; font-size: 9px; }
  .routing-map::before { right: 9%; left: 9%; }
  .calendar-layout { grid-template-columns: 1fr; }
  .calendar-date { min-height: 155px; }
  .calendar-date strong { font-size: 60px; }
  .language-card { min-height: 100px; }
  .outcome-tabs { grid-template-columns: 1fr; padding: 10px; }
  .outcome-tab { min-height: 74px; grid-template-columns: 30px 1fr; padding: 13px 12px; }
  .outcome-tab small { margin-top: 4px; }
  .outcome-panels { padding: 21px; }
  .outcome-panel { grid-template-columns: 1fr; gap: 25px; }
  .outcome-copy h3 { margin-top: 15px; font-size: 2.35rem; }
  .outcome-copy p { max-width: none; }
  .outcome-ui { padding: 14px; }
  .booking-body { grid-template-columns: 1fr; }
  .booking-date { min-height: 135px; }
  .booking-date strong { font-size: 57px; }
  .handoff-ticket { align-items: flex-start; flex-direction: column; }
  .handoff-badge { text-align: left; }
  .industry-grid, .price-grid, .content-grid, .security-columns { grid-template-columns: 1fr; }
  .industry-card { min-height: 190px; }
  .industry-cta { align-items: start; flex-direction: column; }
  .proof-card { grid-template-columns: 1fr; padding: 21px; }
  .proof-copy .button { margin-top: 22px; }
  .price-card { min-height: 0; }
  .faq-list summary { grid-template-columns: 25px 1fr 18px; gap: 10px; }
  .faq-answer { margin-left: 35px; }
  .cta-panel { padding: 50px 24px; }
  .footer-grid { align-items: start; flex-direction: column; }
  .page-hero { padding: 56px 0 53px; }
  .page-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .page-hero-grid--visual { gap: 32px; }
  .page-hero-grid--visual .page-hero-copy .lede { margin-top: 25px; }
  .page-hero-visual { min-height: 320px; padding: 16px; }
  .flow-context, .flow-outcome { padding: 15px; }
  .flow-context strong, .flow-outcome strong { font-size: 17px; }
  .guard-map { min-height: 205px; }
  .guard-map::before { width: 165px; height: 165px; }
  .guard-map::after { width: 105px; height: 105px; }
  .guard-orbit--one { left: -3px; }
  .guard-orbit--two { right: -3px; }
  .guard-orbit--three { left: 28px; }
  .pricing-preview { margin-top: 25px; padding: 16px; }
  .pricing-preview-head strong { font-size: 23px; }
  .pricing-preview-price strong { font-size: 36px; }
  .call-example, .calculator, .demo-shell { grid-template-columns: 1fr; }
  .call-example-intro { padding: 25px; }
  .call-example-intro h2 { margin-top: 25px; }
  .plan-table { display: grid; gap: 10px; overflow: visible; border: 0; background: transparent; }
  .plan-row { min-width: 0; grid-template-columns: 1fr; gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); }
  .plan-row .button { width: 100%; }
  .demo-controls { min-height: 360px; }
  .demo-scenarios { margin-top: 22px; }
  .demo-actions { padding-top: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; animation: none; }
}
