.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(22px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
}

.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0 9px;
  border-bottom: 2px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-cta span { color: var(--coral); }
.header-cta .header-cta-label { color: inherit; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: clamp(64px, 8vw, 116px) clamp(22px, 4vw, 68px) clamp(56px, 6vw, 92px);
}

.hero::before {
  content: "01";
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  z-index: -1;
  color: rgba(23, 23, 19, 0.035);
  font-family: var(--display);
  font-size: clamp(300px, 38vw, 620px);
  line-height: 1;
  pointer-events: none;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 29px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > .eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 90, 54, 0.14);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.35vw, 106px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.056em;
}

h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 35px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
  letter-spacing: -0.017em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 58px;
  padding: 0 23px 0 27px;
  border: 1px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.105em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 var(--coral);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--coral);
}

.button-arrow { color: var(--acid); font-size: 18px; }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
}

.play-disc {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding-left: 2px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  transition: background 160ms ease, color 160ms ease;
}

.text-button:hover .play-disc,
.text-button:focus-visible .play-disc { background: var(--coral); color: #fff; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 39px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.hero-note .hero-note-icon { color: var(--coral); }

.call-stage {
  position: relative;
  width: min(100%, 560px);
  justify-self: center;
  padding: 52px 26px 48px;
}

.call-stage::before {
  content: "";
  position: absolute;
  inset: 10px 0 0;
  z-index: -1;
  border: 1px dashed rgba(23, 23, 19, 0.28);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.call-stage::after {
  content: "";
  position: absolute;
  top: 0;
  right: 11%;
  z-index: -1;
  width: 47%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
}

.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.orbit-label-one { top: 74px; left: -4px; transform: rotate(-8deg); }
.orbit-label-two { right: -9px; bottom: 107px; transform: rotate(7deg); }

.call-card {
  position: relative;
  z-index: 1;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--card);
  box-shadow: 14px 14px 0 var(--ink);
}

.call-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 84px;
  padding: 21px 23px;
  border-bottom: 1px solid var(--line);
}

.call-kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.call-number { margin: 0; font-size: 13px; font-weight: 700; }

.call-timer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
}

.call-timer span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s ease-in-out infinite;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 92px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.waveform i {
  display: block;
  width: 3px;
  height: 10px;
  border-radius: 4px;
  background: var(--ink);
  opacity: 0.52;
}

.waveform i:nth-child(3n) { height: 22px; }
.waveform i:nth-child(4n) { height: 34px; }
.waveform i:nth-child(7n) { height: 48px; background: var(--coral); opacity: 1; }

.call-card.is-playing .waveform i { animation: speak 650ms ease-in-out infinite alternate; }
.call-card.is-playing .waveform i:nth-child(2n) { animation-delay: -180ms; }
.call-card.is-playing .waveform i:nth-child(3n) { animation-delay: -340ms; }
.call-card.is-playing .waveform i:nth-child(5n) { animation-delay: -460ms; }

.transcript { padding: 20px 23px 9px; }

