:root {
  --brand: #ff5a1f;
  --brand-strong: #ef4212;
  --brand-soft: #fff0ea;
  --ink: #0b0b0c;
  --muted: #656568;
  --subtle: #8f8f93;
  --line: #e8e8e8;
  --line-strong: #d8d8da;
  --surface: #f7f7f7;
  --white: #ffffff;
  --black: #0a0a0a;
  --success: #17875d;
  --shadow-sm: 0 12px 30px rgb(16 16 20 / 7%);
  --shadow-md: 0 28px 70px rgb(16 16 20 / 12%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --container: 1504px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.keep-together {
  white-space: nowrap;
}

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

.icon {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgb(255 90 31 / 35%);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgb(15 15 18 / 5%);
}

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

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

.brand-name {
  position: relative;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-name::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 3px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line-strong);
}

.brand-product {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-left: auto;
}

.desktop-nav a,
.footer-inner nav a {
  position: relative;
  font-size: 14px;
  font-weight: 620;
}

.desktop-nav a::after,
.footer-inner nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--brand);
  transition: right 220ms var(--ease);
}

.desktop-nav a:hover::after,
.footer-inner nav a:hover::after {
  right: 0;
}

.header-cta {
  margin-left: 18px;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  padding: 18px 24px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.mobile-nav a {
  display: block;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 12px 26px rgb(255 90 31 / 20%);
}

.button-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  box-shadow: 0 16px 34px rgb(255 90 31 / 28%);
}

.button-outline {
  color: var(--brand);
  background: transparent;
  border-color: var(--brand);
}

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

.button-dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 72%);
}

.button-dark-outline:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 17px;
}

.button-compact {
  min-height: 38px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-wide {
  min-width: 290px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 720;
  cursor: pointer;
}

.text-link .icon {
  color: var(--brand);
  transition: transform 200ms var(--ease);
}

.text-link:hover .icon {
  transform: translateX(6px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--white);
}

.hero-photo {
  position: absolute;
  z-index: -1;
  inset: 0 0 118px;
  background-image: url("./assets/hero-agent.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 54px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 54px), transparent 100%);
}

.hero-grid {
  display: grid;
  flex: 1 0 auto;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
  align-items: center;
  min-height: 690px;
  padding-block: 72px 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(50px, 3.7vw, 64px);
  font-weight: 820;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #505054;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
  padding-top: 26px;
  transform: translateX(-92px);
}

.service-console {
  width: min(380px, 100%);
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(225 225 228 / 88%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.service-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 62px;
  border-bottom: 1px solid var(--line);
}

.service-tab {
  position: relative;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.service-tab::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 78%;
  bottom: -1px;
  height: 2px;
  background: var(--brand);
  transition: right 220ms var(--ease);
}

.service-tab.is-active {
  color: var(--brand);
}

.service-tab.is-active::after {
  right: 22%;
}

.service-panel {
  padding: 22px;
}

.service-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #3d3d40;
  font-size: 13px;
  font-weight: 650;
}

.status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--brand);
  border-radius: 50%;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgb(255 90 31 / 32%);
  border-radius: 50%;
  animation: status-pulse 1.8s ease-out infinite;
}

.chat-bubble {
  max-width: 86%;
  margin-left: auto;
  padding: 12px 14px;
  background: #f1f1f2;
  border-radius: 12px 12px 3px 12px;
  font-size: 13px;
}

.chat-response {
  margin-top: 15px;
  padding: 16px;
  background: var(--surface);
  border-left: 2px solid var(--brand);
  border-radius: 4px var(--radius-sm) var(--radius-sm) 4px;
}

.chat-response-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.chat-response strong,
.chat-response small {
  display: block;
}

.chat-response strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.chat-response small {
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.5;
}

.handoff-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.handoff-row > .icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--brand);
}

.handoff-row strong,
.handoff-row span {
  display: block;
}

.handoff-row strong {
  font-size: 14px;
}

