:root {
  --blue: #075bff;
  --blue-dark: #0039a9;
  --blue-deep: #001f61;
  --blue-soft: #eaf2ff;
  --mint: #31d7c4;
  --orange: #ff7900;
  --ink: #0d162a;
  --ink-soft: #26334c;
  --muted: #68748b;
  --line: #dce4ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --success: #12a879;
  --shadow-sm: 0 12px 32px rgba(13, 22, 42, .08);
  --shadow-lg: 0 35px 90px rgba(0, 39, 117, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 750;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.015em;
}

h1 em,
h2 em {
  font-style: italic;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7vw, 6.9rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  letter-spacing: -.022em;
}

em {
  color: var(--blue);
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(7, 91, 255, .42);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(86px, 10vw, 148px);
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading > p:last-child,
.split-heading > p,
.rules-copy > p,
.assistant-copy > p,
.standard-copy > p,
.security-copy > p,
.faq-heading > p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.centered {
  text-align: center;
}

.centered > p:last-child {
  max-width: 730px;
  margin-inline: auto;
}

.narrow-heading {
  max-width: 850px;
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.centered .eyebrow {
  justify-content: center;
}

.eyebrow-light {
  color: #a8c9ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(7, 91, 255, .2);
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 34px rgba(7, 91, 255, .3);
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .9rem;
}

.button-large {
  min-height: 58px;
  padding: 17px 26px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.button-light:hover {
  color: var(--blue-deep);
  background: #ecf3ff;
}

.button-outline {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.text-link:hover {
  color: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 239, .82);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.16rem;
  letter-spacing: -.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  flex: 1 1 auto;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 20px;
  left: 20px;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 20px 20px;
  box-shadow: var(--shadow-sm);
}

.mobile-menu nav > a:not(.button) {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding-block: clamp(58px, 6vw, 92px) 72px;
  background:
    radial-gradient(circle at 80% 14%, rgba(7, 91, 255, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(7, 91, 255, .13);
  box-shadow: inset 0 0 0 70px rgba(7, 91, 255, .025), inset 0 0 0 140px rgba(7, 91, 255, .02);
}

.hero-glow-two {
  bottom: -210px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: rgba(49, 215, 196, .08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-claim {
  display: block;
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
}

.hero h1 em {
  position: relative;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 8px;
  background: var(--mint);
  border-radius: 999px;
  content: "";
  transform: rotate(-1.5deg);
}

.hero-punchline {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.orange-dot {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 121, 0, .12);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.mobile-shell {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: min(330px, 82vw);
  min-height: 590px;
  padding: 20px 20px 18px;
  background: #f7f9fc;
  border: 10px solid var(--ink);
  border-radius: 52px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateX(-50%) rotate(2.5deg);
}

.mobile-shell::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 86px;
  height: 22px;
  background: var(--ink);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.mobile-status {
  display: flex;
  justify-content: space-between;
  margin: 0 4px 48px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
}

.incoming-label {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .09em;
}

.caller-avatar {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 850;
}

.caller-name,
.caller-company,
.called-number {
  display: block;
}

.caller-name {
  font-size: 1.35rem;
}

.caller-company {
  color: var(--muted);
  font-size: .88rem;
}

.called-number {
  margin-top: 10px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 750;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 58px;
  margin: 32px 0 25px;
}

.call-actions span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
}

.call-actions svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.decline {
  background: #ef4d63;
  transform: rotate(135deg);
}

.accept {
  background: var(--success);
}

.ai-takeover {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.ai-takeover small,
.ai-takeover strong {
  display: block;
}

.ai-takeover small {
  color: var(--muted);
  font-size: .71rem;
}

.ai-takeover strong {
  font-size: .78rem;
  line-height: 1.35;
}

.ai-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
}

.ai-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.fixed-number-chip,
.ai-result-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border: 1px solid rgba(220, 228, 239, .85);
  box-shadow: var(--shadow-sm);
}

.fixed-number-chip {
  top: 76px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 750;
}

.fixed-number-chip span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.ai-result-card {
  right: -30px;
  bottom: 36px;
  width: 260px;
  padding: 18px;
  border-radius: 20px;
}

.ai-result-card > strong,
.ai-result-card > span {
  display: block;
}

.ai-result-card > strong {
  margin: 9px 0 3px;
  font-size: .92rem;
}

.ai-result-card > span {
  color: var(--muted);
  font-size: .76rem;
}

.result-top {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(49, 215, 196, .16);
}

.result-action {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--success);
  font-size: .75rem;
  font-weight: 750;
}

.result-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Proof */
.proof-bar {
  color: var(--white);
  background: var(--blue-deep);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  display: grid;
  gap: 2px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.proof-grid strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.proof-grid span {
  color: #aebedb;
  font-size: .78rem;
}

/* Feature cards */
.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover {
  border-color: rgba(7, 91, 255, .35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #9ba8ba;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 16px;
}

.feature-icon svg,
.step-visual svg,
.human-icon svg,
.language-line svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card-accent {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.feature-card-accent .feature-number,
.feature-card-accent p {
  color: #cbdcff;
}

.feature-card-accent .feature-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .15);
}

/* Steps */
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 34px 42px 12px 0;
  border-top: 1px solid var(--line);
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: -1px;
  right: 26px;
  width: 78px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.step-index {
  position: absolute;
  top: -16px;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 5px solid var(--soft);
  border-radius: 50%;
  font-size: .67rem;
  font-weight: 850;
}

.step-visual {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 20px 0 30px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.steps p {
  margin: 0;
  color: var(--muted);
}

/* Signature */
.signature-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(7, 91, 255, .38), transparent 34%),
    var(--ink);
}

.signature-section::after {
  position: absolute;
  right: -160px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 85px rgba(255, 255, 255, .018), inset 0 0 0 170px rgba(255, 255, 255, .015);
  content: "";
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.signature-copy h2 em,
.human-card h2 em,
.trial-card h2 em {
  color: var(--mint);
}

.signature-copy > p:not(.eyebrow) {
  color: #b6c2d6;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-top: 2px;
  padding: 3px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.light-list {
  color: #e7edfa;
}

.light-list svg {
  color: var(--ink);
  background: var(--mint);
}

.callback-flow {
  padding: 34px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.flow-row {
  position: relative;
  display: grid;
  grid-template-columns: 50px 18px 1fr;
  gap: 14px;
  min-height: 96px;
  padding-bottom: 24px;
}

.flow-row:not(:last-child)::after {
  position: absolute;
  top: 19px;
  bottom: -3px;
  left: 58px;
  width: 1px;
  background: rgba(255, 255, 255, .16);
  content: "";
}

.flow-row:last-child {
  min-height: auto;
  padding-bottom: 0;
}

.flow-time {
  color: #8e9db4;
  font-size: .76rem;
  font-weight: 750;
}

.flow-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 4px;
  background: #68748b;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #68748b;
}

.flow-row-active .flow-dot {
  background: var(--blue);
  box-shadow: 0 0 0 2px var(--blue), 0 0 22px rgba(7, 91, 255, .8);
}

.flow-row-done .flow-dot {
  background: var(--mint);
  box-shadow: 0 0 0 2px var(--mint);
}

.flow-row strong,
.flow-row small {
  display: block;
}

.flow-row strong {
  margin-bottom: 4px;
}

.flow-row small {
  color: #9eabc0;
  line-height: 1.5;
}

.flow-row-done > div {
  padding: 15px;
  margin-top: -15px;
  background: rgba(49, 215, 196, .09);
  border-left: 2px solid var(--mint);
  border-radius: 0 12px 12px 0;
}

/* Rules */
.rules-grid,
.standard-grid,
.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.rules-demo,
.conversation-card,
.live-conversation,
.standard-dashboard {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.demo-header,
.conversation-top,
.live-caller {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.demo-header > div:nth-child(2),
.conversation-top > div:nth-child(2),
.live-caller > div:nth-child(2) {
  display: grid;
  flex: 1;
}

.demo-header small,
.conversation-top small,
.live-caller small {
  color: var(--muted);
}

.demo-header > span,
.conversation-top > span {
  padding: 6px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 750;
}

.contact-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 50%;
  font-weight: 800;
}

.contact-avatar.alt {
  color: #815021;
  background: #fff0e3;
}

.demo-rule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .72fr);
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.demo-rule > div {
  display: grid;
}

.demo-rule small {
  color: var(--muted);
}

.demo-rule > span {
  padding: 10px 12px;
  color: var(--ink-soft);
  background: var(--soft);
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
}

.demo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
}

.toggle-on {
  position: relative;
  width: 38px;
  height: 22px;
  background: var(--blue);
  border-radius: 999px;
}

.toggle-on::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.rules-copy .check-list,
.assistant-copy .check-list {
  margin-top: 30px;
}

/* Memory */
.memory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: center;
}

.conversation-summary {
  padding: 28px 30px;
}

.conversation-summary small,
.conversation-actions small,
.memory-points p {
  color: var(--muted);
}

.conversation-summary small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.conversation-summary p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
}

.conversation-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.conversation-actions > div {
  display: flex;
  gap: 9px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.conversation-actions > div:last-child {
  border-right: 0;
}

.conversation-actions svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--success);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.conversation-actions span {
  display: grid;
}

.conversation-actions strong {
  font-size: .78rem;
}

.conversation-actions small {
  font-size: .7rem;
}

.memory-points {
  display: grid;
  gap: 18px;
}

.memory-points article,
.security-points article {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.memory-points .feature-icon,
.security-points .feature-icon {
  margin: 0;
  flex: 0 0 52px;
}

.memory-points h3,
.security-points h3 {
  margin: 2px 0 7px;
  font-size: 1.04rem;
  letter-spacing: -.02em;
}

.memory-points p,
.security-points p {
  margin: 0;
  font-size: .86rem;
}

/* Assistant */
.assistant-section {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.assistant-grid {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.language-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 0;
  padding: 14px 16px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 14px;
  font-size: .86rem;
  font-weight: 700;
}

.language-line svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--blue);
}

.live-conversation {
  padding-bottom: 22px;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  color: var(--white);
  background: var(--ink);
}

.live-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin: 0 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.message > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #e6f7f1;
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 800;
}

.caller-message > span {
  background: #fff0e3;
}

.message p {
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--blue);
  color: var(--ink-soft);
  font-size: .88rem;
}

.message p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.understanding {
  margin: 22px 24px 0;
  padding: 20px;
  background: var(--soft);
  border-radius: 16px;
}

.understanding > small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.understanding > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.understanding > div:last-child {
  border-bottom: 0;
}

.understanding span {
  color: var(--muted);
}

/* Shared standard */
.shared-standard-section {
  color: var(--white);
  background: var(--blue-deep);
}

.standard-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
}

.standard-dashboard {
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .25);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top > div,
.dashboard-top > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dashboard-top > span {
  color: var(--success);
  font-size: .75rem;
  font-weight: 750;
}

.dashboard-top i,
.team-list i {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

.brand-symbol.mini {
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
}

.dashboard-columns > div {
  padding: 22px;
}

.dashboard-columns > div:first-child {
  border-right: 1px solid var(--line);
}

.dashboard-columns small {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.queue-item > div:nth-child(2) {
  display: grid;
  flex: 1;
}

.queue-item > span {
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 750;
}

.team-list p {
  display: grid;
  grid-template-columns: 1fr 8px auto;
  gap: 7px;
  align-items: center;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
}

.team-list p span {
  color: var(--ink);
  font-weight: 700;
}

.team-list i.busy {
  background: var(--orange);
}

.standard-copy em {
  color: var(--mint);
}

.standard-copy > p:not(.eyebrow) {
  color: #b9c6db;
}

.device-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.device-list span {
  padding: 8px 12px;
  color: #d7e2f4;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}

/* Human, offers and trial */
.human-section {
  padding-bottom: 0;
}

.human-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(49, 215, 196, .26), transparent 26%),
    var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.human-card h2 {
  max-width: 850px;
}

.human-card p:not(.eyebrow) {
  max-width: 800px;
  color: #d5e2ff;
}

.human-icon {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--mint);
  border-radius: 30px;
  transform: rotate(-5deg);
}

.human-icon svg {
  width: 45px;
  height: 45px;
}

.human-card .button {
  margin-top: 15px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.offer-card > div:first-of-type {
  min-height: 150px;
}

.offer-card h3 {
  margin: 12px 0 8px;
  font-size: 1.8rem;
}

.offer-card p {
  color: var(--muted);
}

.offer-level {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .11em;
}

.compact-list {
  gap: 13px;
  margin: 4px 0 30px;
  font-size: .87rem;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.offer-featured p {
  color: #acb9cf;
}

.offer-featured .offer-level {
  color: var(--mint);
}

.offer-featured .check-list svg {
  color: var(--ink);
  background: var(--mint);
}

.recommended {
  position: absolute;
  top: -15px;
  left: 30px;
  padding: 6px 12px;
  color: var(--blue-deep);
  background: var(--mint);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
}

.pricing-note {
  margin: 32px auto 0;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}

.trial-section {
  padding-top: 0;
}

.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: 70px;
  align-items: center;
  padding: clamp(44px, 7vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(49, 215, 196, .2), transparent 30%),
    var(--blue-deep);
  border-radius: var(--radius-lg);
}

.trial-copy > p:not(.eyebrow) {
  color: #c0cce0;
}

.trial-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-facts li {
  display: grid;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.trial-facts li:nth-child(2n) {
  border-right: 0;
}

.trial-facts li:nth-child(n+3) {
  border-bottom: 0;
}

.trial-facts strong {
  color: var(--mint);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.trial-facts span {
  color: #aebbd0;
  font-size: .78rem;
}

/* Security and pilots */
.security-section {
  background: var(--soft);
}

.security-grid {
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.certifications span {
  padding: 10px 14px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
}

.security-points {
  display: grid;
  gap: 16px;
}

.security-points p {
  color: var(--muted);
}

.pilots-section {
  padding-block: 78px;
}

.quote-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.quote-wall li {
  display: grid;
  gap: 3px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.quote-wall q {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  quotes: "« " " »";
}

.quote-wall li span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}

/* FAQ */
.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 44px 24px 0;
  color: var(--muted);
}

/* Final CTA and footer */
.final-cta {
  padding-block: clamp(72px, 9vw, 110px);
  color: var(--white);
  background: var(--blue);
}

.final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 800px;
  margin-bottom: 0;
}

/* Responsive */
.stat-source {
  display: block;
  margin-top: 16px;
  font-size: .78rem;
  line-height: 1.5;
  opacity: .72;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: .8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr);
    gap: 36px;
  }

  .feature-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 280px;
  }

  .fixed-number-chip {
    left: -5px;
  }

  .ai-result-card {
    right: -6px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .signature-grid,
  .rules-grid,
  .assistant-grid,
  .standard-grid,
  .security-grid,
  .trial-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .fixed-number-chip {
    left: calc(50% - 260px);
  }

  .ai-result-card {
    right: calc(50% - 285px);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, .14);
  }

  .proof-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .proof-grid div:nth-child(n+3) {
    border-bottom: 0;
  }

  .memory-layout {
    grid-template-columns: 1fr;
  }

  .memory-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .memory-points article {
    display: block;
  }

  .memory-points .feature-icon {
    margin-bottom: 18px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card > div:first-of-type {
    min-height: auto;
  }

  .offer-featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 82px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 630px;
  }

  .fixed-number-chip {
    top: 50px;
    left: 0;
  }

  .ai-result-card {
    right: 0;
    bottom: 12px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .feature-grid-four,
  .steps,
  .memory-points {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 38px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps {
    gap: 30px;
  }

  .steps li {
    padding-right: 0;
  }

  .steps li:not(:last-child)::after {
    display: none;
  }

  .signature-grid {
    gap: 50px;
  }

  .callback-flow {
    padding: 24px 18px;
  }

  .demo-rule {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .conversation-actions {
    grid-template-columns: 1fr;
  }

  .conversation-actions > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .conversation-actions > div:last-child {
    border-bottom: 0;
  }

  .dashboard-columns {
    grid-template-columns: 1fr;
  }

  .dashboard-columns > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .human-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .human-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .human-icon svg {
    width: 34px;
    height: 34px;
  }

  .trial-card {
    gap: 42px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 520px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero .eyebrow {
    font-size: .7rem;
  }

  .hero-visual {
    min-height: 590px;
  }

  .mobile-shell {
    width: min(300px, 88vw);
    min-height: 560px;
    border-width: 8px;
  }

  .fixed-number-chip {
    top: 12px;
    left: -2px;
    max-width: 200px;
    padding: 9px 12px;
    font-size: .68rem;
  }

  .ai-result-card {
    right: -2px;
    bottom: 0;
    width: 230px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .offer-card {
    padding: 24px;
  }

  .flow-row {
    grid-template-columns: 43px 16px 1fr;
    gap: 9px;
  }

  .flow-row:not(:last-child)::after {
    left: 50px;
  }

  .demo-header,
  .conversation-top,
  .live-caller {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px;
  }

  .demo-header > span,
  .conversation-top > span {
    margin-left: 56px;
  }

  .message {
    margin-inline: 18px;
  }

  .understanding {
    margin-inline: 18px;
  }

  .queue-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .queue-item > span {
    margin-left: 54px;
  }

  .trial-facts {
    grid-template-columns: 1fr;
  }

  .trial-facts li,
  .trial-facts li:nth-child(n+3),
  .trial-facts li:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .trial-facts li:last-child {
    border-bottom: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