.line {
  display: grid;
  grid-template-columns: 73px 1fr;
  gap: 12px;
  padding: 12px 0;
  opacity: 0.18;
  transform: translateY(5px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.line.is-visible { opacity: 1; transform: translateY(0); }
.line span {
  padding-top: 3px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.line-agent span { color: var(--coral); }
.line p { margin: 0; font-size: 13px; line-height: 1.45; }

.reservation-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3px 23px 17px;
  padding: 12px;
  border: 1px solid var(--ink);
  background: var(--acid);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reservation-result.is-visible { opacity: 1; transform: translateY(0); }
.checkmark {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.reservation-result p { margin: 0 0 2px; font-size: 12px; font-weight: 800; }
.reservation-result span { font-size: 10px; }

.call-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
}

.calendar-chip { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; }
.calendar-icon {
  width: 14px;
  height: 14px;
  border: 1px solid var(--ink);
  box-shadow: inset 0 4px 0 var(--coral);
}

.play-call {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding-left: 3px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  cursor: pointer;
}

.play-call:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }
.call-footer > p { justify-self: end; margin: 0; font-family: var(--mono); font-size: 10px; font-weight: 700; }

.scribble {
  position: absolute;
  right: 12%;
  bottom: 0;
  z-index: 2;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 13px;
  transform: rotate(-4deg);
}

.scribble span { display: inline-block; margin-left: 4px; color: var(--coral); font-size: 25px; transform: rotate(-25deg); }

.capability-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  overflow: hidden;
  min-height: 62px;
  padding: 0 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.capability-strip p {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip span { color: var(--acid); }

.section-index {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index-light { color: rgba(255, 255, 255, 0.58); }

.pressure-section {
  padding: 90px clamp(22px, 4vw, 68px) 100px;
  background: var(--coral);
}

.pressure-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 9vw;
  align-items: end;
  margin-top: 48px;
}

.pressure-heading h2,
.workflow-intro h2,
.handles-heading h2,
.rules-copy h2,
.launch-head h2,
.faq-title-wrap h2,
.demo-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 104px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.pressure-heading h2 em,
.workflow-intro h2 em,
.launch-head h2 em,
.demo-copy h2 em { font-weight: 400; }

.pressure-heading h2 em { color: var(--paper); }
.pressure-heading > p {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.55;
}

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.pressure-grid article {
  position: relative;
  min-height: 300px;
  padding: 25px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pressure-grid article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--display);
  font-size: 42px;
  font-style: italic;
}

.scenario-time {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pressure-grid h3 {
  max-width: 320px;
  margin: 115px 0 14px;
  font-family: var(--display);
  font-size: clamp(27px, 2.3vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.pressure-grid article > p:last-child { max-width: 310px; margin: 0; font-size: 13px; line-height: 1.45; }
.pressure-grid .scenario-answer { background: var(--acid); }

.workflow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 7vw, 116px);
  padding: 120px clamp(22px, 4vw, 68px);
}

.workflow-intro h2 { margin-top: 46px; }
.workflow-intro h2 em { color: var(--coral); }
.workflow-intro > p {
  max-width: 460px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.workflow-body { display: grid; gap: 55px; }
.step-list { margin: 0; padding: 0; list-style: none; }
.step {
  border-top: 1px solid var(--ink);
  transition: background 180ms ease;
}
.step:last-child { border-bottom: 1px solid var(--ink); }
.step button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 17px;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 0 15px 0 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.step button span { font-family: var(--mono); font-size: 10px; }
.step button strong { font-family: var(--display); font-size: clamp(24px, 2.4vw, 35px); font-weight: 400; letter-spacing: -0.025em; }
.step button i { font-size: 24px; font-style: normal; font-weight: 300; transition: transform 180ms ease; }
.step > p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 60px;
  opacity: 0;
  font-size: 14px;
  line-height: 1.5;
  transition: max-height 250ms ease, padding 250ms ease, opacity 180ms ease;
}
.step.is-active { background: rgba(255, 90, 54, 0.08); }
.step.is-active button i { transform: rotate(45deg); }
.step.is-active > p { max-height: 100px; padding: 0 60px 24px; opacity: 1; }

.activity-panel { border: 1px solid var(--ink); background: var(--ink); color: #fff; box-shadow: 11px 11px 0 var(--coral); }
.activity-topbar,
.activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  padding: 0 19px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.activity-topbar { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.live-status { display: flex; align-items: center; gap: 7px; color: var(--acid); }
.live-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); animation: pulse 1.5s ease-in-out infinite; }
.activity-main { display: grid; grid-template-columns: auto 1fr auto; gap: 19px; align-items: center; padding: 24px 19px; background: var(--paper); color: var(--ink); }
.activity-date { display: grid; place-items: center; width: 64px; height: 78px; border: 1px solid var(--ink); }
.activity-date p,
.activity-date span { margin: 0; font-family: var(--mono); font-size: 8px; font-weight: 700; }
.activity-date strong { font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 0.9; }
.activity-label { margin: 0 0 7px; color: var(--coral); font-family: var(--mono); font-size: 9px; font-weight: 700; }
.activity-copy h3 { margin: 0 0 5px; font-family: var(--display); font-size: 28px; font-weight: 400; letter-spacing: -0.03em; }
.activity-copy > p:last-child { margin: 0; font-size: 12px; }
.confirmed-pill { padding: 8px 9px; border: 1px solid var(--ink); background: var(--acid); font-family: var(--mono); font-size: 8px; font-weight: 700; }
.activity-log { padding: 8px 19px; }
.activity-log > div { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; min-height: 43px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.activity-log span { color: rgba(255, 255, 255, 0.55); font-family: var(--mono); font-size: 9px; }
.activity-log p { margin: 0; font-size: 12px; }
.activity-log b { color: var(--acid); font-weight: 400; }
.activity-footer { border-top: 1px solid rgba(255, 255, 255, 0.22); }
.activity-footer p { margin: 0; color: var(--acid); }

.handles-section { padding: 105px clamp(22px, 4vw, 68px) 120px; background: var(--ink); color: #fff; }
.handles-heading { display: grid; grid-template-columns: 1.25fr 0.55fr; gap: 8vw; align-items: end; }
.handles-heading h2 { margin-top: 45px; }
.handles-heading > p { margin: 0 0 7px; color: rgba(255, 255, 255, 0.68); font-size: 17px; line-height: 1.55; }
.handles-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 76px; border-top: 1px solid rgba(255, 255, 255, 0.4); border-left: 1px solid rgba(255, 255, 255, 0.4); }
.handle-card { position: relative; min-height: 370px; padding: 21px; border-right: 1px solid rgba(255, 255, 255, 0.4); border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.handle-number { font-family: var(--mono); font-size: 9px; color: rgba(255, 255, 255, 0.5); }
.handle-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-top: 70px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; color: var(--coral); font-family: var(--display); font-size: 31px; }
.handle-card h3 { margin: 45px 0 13px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -0.03em; }
.handle-card p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 13px; line-height: 1.52; }
.handle-card-acid { background: var(--acid); color: var(--ink); }
.handle-card-acid .handle-number,
.handle-card-acid p { color: rgba(23, 23, 19, 0.67); }
.handle-card-acid .handle-icon { border-color: var(--ink); color: var(--ink); }

.rules-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr); align-items: center; gap: 9vw; padding: 130px clamp(22px, 6vw, 110px); }
.rules-visual { position: relative; padding: 43px; }
.rules-visual::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--coral); }
.rules-paper { position: relative; z-index: 1; padding: 26px; border: 1px solid var(--ink); background: var(--card); box-shadow: 11px 11px 0 var(--ink); transform: rotate(-2deg); }
.rules-paper-head { display: flex; justify-content: space-between; padding-bottom: 23px; border-bottom: 2px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 700; }
.rules-paper-head span:last-child { color: var(--coral); }
.rule-row { display: grid; grid-template-columns: 1fr auto 26px; align-items: center; gap: 15px; min-height: 65px; border-bottom: 1px solid var(--line); }
.rule-row span { font-family: var(--mono); font-size: 9px; color: var(--muted); }
.rule-row strong { font-size: 13px; }
.rule-row i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--acid); font-size: 10px; font-style: normal; }
.rules-signoff { margin: 25px 0 2px; text-align: right; font-family: "Segoe Print", "Bradley Hand", cursive; font-size: 11px; }
.rules-copy h2 { margin-top: 43px; font-size: clamp(48px, 5.3vw, 82px); }
.rules-copy > p { max-width: 540px; margin: 31px 0; font-size: 17px; line-height: 1.55; }
.rules-copy ul { margin: 0; padding: 0; list-style: none; }
.rules-copy li { display: flex; align-items: center; gap: 11px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.rules-copy li:last-child { border-bottom: 1px solid var(--line); }
.rules-copy li span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--ink); color: var(--acid); font-size: 9px; }