.handoff-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.incoming-call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.call-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
}

.incoming-call strong,
.incoming-call span {
  display: block;
}

.incoming-call span {
  color: var(--muted);
  font-size: 12px;
}

.mini-call-flow {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: call-flow;
}

.mini-call-flow li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 13px;
}

.mini-call-flow li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--line-strong);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.mini-call-flow li::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -14px;
  left: 8px;
  width: 1px;
  background: var(--line-strong);
}

.mini-call-flow li:last-child::after {
  display: none;
}

.mini-call-flow li.is-done,
.mini-call-flow li.is-active {
  color: var(--ink);
  font-weight: 650;
}

.mini-call-flow li.is-done::before,
.mini-call-flow li.is-active::before {
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.service-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  min-height: 118px;
  padding-inline: 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.rail-item strong {
  font-size: 15px;
}

.rail-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgb(255 90 31 / 18%);
  border-radius: 50%;
}

.rail-icon .icon {
  width: 25px;
  height: 25px;
}

.rail-line {
  position: relative;
  height: 1px;
  margin-inline: 24px;
  background: var(--brand);
}

.rail-line i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section {
  position: relative;
  padding-block: 124px;
  background: var(--white);
}

.section h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 3.25vw, 58px);
  font-weight: 800;
}

.section-heading {
  max-width: 980px;
}

.section-heading > p,
.capability-heading > p,
.voice-copy > p,
.operations-heading > div > p,
.rollout-heading > p {
  max-width: 940px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.pain-section {
  border-top: 1px solid var(--line);
}

.pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 74px;
  align-items: center;
}

.pain-copy h2 {
  max-width: 560px;
}

.pain-list {
  margin-block: 38px 26px;
  border-top: 1px solid var(--line);
}

.pain-list p {
  margin: 0;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 680;
}

.section-body {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.channel-map {
  position: relative;
  display: grid;
  grid-template-columns: 116px 56px 112px 56px minmax(250px, 1fr) 92px;
  align-items: center;
  min-height: 510px;
}

.map-column {
  display: grid;
  gap: 58px;
}

.map-node-round {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 680;
}

.map-node-round .icon,
.map-node-ai {
  width: 64px;
  height: 64px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgb(255 90 31 / 35%);
  border-radius: 50%;
}

.map-node-round .icon {
  padding: 18px;
}

.map-node-ai {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  box-shadow: 0 0 0 12px var(--brand-soft);
}

.map-node-ai strong {
  color: var(--ink);
  font-size: 11px;
}

.ai-monogram {
  font-size: 18px;
  font-weight: 820;
}

.map-connector {
  position: relative;
  height: 1px;
  background: var(--brand);
}

.map-connector-in::before,
.map-connector-in::after,
.map-connector-out::before,
.map-connector-out::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 84px;
  border-color: var(--brand);
  border-style: solid;
}

.map-connector-in::before {
  right: 10px;
  bottom: 0;
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 24px;
}

.map-connector-in::after {
  right: 10px;
  top: 0;
  border-width: 1px 0 0 1px;
  border-radius: 24px 0 0;
}

.map-connector-out::before {
  left: 8px;
  bottom: 0;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 24px;
}

.map-connector-out::after {
  left: 8px;
  top: 0;
  border-width: 1px 1px 0 0;
  border-radius: 0 24px 0 0;
}

.map-outcomes {
  gap: 18px;
}

.map-outcome {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgb(20 20 24 / 4%);
}

.map-outcome-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
}

.map-outcome strong,
.map-outcome small {
  display: block;
}

.map-outcome strong {
  font-size: 13px;
}

.map-outcome small {
  margin-top: 3px;
  color: var(--subtle);
  font-size: 10px;
}

.map-record {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--brand);
  text-align: center;
}

.map-record .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgb(255 90 31 / 35%);
  border-radius: 50%;
}

.map-record strong {
  color: var(--ink);
  font-size: 12px;
}

.section-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 62px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 760;
}

.section-statement span:nth-of-type(2) {
  color: var(--brand);
}

.section-statement i {
  width: 38px;
  height: 1px;
  background: var(--brand);
}

.journey-section {
  padding-bottom: 110px;
  border-top: 1px solid var(--line);
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 68px;
}

.journey-line {
  position: absolute;
  top: 30px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: var(--brand);
}

.journey-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: rotate(45deg);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  padding: 0 10px 16px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  color: var(--brand);
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.journey-step:hover .journey-icon,
.journey-step.is-active .journey-icon {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-4px);
}

.journey-number {
  margin-right: 7px;
  color: var(--brand);
  font-size: 28px;
  font-weight: 820;
  line-height: 1;
}

.journey-step strong {
  margin-top: -27px;
  margin-left: 49px;
  font-size: 17px;
}

.journey-step small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.journey-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: 56px;
  align-items: center;
  max-width: 920px;
  margin: 48px auto 0;
  padding: 28px 34px;
  background: var(--surface);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.preview-conversation {
  padding-right: 38px;
  border-right: 1px solid var(--line-strong);
}

.preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--subtle);
  font-size: 11px;
}

.preview-conversation p {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 18px;
  padding: 10px 13px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.preview-conversation .preview-answer {
  margin-left: auto;
  margin-bottom: 0;
  color: var(--white);
  background: var(--brand);
}

.preview-copy > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.preview-copy h3 {
  margin: 8px 0 10px;
  font-size: 28px;
}

.preview-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.journey-closing {
  margin: 58px 0 0;
  text-align: center;
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.journey-closing span {
  color: var(--brand);
}

.capability-section {
  border-top: 1px solid var(--line);
}

.capability-heading {
  text-align: center;
}

.capability-heading > p {
  margin-inline: auto;
}

.capability-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 56px;
}

.capability-rows {
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 158px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.layer-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.layer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
}

.layer-label h3 {
  margin: 1px 0 4px;
  font-size: 21px;
}

.layer-label p,
.layer-label strong {
  display: block;
  margin: 0;
  font-size: 12px;
}

.layer-label p {
  color: var(--muted);
}

.layer-label strong {
  margin-top: 7px;
  color: var(--brand);
  font-weight: 700;
}

.layer-flow {
  display: flex;
  align-items: center;
  min-width: 0;
}

.layer-flow > i {
  flex: 1 1 28px;
  min-width: 18px;
  height: 1px;
  background: var(--line-strong);
}

.layer-flow-orange > i {
  background: var(--brand);
}

.plain-input,
.sop-label,
.flow-node {
  flex: 0 1 auto;
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.plain-input {
  padding-left: 0;
  color: var(--muted);
  text-align: left;
}

.flow-node {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.sop-label {
  color: var(--white);
  background: var(--brand);
  border-radius: 999px;
}

.capability-output {
  align-self: stretch;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.output-title {
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 760;
}

.output-question {
  width: fit-content;
  margin: 0 0 18px auto;
  padding: 10px 12px;
  background: var(--white);
  border-radius: 10px 10px 3px 10px;
  font-size: 12px;
}

.output-result {
  padding: 16px;
  background: var(--white);
  border-left: 2px solid var(--brand);
}

.output-result > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
}

.output-result dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin-bottom: 0;
  font-size: 11px;
}

.output-result dt {
  color: var(--subtle);
}

.output-result dd {
  margin: 0;
  font-weight: 650;
}

.output-handoff {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 15px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgb(255 90 31 / 32%);
  border-radius: var(--radius-sm);
}

.output-handoff .icon {
  width: 28px;
  height: 28px;
}

.output-handoff strong,
.output-handoff span {
  display: block;
}

.output-handoff strong {
  color: var(--ink);
  font-size: 13px;
}

.output-handoff span {
  color: var(--muted);
  font-size: 10px;
}

.voice-section {
  min-height: 850px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.voice-photo {
  position: absolute;
  inset: 0;
  background-image: url("./assets/voice-agent.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.voice-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: center;
  min-height: 610px;
}

.voice-copy {
  position: relative;
  z-index: 2;
  padding: 28px 42px 36px 0;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 86%, rgb(255 255 255 / 0%) 100%);
}

.voice-copy h2 {
  max-width: 690px;
  font-size: clamp(42px, 2.85vw, 54px);
  line-height: 1.14;
}

.voice-copy > p {
  max-width: 650px;
}

.voice-play {
  margin-top: 26px;
  color: var(--brand);
}

.voice-console {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(600px, 94%);
  margin-bottom: -18px;
  margin-left: -26px;
  padding: 24px;
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(220 220 224 / 90%);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgb(16 16 20 / 10%);
  backdrop-filter: blur(14px);
}

.call-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-symbol {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
}

.call-card div strong,
.call-card div span {
  display: block;
}

.call-card div strong {
  font-size: 14px;
}

.call-card div span {
  color: var(--muted);
  font-size: 11px;
}

.call-state {
  margin-left: auto;
  padding: 6px 10px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

.call-state.is-running {
  color: var(--brand);
  background: var(--brand-soft);
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  margin-block: 12px 8px;
  overflow: hidden;
}

.voice-wave::before,
.voice-wave::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgb(255 90 31 / 35%);
}

.voice-wave i {
  width: 2px;
  height: 8px;
  margin-inline: 4px;
  background: var(--brand);
  border-radius: 2px;
  transform-origin: center;
}

.voice-console.is-playing .voice-wave i {
  animation: wave 900ms ease-in-out infinite alternate;
}

.voice-wave i:nth-child(2n) { height: 24px; animation-delay: -180ms; }
.voice-wave i:nth-child(3n) { height: 36px; animation-delay: -360ms; }
.voice-wave i:nth-child(5n) { height: 18px; animation-delay: -540ms; }

.call-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-steps li {
  position: relative;
  min-height: 62px;
  padding: 10px 9px;
  background: var(--surface);
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.call-steps li span,
.call-steps li strong {
  display: block;
}

.call-steps li span {
  color: var(--subtle);
  font-size: 9px;
}

.call-steps li strong {
  margin-top: 4px;
  font-size: 11px;
}

.call-steps li.is-done,
.call-steps li.is-active {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.call-steps li.is-active {
  color: var(--brand);
}

.call-summary {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.call-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--subtle);
  font-size: 10px;
}

.summary-status {
  color: var(--success);
  font-weight: 720;
}

.summary-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: currentColor;
  border-radius: 50%;
}

.call-summary > strong {
  font-size: 12px;
}

.call-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 18px;
  margin: 8px 0 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 10px;
}

.operations-section {
  border-top: 1px solid var(--line);
}

.operations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}

.operations-heading > div > p {
  max-width: 980px;
}

.operations-note {
  margin-top: 12px;
  color: var(--ink) !important;
  font-size: 14px !important;
}

.operations-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.operations-tabs button {
  min-width: 72px;
  padding: 9px 14px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
}

.operations-tabs button.is-active {
  color: var(--white);
  background: var(--brand);
}

.operations-workspace {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 188px;
  min-height: 520px;
  margin-top: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 46px rgb(18 18 22 / 7%);
}

.workspace-sidebar {
  padding: 24px 18px;
  background: #f5f5f6;
  border-right: 1px solid var(--line);
}

.workspace-sidebar strong,
.workspace-sidebar span,
.workspace-sidebar button {
  display: block;
  width: 100%;
  text-align: left;
}

.workspace-sidebar strong {
  margin: 0 10px 20px;
  font-size: 15px;
}

.workspace-sidebar span {
  margin: 24px 10px 7px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.workspace-sidebar button {
  padding: 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 12px;
}

.workspace-sidebar button.is-active {
  color: var(--brand);
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 14px rgb(18 18 22 / 5%);
}

.workspace-main {
  min-width: 0;
  background: var(--white);
}

.ops-panel {
  min-height: 100%;
  padding: 30px;
}

.panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.panel-toolbar div strong,
.panel-toolbar div span {
  display: block;
}

.panel-toolbar div strong {
  font-size: 17px;
}

.panel-toolbar div span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.panel-tag {
  color: var(--brand);
  font-size: 11px;
  font-weight: 720;
}

.config-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.config-form label,
.consult-form label {
  display: grid;
  gap: 7px;
  color: #47474a;
  font-size: 12px;
  font-weight: 680;
}

.config-form input,
.config-form textarea,
.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
  resize: vertical;
}

.config-form input,
.config-form textarea {
  background: var(--surface);
}

.config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.conversation-thread {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.conversation-thread p {
  width: fit-content;
  max-width: 78%;
  margin: 0;
  padding: 13px 15px;
  background: var(--surface);
  border-radius: 10px 10px 10px 3px;
  font-size: 13px;
}

.conversation-thread .thread-customer {
  margin-left: auto;
  background: var(--brand-soft);
  border-radius: 10px 10px 3px 10px;
}

.conversation-thread .thread-handoff {
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgb(255 90 31 / 35%);
  font-weight: 700;
}

.analysis-list {
  margin: 22px 0 0;
}

.analysis-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.analysis-list dt {
  color: var(--muted);
  font-size: 11px;
}

.analysis-list dd {
  font-size: 13px;
  font-weight: 620;
}

.operations-loop {
  position: relative;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 24px;
  background: var(--surface);
  border-left: 1px solid var(--line);
}

.operations-loop > div:not(.loop-path) {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.operations-loop span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}

.operations-loop strong {
  font-size: 11px;
}

.loop-path {
  position: absolute;
  top: 62px;
  bottom: 62px;
  left: 38px;
  width: 1px;
  background: var(--brand);
}

.operations-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 26px;
  border-block: 1px solid var(--line);
}

.operations-links span {
  padding-block: 17px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}

.operations-links span:last-child {
  border-right: 0;
}

.rollout-section {
  padding-bottom: 0;
  border-top: 1px solid var(--line);
}

.rollout-heading {
  max-width: 1260px;
  margin-inline: auto;
  text-align: center;
}

.rollout-heading > p {
  margin-inline: auto;
}

.rollout-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 65px 0 100px;
  padding: 0;
  list-style: none;
}