.launch-section { padding: 110px clamp(22px, 4vw, 68px) 120px; border-top: 1px solid var(--ink); background: #ded7c9; }
.launch-head { display: flex; align-items: end; justify-content: space-between; }
.launch-head h2 { margin-top: 44px; }
.launch-head em { color: var(--coral); }
.launch-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--ink); }
.launch-rail article { position: relative; min-height: 290px; padding: 22px 22px 20px 0; border-right: 1px solid var(--ink); }
.launch-rail article:not(:first-child) { padding-left: 22px; }
.launch-rail article:last-child { border-right: 0; }
.launch-rail article::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
.launch-rail article:not(:first-child)::before { left: 22px; }
.launch-rail span { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.09em; }
.launch-rail h3 { margin: 82px 0 15px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -0.03em; }
.launch-rail p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted); }

.fit-section { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.fit-statement { padding: 80px clamp(22px, 5vw, 80px); background: var(--acid); }
.fit-kicker { margin: 0 0 45px; font-family: var(--mono); font-size: 10px; font-weight: 700; }
.fit-statement h2 { margin: 0; font-family: var(--display); font-size: clamp(46px, 5vw, 76px); font-weight: 400; line-height: 0.95; letter-spacing: -0.05em; }
.fit-list { padding: 50px clamp(22px, 5vw, 80px); }
.fit-list p { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 78px; margin: 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(21px, 2vw, 29px); line-height: 1.1; letter-spacing: -0.025em; }
.fit-list p:last-child { border-bottom: 0; }
.fit-list span { font-family: var(--mono); font-size: 9px; }

.faq-section { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: 9vw; padding: 120px clamp(22px, 4vw, 68px); }
.faq-title-wrap h2 { margin-top: 45px; font-size: clamp(48px, 5vw, 78px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--ink); }
.faq-item button { display: grid; grid-template-columns: 1fr auto; align-items: center; width: 100%; min-height: 92px; padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; }
.faq-item button span { padding-right: 20px; font-family: var(--display); font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.025em; }
.faq-item button i { font-size: 25px; font-style: normal; font-weight: 300; transition: transform 180ms ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 240ms ease; }
.faq-answer p { overflow: hidden; max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 27px; }
.faq-item.is-open button i { transform: rotate(45deg); }

.demo-section { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr); gap: 8vw; padding: 115px clamp(22px, 6vw, 110px); background: var(--coral); }
.eyebrow-light { color: var(--paper); }
.eyebrow-light > .eyebrow-dot { background: var(--acid); box-shadow: 0 0 0 5px rgba(216, 255, 79, 0.17); }
.demo-copy h2 { max-width: 900px; }
.demo-copy h2 em { color: var(--paper); }
.demo-copy > p { max-width: 590px; margin: 32px 0; font-size: 18px; line-height: 1.55; }
.demo-points { display: flex; flex-wrap: wrap; gap: 9px; }
.demo-points span { padding: 10px 12px; border: 1px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.demo-form { position: relative; align-self: start; padding: 27px; border: 1px solid var(--ink); background: var(--card); box-shadow: 12px 12px 0 var(--ink); }
.form-heading { display: flex; justify-content: space-between; margin-bottom: 32px; padding-bottom: 19px; border-bottom: 2px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 700; }
.demo-form label { display: block; margin-bottom: 23px; }
.demo-form .website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.demo-form label > span { display: block; margin-bottom: 9px; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.demo-form input,
.demo-form select { width: 100%; min-height: 50px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: none; background: transparent; color: var(--ink); font: 16px var(--sans); }
.demo-form input:focus,
.demo-form select:focus { border-bottom: 3px solid var(--coral); }
.demo-form input::placeholder { color: #9b978d; }
.demo-form select { cursor: pointer; }
.form-error { min-height: 18px; margin: -8px 0 8px; color: #c63518; font-size: 12px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 59px; padding: 0 20px; border: 1px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer; font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.form-submit i { color: var(--acid); font-size: 19px; font-style: normal; transition: transform 180ms ease; }
.form-submit[disabled] { cursor: wait; opacity: 0.7; }
.form-submit:hover i,
.form-submit:focus-visible i { transform: translateX(5px); }
.form-footnote { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.form-success { position: absolute; inset: 0; display: none; align-content: center; justify-items: start; padding: 42px; background: var(--acid); }
.form-success.is-visible { display: grid; }
.form-success > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; }
.form-success h3 { margin: 30px 0 13px; font-family: var(--display); font-size: 45px; font-weight: 400; letter-spacing: -0.04em; }
.form-success p { margin: 0; font-size: 14px; line-height: 1.55; }
.form-success button { margin-top: 28px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-weight: 700; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; align-items: center; min-height: 180px; padding: 45px clamp(22px, 4vw, 68px); background: var(--ink); color: #fff; }
.footer-brand { color: #fff; }
.site-footer > p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 13px; }
.site-footer > div { display: flex; gap: 25px; }
.site-footer > div a { font-size: 11px; text-decoration: none; text-transform: uppercase; }
.site-footer > span { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.44); font-family: var(--mono); font-size: 9px; }

.mobile-demo-cta { display: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.5; }
}

@keyframes speak {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1.4); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 820px; }
  .call-stage { width: min(100%, 620px); margin-top: 10px; }
  .pressure-heading,
  .handles-heading { grid-template-columns: 1fr; gap: 32px; }
  .pressure-heading > p,
  .handles-heading > p { max-width: 560px; }
  .pressure-grid { grid-template-columns: 1fr; }
  .pressure-grid article { min-height: 240px; }
  .pressure-grid h3 { margin-top: 70px; }
  .workflow-section { grid-template-columns: 1fr; }
  .workflow-intro > p { max-width: 590px; }
  .handles-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-section { gap: 6vw; padding-inline: 35px; }
  .rules-visual { padding: 28px; }
  .launch-rail { grid-template-columns: repeat(2, 1fr); }
  .launch-rail article:nth-child(2) { border-right: 0; }
  .launch-rail article:nth-child(3),
  .launch-rail article:nth-child(4) { border-top: 1px solid var(--ink); }
  .launch-rail article:nth-child(3) { padding-left: 0; }
  .launch-rail article:nth-child(3)::before { left: 0; }
  .fit-section { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; }
  .demo-section { grid-template-columns: 1fr; }
  .demo-form { width: min(100%, 620px); }
}

@media (max-width: 600px) {
  body { background-size: 100% 48px; }
  .site-header { min-height: 70px; padding-inline: 18px; }
  .brand { font-size: 12px; }
  .header-cta { font-size: 10px; }
  .hero { min-height: auto; padding: 54px 18px 64px; }
  h1 { font-size: clamp(50px, 15.5vw, 72px); }
  .hero-lede { margin-top: 26px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 23px; margin-top: 31px; }
  .button { width: 100%; justify-content: space-between; }
  .hero-note { margin-top: 31px; }
  .call-stage { padding: 48px 4px 42px; }
  .call-stage::after { right: 2%; width: 56%; }
  .orbit-label-one { left: -7px; }
  .orbit-label-two { right: -8px; }
  .call-card { min-height: 565px; box-shadow: 8px 8px 0 var(--ink); }
  .call-header { padding-inline: 17px; }
  .transcript { padding-inline: 17px; }
  .reservation-result { margin-inline: 17px; }
  .call-footer { padding-inline: 17px; }
  .capability-strip { justify-content: flex-start; overflow-x: auto; padding-inline: 18px; scrollbar-width: none; }
  .capability-strip::-webkit-scrollbar { display: none; }
  .pressure-section,
  .workflow-section,
  .handles-section,
  .launch-section,
  .faq-section,
  .demo-section { padding: 80px 18px; }
  .pressure-heading { margin-top: 35px; }
  .pressure-grid { margin-top: 55px; }
  .pressure-grid article { padding: 20px; }
  .workflow-section { gap: 65px; }
  .workflow-intro h2,
  .handles-heading h2 { margin-top: 35px; }
  .step button { grid-template-columns: 33px 1fr auto; min-height: 76px; }
  .step > p,
  .step.is-active > p { padding-left: 33px; padding-right: 33px; }
  .activity-main { grid-template-columns: auto 1fr; }
  .confirmed-pill { grid-column: 1 / -1; width: max-content; }
  .handles-grid { grid-template-columns: 1fr; }
  .handle-card { min-height: 310px; }
  .handle-icon { margin-top: 45px; }
  .rules-section { grid-template-columns: 1fr; padding: 90px 18px; }
  .rules-visual { padding: 22px; }
  .rules-paper { padding: 18px; box-shadow: 7px 7px 0 var(--ink); }
  .rule-row { grid-template-columns: 1fr auto 23px; gap: 9px; }
  .rules-copy { margin-top: 45px; }
  .launch-rail { grid-template-columns: 1fr; }
  .launch-rail article,
  .launch-rail article:not(:first-child) { min-height: 230px; padding: 22px 0; border-right: 0; border-top: 1px solid var(--ink); }
  .launch-rail article:first-child { border-top: 0; }
  .launch-rail article:not(:first-child)::before { left: 0; }
  .launch-rail h3 { margin-top: 64px; }
  .fit-statement,
  .fit-list { padding: 65px 18px; }
  .faq-section { gap: 60px; }
  .faq-item button { min-height: 84px; }
  .demo-section { gap: 60px; padding-bottom: 100px; }
  .demo-form { padding: 21px; box-shadow: 7px 7px 0 var(--ink); }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 55px 18px 110px; }
  .site-footer > span { grid-column: auto; }
  .site-footer > div { flex-wrap: wrap; }
  .mobile-demo-cta { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 50; display: flex; align-items: center; justify-content: space-between; min-height: 55px; padding: 0 19px; border: 1px solid var(--acid); background: var(--ink); color: #fff; box-shadow: 4px 4px 0 var(--coral); text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; }
  .mobile-demo-cta span { color: var(--acid); font-size: 19px; }
}

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