.rollout-track::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--brand);
}

.rollout-track li {
  position: relative;
  z-index: 1;
  padding-inline: 6px;
  text-align: center;
}

.rollout-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 21px;
  color: var(--brand);
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: 50%;
}

.rollout-track strong {
  display: block;
  font-size: 17px;
}

.rollout-track em {
  margin-right: 8px;
  color: var(--brand);
  font-style: normal;
  font-size: 20px;
}

.rollout-track p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.rollout-artifact {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 152px;
  margin-top: 24px;
  padding: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 8px 22px rgb(18 18 22 / 4%);
}

.rollout-artifact b {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 11px;
}

.rollout-artifact span {
  position: relative;
  display: block;
  padding: 6px 7px 6px 21px;
  background: var(--surface);
  border-radius: 3px;
  font-size: 9px;
  line-height: 1.35;
}

.artifact-document span::before,
.artifact-checks span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--line-strong);
  transform: translateY(-50%);
}

.artifact-checks span::before {
  background: var(--brand-soft);
  border-color: var(--brand);
  border-radius: 50%;
}

.artifact-connect {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.artifact-connect b {
  grid-column: 1 / -1;
}

.artifact-connect span {
  padding: 8px 5px;
  text-align: center;
}

.artifact-connect span:last-child {
  grid-column: 1 / -1;
}

.artifact-connect i {
  width: 11px;
  height: 1px;
  background: var(--brand);
}

.artifact-connect i:nth-of-type(2) {
  display: none;
}

.artifact-review span:nth-of-type(2) {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.closing-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid #2d2d2f;
}

.closing-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 58px;
  align-items: center;
  min-height: 310px;
  padding-block: 68px;
}

.closing-content h2 {
  max-width: 1160px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(30px, 2.1vw, 36px);
}

.closing-content p {
  max-width: 760px;
  margin-bottom: 0;
  color: #b7b7bb;
  font-size: 16px;
}

.closing-actions {
  display: grid;
  gap: 13px;
  min-width: 230px;
}

.closing-path {
  position: absolute;
  right: 2%;
  bottom: 25px;
  width: 48%;
  height: 92px;
  border-top: 2px solid var(--brand);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.75;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  min-height: 126px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong {
  font-size: 23px;
}

.footer-brand span {
  color: #8f8f94;
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  gap: 26px;
}

.footer-inner nav a {
  color: #d2d2d4;
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
  color: #8f8f94;
  font-size: 11px;
  text-align: right;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-contact a {
  color: inherit;
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: var(--white);
}

dialog {
  width: min(560px, calc(100% - 36px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 100px rgb(0 0 0 / 28%);
}

dialog::backdrop {
  background: rgb(8 8 9 / 56%);
  backdrop-filter: blur(5px);
}

.dialog-shell,
.drawer-shell {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.dialog-brand {
  display: block;
  margin-bottom: 17px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.dialog-content h2,
.dialog-success h2,
.drawer-shell h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.dialog-content > p,
.dialog-success > p,
.drawer-shell > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-detail-wide {
  grid-column: 1 / -1;
}

.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--brand);
  background: rgb(255 90 31 / 9%);
  border: 1px solid rgb(255 90 31 / 18%);
  border-radius: 50%;
}

.contact-detail-icon .icon {
  width: 18px;
  height: 18px;
}

.contact-detail dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.contact-detail dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-detail a {
  color: var(--ink);
}

.contact-detail a:hover {
  color: var(--brand);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dialog-success {
  display: grid;
  justify-items: center;
  padding-block: 40px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
}

.success-icon .icon {
  width: 38px;
  height: 38px;
}

.checklist-drawer {
  width: min(500px, 100%);
  height: 100vh;
  max-height: none;
  margin: 0 0 0 auto;
  border-radius: 0;
}

.drawer-shell {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 62px 46px 42px;
}

.checklist {
  display: grid;
  gap: 0;
  margin: 12px 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.checklist li span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.drawer-shell > .button {
  margin-top: auto;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 28px;
  bottom: 28px;
  padding: 13px 19px;
  color: var(--white);
  background: var(--black);
  border-left: 3px solid var(--brand);
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 680;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@keyframes status-pulse {
  from { transform: scale(0.7); opacity: 0.9; }
  to { transform: scale(1.55); opacity: 0; }
}

@keyframes wave {
  from { transform: scaleY(0.45); opacity: 0.55; }
  to { transform: scaleY(1.25); opacity: 1; }
}

@media (min-width: 1061px) and (max-width: 1500px) {
  .hero-photo {
    background-position: right top;
    background-size: auto 94%;
  }

  .hero-stage {
    transform: translateX(-55px);
  }

  .service-console {
    width: min(360px, 100%);
  }

  .voice-photo {
    background-position: right bottom;
    background-size: auto 72%;
  }

  .voice-console {
    width: min(460px, 88%);
    margin-left: -38px;
  }
}

@media (max-width: 1240px) {
  :root {
    --container: 1160px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  }

  .hero h1 {
    font-size: clamp(46px, 4.6vw, 60px);
  }

  .hero-stage {
    transform: translateX(-50px);
  }

  .service-console {
    width: 340px;
  }

  .pain-layout {
    gap: 42px;
  }

  .channel-map {
    grid-template-columns: 100px 42px 98px 42px minmax(220px, 1fr) 78px;
  }

  .capability-board {
    grid-template-columns: 1fr 300px;
  }

  .capability-row {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
  }

  .plain-input,
  .sop-label,
  .flow-node {
    padding-inline: 8px;
    font-size: 10px;
  }

  .voice-console {
    width: min(440px, 90%);
    margin-left: -30px;
  }

  .voice-copy h2 {
    font-size: clamp(42px, 4.1vw, 50px);
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

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

  .hero h1 {
    max-width: 720px;
    font-size: clamp(44px, 7vw, 62px);
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-stage {
    justify-content: flex-start;
    min-height: 500px;
    padding-top: 90px;
    transform: none;
  }

  .hero-photo {
    inset: 330px 0 118px;
    background-position: center bottom;
    background-size: cover;
  }

  .service-console {
    margin-left: 4%;
  }

  .service-rail {
    width: 100%;
  }

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

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

  .channel-map {
    grid-template-columns: 112px 54px 108px 54px minmax(270px, 1fr) 90px;
    max-width: 920px;
    margin-inline: auto;
  }

  .capability-board {
    grid-template-columns: 1fr;
  }

  .capability-output {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) minmax(240px, 1.3fr) minmax(220px, 1fr);
    gap: 16px;
    align-items: center;
  }

  .output-title,
  .output-question,
  .output-handoff {
    margin: 0;
  }

  .voice-section {
    min-height: 940px;
  }

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

  .voice-copy {
    max-width: 710px;
    padding-right: 0;
    background: var(--white);
  }

  .voice-photo {
    inset: 300px 0 0;
    background-position: right bottom;
    background-size: auto 100%;
  }

  .voice-console {
    justify-self: start;
    width: min(610px, 72%);
    margin: 220px 0 -38px;
  }

  .operations-workspace {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .operations-loop {
    display: none;
  }

  .closing-content {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 92px;
  }

  .service-rail {
    grid-template-columns: auto 1fr auto 1fr auto;
    padding-inline: 22px;
  }

  .rail-item {
    gap: 9px;
  }

  .rail-icon {
    width: 43px;
    height: 43px;
  }

  .rail-icon .icon {
    width: 21px;
    height: 21px;
  }

  .rail-item strong {
    font-size: 12px;
  }

  .rail-line {
    margin-inline: 12px;
  }

  .channel-map {
    grid-template-columns: 96px 34px 92px 34px minmax(210px, 1fr) 72px;
  }

  .journey-track {
    grid-template-columns: repeat(5, 190px);
    margin-right: 0;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .journey-line {
    width: 930px;
    right: auto;
  }

  .journey-preview {
    gap: 30px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .layer-flow {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .layer-flow > i {
    flex: 0 0 30px;
  }

  .capability-output {
    grid-template-columns: 1fr 1fr;
  }

  .output-result {
    grid-row: span 2;
  }

  .voice-console {
    width: 82%;
  }

  .operations-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .operations-tabs {
    justify-self: start;
  }

  .operations-workspace {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workspace-sidebar strong,
  .workspace-sidebar span {
    display: none;
  }

  .workspace-sidebar button {
    flex: 0 0 auto;
    width: auto;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .rollout-track {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 620px;
    margin-inline: auto;
  }

  .rollout-track::before {
    top: 24px;
    bottom: 24px;
    left: 29px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .rollout-track li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding-bottom: 30px;
    text-align: left;
  }

  .rollout-icon {
    grid-row: span 2;
    margin: 0;
  }

  .rollout-track strong {
    align-self: end;
  }

  .rollout-track p {
    margin-top: 3px;
  }

  .rollout-artifact {
    display: none;
  }

  .footer-inner nav {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand-product,
  .brand-divider {
    display: none;
  }

  .brand-name {
    font-size: 23px;
  }

  .hero-grid {
    padding-top: 52px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(33px, 8.8vw, 35px);
    letter-spacing: -0.055em;
    line-height: 1.15;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.78;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

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

  .hero-stage {
    min-height: 470px;
    padding-top: 78px;
  }

  .hero-photo {
    inset: 520px 0 164px;
    background-position: 63% bottom;
    background-size: auto 470px;
  }

  .service-console {
    width: min(88%, 350px);
    margin-left: 0;
  }

  .service-panel {
    padding: 18px;
  }

  .service-rail {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: 164px;
    padding-block: 18px;
  }

  .rail-item {
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .rail-icon {
    width: 40px;
    height: 40px;
  }

  .rail-line {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 9vw, 44px);
  }

  .section-heading > p,
  .capability-heading > p,
  .voice-copy > p,
  .operations-heading > div > p,
  .rollout-heading > p {
    font-size: 15px;
    line-height: 1.78;
  }

  .pain-list {
    margin-top: 28px;
  }

  .pain-list p {
    font-size: 17px;
  }

  .channel-map {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    margin-top: 28px;
  }

  .map-column,
  .map-outcomes {
    width: 100%;
  }

  .map-inputs {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .map-connector {
    width: 1px;
    height: 28px;
  }

  .map-connector::before,
  .map-connector::after {
    display: none;
  }

  .map-outcomes {
    gap: 10px;
  }

  .map-record {
    margin-top: 4px;
  }

  .section-statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 42px;
    padding-left: 18px;
    border-left: 2px solid var(--brand);
    border-top: 0;
    font-size: 21px;
  }

  .section-statement i {
    display: none;
  }

  .journey-track {
    margin-top: 48px;
  }

  .journey-preview {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .preview-conversation {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .journey-closing {
    margin-top: 42px;
    text-align: left;
  }

  .capability-heading {
    text-align: left;
  }

  .capability-board {
    margin-top: 38px;
  }

  .layer-flow {
    margin-right: -18px;
    padding-right: 18px;
  }

  .capability-output {
    display: block;
    padding: 20px;
  }

  .output-title,
  .output-question,
  .output-result,
  .output-handoff {
    margin-bottom: 14px;
  }

  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .voice-section {
    min-height: auto;
  }

  .voice-photo {
    display: none;
  }

  .voice-layout {
    display: block;
    min-height: 0;
  }

  .voice-copy {
    padding: 0;
  }

  .voice-console {
    width: 100%;
    margin: 38px 0 0;
    padding: 18px;
  }

  .call-steps {
    grid-template-columns: 1fr 1fr;
  }

  .call-summary ul {
    display: block;
  }

  .operations-heading {
    gap: 22px;
  }

  .operations-tabs {
    width: 100%;
  }

  .operations-tabs button {
    min-width: 0;
  }

  .operations-workspace {
    margin-top: 32px;
  }

  .ops-panel {
    padding: 20px;
  }

  .panel-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .config-row {
    grid-template-columns: 1fr;
  }

  .analysis-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .operations-links {
    grid-template-columns: 1fr 1fr;
  }

  .operations-links span {
    border-bottom: 1px solid var(--line);
  }

  .operations-links span:nth-child(2n) {
    border-right: 0;
  }

  .operations-links span:last-child {
    grid-column: 1 / -1;
  }

  .rollout-heading {
    text-align: left;
  }

  .rollout-track {
    margin-block: 48px 72px;
  }

  .closing-content {
    gap: 34px;
    min-height: 430px;
  }

  .closing-content h2 {
    font-size: 36px;
  }

  .closing-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .site-footer {
    padding-block: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .dialog-shell,
  .drawer-shell {
    padding: 52px 22px 26px;
  }

  .dialog-content h2,
  .dialog-success h2,
  .drawer-shell h2 {
    font-size: 28px;
  }

  .contact-details,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-detail-wide {
    grid-column: auto;
  }

  .toast {
    right: 18px;
    bottom: 18px;
    left: 18px;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
