:root {
  --ink: #103d35;
  --deep: #073a32;
  --green: #087d6b;
  --mint: #dcefe8;
  --paper: #f7f8f3;
  --white: #fff;
  --orange: #f3a31b;
  --line: #cddbd5;
  --muted: #5d746f;
  --sans: "IBM Plex Sans", Inter, system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --chat-viewport-height: 100dvh;
  --chat-viewport-offset-top: 0px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site-header {
  height: 80px;
  max-width: 1280px;
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  position: relative;
  z-index: 20;
}
.brand-crop {
  display: block;
  position: relative;
  height: 54px;
}
.brand-crop img {
  position: absolute;
  width: 230px;
  height: auto;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.desktop-nav a,
.text-link {
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.desktop-nav a:hover,
.text-link:hover {
  border-color: currentColor;
}
.button {
  background: var(--green);
  color: #fff;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 0;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--orange);
}
.button:active,
.chat-launcher:active,
.chat-icon-button:active,
.chat-composer button:active,
.chat-suggestions button:active,
.chat-demo-row button:active,
.chat-modal button:active {
  transform: translateY(1px);
  opacity: 0.88;
}
.button-small {
  font-size: 13px;
  padding: 11px 15px;
  gap: 18px;
}
.menu-button,
.mobile-nav {
  display: none;
}
.hero {
  min-height: 690px;
  max-width: 1280px;
  margin: auto;
  padding: 72px 32px 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  font: 500 12px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 9px;
  align-items: center;
}
.eyebrow > span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}
h1,
h2 {
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 24px 0;
  font-weight: 600;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--green);
  font-style: normal;
}
.hero-lede {
  font-size: 19px;
  max-width: 550px;
  color: #46645d;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 34px 0;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
}
.hero-note {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  box-shadow: 0 0 0 5px #f3a31b20;
}
.order-machine {
  background: #fff;
  border: 1px solid #b8ccc5;
  box-shadow: 18px 18px 0 var(--mint);
  transform: rotate(1deg);
}
.machine-top {
  height: 46px;
  border-bottom: 1px solid var(--line);
  padding: 0 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.machine-top i,
.confirmed i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21aa79;
  margin-right: 7px;
}
.mono {
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.conversation {
  padding: 22px 24px;
  background: linear-gradient(#f8faf8cc, #f8faf8cc),
    radial-gradient(#b6c8c1 1px, transparent 1px);
  background-size: auto, 15px 15px;
}
.bubble {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 13px;
  margin: 0 0 9px;
  max-width: 78%;
  border-radius: 2px 11px 11px 11px;
}
.bubble.customer {
  background: #e8ecea;
  margin-left: auto;
  border-radius: 11px 2px 11px 11px;
}
.bubble.assistant {
  background: var(--mint);
}
.bubble.short {
  max-width: 43%;
}
.bubble.tiny {
  max-width: 25%;
}
.system-check {
  font: 400 9px var(--mono);
  text-transform: uppercase;
  color: #628078;
  text-align: center;
  margin: 11px 0;
}
.system-check span {
  color: var(--green);
}
.order-ticket {
  margin: 0 24px 24px;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--orange);
}
.ticket-head,
.ticket-foot {
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 10px;
}
.ticket-head {
  border-bottom: 1px dashed var(--line);
}
.confirmed {
  color: var(--green);
  font-weight: 600;
}
.ticket-main {
  padding: 12px 14px;
}
.ticket-main div {
  display: grid;
  grid-template-columns: 35px auto;
  font-size: 12px;
  margin: 5px 0;
}
.ticket-foot {
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.trust-strip {
  background: var(--deep);
  color: white;
  padding: 25px max(32px, calc((100% - 1216px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-strip p {
  font-size: 12px;
  color: #a9c5bd;
}
.trust-strip div {
  display: flex;
  gap: 30px;
  font: 400 11px var(--mono);
  text-transform: uppercase;
}
.section {
  padding: 110px max(32px, calc((100% - 1216px) / 2));
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid article {
  padding: 36px 38px 45px;
  border-right: 1px solid var(--line);
}
.process-grid article:last-child {
  border: 0;
}
.step {
  font-size: 10px;
  color: var(--green);
}
.step-icon {
  font: 400 42px var(--mono);
  height: 90px;
  display: flex;
  align-items: center;
  color: var(--orange);
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0;
}
.process-grid p,
.ops-grid p {
  color: var(--muted);
  font-size: 14px;
}
.operations {
  background: var(--deep);
  color: white;
}
.section-heading.light > p:last-child {
  color: #9bbab2;
}
.section-heading.light .eyebrow > span {
  background: var(--orange);
}
.ops-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.ops-grid article {
  border: 1px solid #35645b;
  padding: 30px;
  min-height: 235px;
}
.ops-grid .featured {
  grid-row: span 2;
  min-height: 470px;
}
.ops-grid > article:hover {
  background: #0b473d;
}
.featured > .mono {
  font-size: 10px;
  color: #8eb0a7;
}
.mini-dashboard {
  display: grid;
  grid-template-columns: 42px 1fr;
  margin-top: 36px;
  background: #eef3ef;
  color: var(--ink);
  height: 340px;
  box-shadow: 10px 10px 0 #022a24;
}
.dash-side {
  background: #0c5f53;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.dash-side b {
  background: var(--orange);
  padding: 2px 7px;
}
.dash-side i {
  width: 15px;
  height: 2px;
  background: #8ab6ad;
}
.dash-main {
  padding: 20px;
}
.dash-main > p {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
}
.dash-main > p strong {
  font-size: 26px;
}
.dash-cards {
  display: grid;
  gap: 10px;
}
.dash-cards span {
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  font-size: 11px;
}
.dash-cards i {
  color: var(--green);
  font: 500 8px var(--mono);
  text-transform: uppercase;
}
.dash-cards small {
  color: var(--muted);
}
.dash-chart {
  height: 58px;
  margin-top: 15px;
  background: linear-gradient(
    150deg,
    transparent 45%,
    var(--orange) 46%,
    var(--orange) 49%,
    transparent 50%
  );
}
.feature-mark {
  font-size: 35px;
  color: var(--orange);
  display: block;
  margin-bottom: 45px;
}
.control {
  background: #e6f1ed;
}
.control-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.control h2 {
  font-size: clamp(40px, 4.5vw, 62px);
}
.control-card > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 600px;
}
.control ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.control li {
  margin: 11px 0;
  font-size: 14px;
}
.control li span {
  color: var(--green);
  margin-right: 10px;
}
.handoff {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 var(--green);
}
.handoff-top {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.handoff-top .mono {
  color: #c76538;
}
.handoff-body {
  padding: 32px 26px;
  display: flex;
  gap: 16px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.handoff-body div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.handoff-body small,
.handoff-body span {
  font-size: 10px;
  color: var(--muted);
}
.handoff button {
  width: calc(100% - 52px);
  margin: 0 26px 26px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 13px;
  display: flex;
  justify-content: space-between;
}
.pilot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pilot h2 {
  font-size: clamp(43px, 4.6vw, 64px);
}
.pilot-copy > p:last-child {
  color: var(--muted);
  max-width: 500px;
}
.pilot-list > div {
  display: grid;
  grid-template-columns: 65px 1fr;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.pilot-list b {
  font: 400 12px var(--mono);
  color: var(--orange);
}
.pilot-list span {
  display: flex;
  flex-direction: column;
}
.pilot-list strong {
  font-size: 17px;
}
.pilot-list small {
  color: var(--muted);
  margin-top: 5px;
}
.demo {
  padding-top: 30px;
}
.demo-card {
  background: var(--orange);
  text-align: center;
  padding: 90px 30px;
  color: var(--ink);
}
.demo-card > p:first-child {
  font-size: 11px;
}
.demo-card h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.demo-card h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.demo-card > p:not(:first-child) {
  max-width: 640px;
  margin: 0 auto 30px;
}
.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.button-light:hover {
  box-shadow: 7px 7px 0 var(--ink);
}
.demo-card small {
  display: block;
  margin-top: 24px;
}
footer {
  max-width: 1216px;
  margin: auto;
  padding: 50px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
footer > div:not(.footer-brand):not(.footer-bottom) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
footer strong {
  font-size: 11px;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22a97a;
  margin-right: 6px;
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    margin-left: 10px;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
  .menu-button span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
    box-shadow: 7px 7px 0 var(--orange);
    flex-direction: column;
    gap: 16px;
  }
  .mobile-nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .order-machine {
    max-width: 650px;
  }
  .trust-strip,
  .section-heading,
  .control-card,
  .pilot {
    display: grid;
    grid-template-columns: 1fr;
  }
  .trust-strip {
    gap: 10px;
  }
  .trust-strip div {
    flex-wrap: wrap;
  }
  .section-heading {
    gap: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ops-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ops-grid .featured {
    grid-column: 1/-1;
  }
  .control-card,
  .pilot {
    gap: 45px;
  }
  footer {
    margin: 0 30px;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 0 18px;
    height: 68px;
  }
  .site-header > .button {
    display: none;
  }
  .brand-crop {
    width: 155px;
  }
  .brand-crop img {
    width: 195px;
  }
  .hero {
    padding: 35px 20px 65px;
    gap: 50px;
  }
  h1 {
    font-size: 49px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .machine-top .mono {
    display: none;
  }
  .conversation {
    padding: 18px 14px;
  }
  .order-ticket {
    margin: 0 14px 14px;
  }
  .bubble {
    max-width: 87%;
  }
  .bubble.short {
    max-width: 62%;
  }
  .bubble.tiny {
    max-width: 42%;
  }
  .trust-strip {
    padding: 24px 20px;
  }
  .trust-strip div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .section {
    padding: 68px 18px;
  }
  .section-heading {
    align-items: start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .section-heading h2,
  .control h2,
  .pilot h2 {
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .section-heading > p:last-child {
    max-width: 34rem;
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
  }
  .process-grid article {
    padding: 0;
  }
  .process-grid {
    gap: 12px;
    border: 0;
  }
  .process-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    min-height: 0;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--green);
    background: #fffdfa;
  }
  .process-grid article:last-child {
    border: 1px solid var(--line);
    border-left: 4px solid var(--green);
  }
  .process-grid .step {
    grid-column: 2;
    font-size: 10px;
  }
  .process-grid .step-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 44px;
    height: 44px;
    align-self: start;
    justify-content: center;
    border: 1px solid #f3a31b55;
    background: #f3a31b18;
    font-size: 24px;
    line-height: 1;
  }
  .process-grid h3 {
    grid-column: 2;
    margin: 2px 0 4px;
    font-size: 21px;
  }
  .process-grid p {
    grid-column: 2;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }
  .ops-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .operations .section-heading > p:last-child,
  .ops-grid p {
    color: #b6cec7;
  }
  .ops-grid article {
    min-height: 0;
    padding: 18px 16px;
  }
  .ops-grid .featured {
    grid-column: auto;
    min-height: auto;
    padding: 16px;
  }
  .mini-dashboard {
    height: 218px;
    margin-top: 18px;
    box-shadow: 6px 6px 0 #022a24;
  }
  .dash-side {
    gap: 18px;
    padding: 12px 9px;
  }
  .dash-main {
    padding: 16px;
  }
  .dash-main > p {
    margin: 0 0 14px;
    font-size: 12px;
  }
  .dash-main > p strong {
    font-size: 24px;
  }
  .dash-cards span {
    padding: 10px;
  }
  .dash-chart {
    display: none;
  }
  .ops-grid article:not(.featured) {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
  }
  .feature-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin: 0;
    border: 1px solid #f3a31b66;
    background: #f3a31b12;
    font-size: 24px;
  }
  .ops-grid article:not(.featured) h3,
  .ops-grid article:not(.featured) p {
    grid-column: 2;
  }
  .ops-grid article:not(.featured) h3 {
    margin: 0 0 5px;
    font-size: 21px;
  }
  .ops-grid article:not(.featured) p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
  }
  .control-card {
    gap: 35px;
  }
  .handoff-body {
    padding: 25px 18px;
  }
  .pilot-list > div {
    grid-template-columns: 42px 1fr;
  }
  .demo {
    padding-top: 0;
  }
  .demo-card {
    padding: 65px 18px;
  }
  .demo-card h2 {
    font-size: 40px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 45px 20px 25px;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-brand .brand-crop {
    margin-left: -10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.brand-crop {
  width: 205px;
}
@media (max-width: 600px) {
  .brand-crop {
    width: 172px;
  }
}

@media (max-width: 760px) {
  .process,
  .operations {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .process .section-heading,
  .operations .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .process .section-heading .eyebrow,
  .operations .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  .process .section-heading h2,
  .operations .section-heading h2 {
    max-width: 8.6em;
    margin: 0 0 16px;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 0.98;
  }
  .process .section-heading > p:last-child,
  .operations .section-heading > p:last-child {
    max-width: 25rem;
    font-size: 17px;
    line-height: 1.5;
  }
  .process-grid {
    position: relative;
    display: grid;
    gap: 16px;
    border: 0;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(var(--orange), var(--green));
  }
  .process-grid article,
  .process-grid article:last-child {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
    min-height: 132px;
    padding: 18px 0 18px 0;
    border: 0;
    background: transparent;
  }
  .process-grid .step-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    align-self: start;
    border: 2px solid var(--orange);
    background: var(--paper);
    color: var(--green);
    box-shadow: 4px 4px 0 var(--orange);
    font-size: 25px;
    line-height: 1;
  }
  .process-grid .step,
  .process-grid h3,
  .process-grid p {
    grid-column: 2;
  }
  .process-grid .step {
    align-self: end;
    margin-top: 2px;
    color: var(--green);
    font-size: 11px;
  }
  .process-grid h3 {
    margin: 6px 0 6px;
    font-size: 25px;
    line-height: 1.06;
  }
  .process-grid p {
    max-width: 23rem;
    margin: 0;
    color: #405f58;
    font-size: 16px;
    line-height: 1.5;
  }
  .operations {
    background:
      linear-gradient(180deg, #083a32 0%, #052f29 100%);
  }
  .operations .section-heading h2 {
    max-width: 9em;
  }
  .operations .section-heading > p:last-child {
    color: #c7dad5;
  }
  .ops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ops-grid article,
  .ops-grid .featured {
    min-height: 0;
    border-color: #42766c;
  }
  .ops-grid .featured {
    padding: 16px;
    background: #0a443b;
  }
  .featured > .mono {
    color: #b8d0ca;
    font-size: 11px;
  }
  .mini-dashboard {
    height: auto;
    min-height: 0;
    margin-top: 16px;
    grid-template-columns: 38px 1fr;
    box-shadow: 6px 6px 0 #031f1b;
  }
  .dash-side {
    gap: 14px;
    padding: 11px 8px;
  }
  .dash-side i:nth-of-type(n + 3) {
    display: none;
  }
  .dash-main {
    padding: 14px;
  }
  .dash-main > p {
    margin: 0 0 12px;
    font-size: 12px;
  }
  .dash-main > p strong {
    font-size: 28px;
  }
  .dash-cards {
    gap: 8px;
  }
  .dash-cards span {
    padding: 10px;
    font-size: 12px;
  }
  .dash-chart {
    display: none;
  }
  .ops-grid article:not(.featured) {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0 14px;
    padding: 16px;
    background: #083a32;
  }
  .ops-grid article:not(.featured) .feature-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid #f3a31b88;
    background: #f3a31b16;
    color: var(--orange);
    font-size: 25px;
  }
  .ops-grid article:not(.featured) h3,
  .ops-grid article:not(.featured) p {
    grid-column: 2;
  }
  .ops-grid article:not(.featured) h3 {
    margin: 1px 0 5px;
    font-size: 23px;
    line-height: 1.08;
  }
  .ops-grid article:not(.featured) p {
    margin: 0;
    color: #c7dad5;
    font-size: 15px;
    line-height: 1.45;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-chat-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-chat-link:hover {
  text-decoration: underline;
}
.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--green);
  color: #fff;
  box-shadow: 5px 5px 0 var(--orange);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.chat-launcher:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--orange);
}
.chat-launcher:focus-visible,
.chat-icon-button:focus-visible,
.chat-composer button:focus-visible,
.chat-suggestions button:focus-visible,
.chat-demo-row button:focus-visible,
.chat-modal button:focus-visible,
.chat-modal input:focus-visible,
.chat-modal select:focus-visible,
.chat-composer textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.chat-launcher svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.chat-launcher-status {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ee0b8;
  border: 2px solid var(--green);
}
.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 102px;
  z-index: 29;
  width: min(510px, calc(100vw - 30px));
  height: min(690px, calc(100svh - 130px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.18s, transform 0.18s;
}
.chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.chat-shell {
  height: 100%;
  min-height: 480px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--mint);
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  background: var(--deep);
  color: #fff;
  border-bottom: 4px solid var(--orange);
}
.chat-kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  color: var(--orange);
}
.chat-kicker i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  background: #6cd3a7;
}
.chat-header h2 {
  font-size: 17px;
  letter-spacing: -0.02em;
  margin: 3px 0 0;
}
.chat-icon-button,
.chat-modal-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff55;
  background: transparent;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.chat-messages {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow-y: auto;
  padding: 18px;
  background: radial-gradient(#b6c8c1 1px, transparent 1px);
  background-size: 17px 17px;
}
.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  box-shadow: 2px 2px 0 #dce7e2;
}
.chat-message.assistant {
  align-self: flex-start;
  border-radius: 2px 12px 12px 12px;
}
.chat-message.user {
  align-self: flex-end;
  background: var(--mint);
  border-color: #9fc8ba;
  border-radius: 12px 2px 12px 12px;
}
.chat-message.is-streaming::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 3px;
  border-right: 2px solid var(--orange);
  vertical-align: -2px;
  animation: chat-caret 0.85s steps(1) infinite;
}
.chat-suggestions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 10px 14px 8px;
  border-top: 1px solid var(--line);
}
.chat-suggestions[hidden] {
  display: none;
}
.chat-suggestions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 7px 9px;
  font: 500 10px var(--mono);
  cursor: pointer;
}
.chat-suggestions button:hover {
  border-color: var(--green);
  background: var(--mint);
}
.chat-demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 14px;
}
.chat-demo-row button {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 700;
  cursor: pointer;
}
.chat-demo-row > span {
  font-size: 8px;
  color: var(--muted);
}
.chat-composer {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 8px 14px 5px;
}
.chat-composer textarea {
  width: 100%;
  min-height: 44px;
  max-height: 116px;
  resize: none;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  font: 14px var(--sans);
}
.chat-composer button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: var(--green);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.chat-composer button:disabled,
.chat-composer textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chat-status {
  min-height: 22px;
  margin: 0;
  padding: 0 14px 8px;
  color: var(--muted);
  font: 9px var(--mono);
}
.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.chat-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.chat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #062e29b8;
  backdrop-filter: blur(7px);
}
.chat-modal-card {
  position: relative;
  z-index: 1;
  width: min(450px, 100%);
  display: grid;
  gap: 14px;
  padding: 23px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--orange);
}
.chat-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  border-color: var(--ink);
  color: var(--ink);
}
.chat-modal-copy {
  padding-right: 42px;
}
.chat-modal-copy h2 {
  font-size: 28px;
  line-height: 1.05;
  margin: 10px 0;
}
.chat-modal-copy p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.chat-verify-step {
  display: grid;
  gap: 8px;
}
.chat-verify-step[hidden] {
  display: none;
}
.chat-verify-step label,
.lead-card > label {
  font: 500 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.chat-phone-grid {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}
.chat-phone-grid select,
.chat-phone-grid input,
.chat-otp input,
.lead-card > label > input {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 10px;
  font: 14px var(--sans);
}
.chat-verify-step > button,
.chat-code-head button,
.chat-modal-cancel,
.lead-submit {
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.chat-code-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.chat-code-head button {
  min-height: 30px;
  padding: 0 9px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}
.chat-otp {
  display: grid;
  grid-template-columns: var(--otp-template, repeat(6, 1fr));
  gap: 7px;
  align-items: center;
}
.chat-otp span {
  text-align: center;
  color: var(--muted);
}
.chat-otp input {
  height: 45px;
  padding: 0;
  text-align: center;
  font: 600 18px var(--mono);
}
.chat-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
.chat-modal-status {
  min-height: 18px;
  margin: 0;
  color: #b24e2b;
  font-size: 11px;
}
.chat-modal-cancel {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.lead-card > label {
  display: grid;
  gap: 6px;
}
.lead-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font: 12px var(--sans) !important;
}
.lead-consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}
.lead-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
}
.lead-card.is-success
  > *:not(.chat-modal-close):not(.chat-modal-copy):not(.chat-modal-status) {
  display: none;
}
.lead-card.is-success .chat-modal-copy p {
  font-size: 14px;
  color: var(--green);
}
body.is-modal-open {
  overflow: hidden;
}
@keyframes chat-caret {
  50% {
    opacity: 0;
  }
}
@media (max-width: 600px) {
  body.is-chat-open {
    overflow: hidden;
    touch-action: none;
  }
  .chat-launcher {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .chat-panel {
    top: var(--chat-viewport-offset-top, 0px);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: var(--chat-viewport-height, 100dvh);
    max-height: none;
    z-index: 35;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.18s ease, transform 0.22s ease;
  }
  .chat-panel.is-open {
    opacity: 1;
    transform: translateY(0);
  }
  .chat-shell {
    min-height: 0;
    height: 100%;
    border: 0;
    box-shadow: none;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    background: #f4f6f0;
  }
  .chat-header {
    min-height: 64px;
    padding: max(13px, env(safe-area-inset-top)) 14px 12px;
  }
  .chat-header h2 {
    font-size: 16px;
  }
  .chat-messages {
    min-height: 0;
    padding: 14px 12px 18px;
    overscroll-behavior: contain;
  }
  .chat-message {
    max-width: 92%;
    font-size: 14px;
  }
  .chat-suggestions {
    padding: 9px 12px 7px;
  }
  .chat-suggestions button {
    min-height: 44px;
    white-space: normal;
  }
  .chat-demo-row {
    padding: 8px 12px;
  }
  .chat-demo-row button {
    min-height: 44px;
    flex: 1;
    justify-content: space-between;
  }
  body.is-chat-typing .chat-suggestions,
  body.is-chat-typing .chat-demo-row {
    display: none;
  }
  .chat-composer {
    grid-template-columns: 1fr 48px;
    gap: 8px;
    padding: 8px 12px max(8px, env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .chat-composer textarea {
    min-height: 48px;
    font-size: 16px;
  }
  .chat-composer button {
    width: 48px;
    height: 48px;
  }
  .chat-status {
    min-height: 0;
    padding: 0 12px 6px;
  }
  .chat-demo-row > span {
    display: none;
  }
  body.is-chat-open .chat-launcher {
    display: none;
  }
  .chat-modal {
    z-index: 45;
    top: var(--chat-viewport-offset-top, 0px);
    bottom: auto;
    height: var(--chat-viewport-height, 100dvh);
    align-items: start;
    justify-items: center;
    place-items: start center;
    overflow-y: auto;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  }
  .chat-modal-card {
    width: min(450px, 100%);
    max-height: none;
    overflow-y: auto;
    padding: 18px;
  }
  .chat-modal-copy h2 {
    font-size: 25px;
  }
  .chat-modal.is-code-step .chat-modal-card {
    gap: 10px;
    padding: 15px;
  }
  .chat-modal.is-code-step .chat-modal-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
  .chat-modal.is-code-step .chat-modal-copy {
    padding-right: 48px;
  }
  .chat-modal.is-code-step .chat-modal-copy h2 {
    margin: 6px 0;
    font-size: 22px;
  }
  .chat-modal.is-code-step .chat-modal-copy p {
    display: none;
  }
  .chat-code-head {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
  }
  .chat-code-head button {
    min-height: 40px;
    margin-left: auto;
    padding: 0 10px;
    white-space: nowrap;
  }
  .chat-otp {
    gap: 5px;
  }
  .chat-otp input {
    min-height: 46px;
    height: 46px;
    font-size: 19px;
  }
  .chat-modal.is-code-step .chat-modal-status {
    min-height: auto;
    font-size: 12px;
  }
  .chat-modal.is-code-step .chat-modal-cancel {
    min-height: 44px;
  }
  .chat-phone-grid select,
  .chat-phone-grid input,
  .chat-verify-step > button,
  .chat-modal-cancel {
    min-height: 48px;
    font-size: 16px;
  }
}
.lead-card.is-success
  > *:not(.chat-modal-close):not(.chat-modal-copy):not(.chat-modal-status) {
  display: none !important;
}
.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.schedule-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #062e29d6;
  backdrop-filter: blur(10px);
}
.schedule-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(980px, calc(100vw - 32px));
  height: min(820px, calc(100dvh - 36px));
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
}
.schedule-modal-copy {
  padding: 24px 78px 20px 24px;
  border-bottom: 1px solid var(--line);
}
.schedule-modal-copy h2 {
  margin: 8px 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}
.schedule-modal-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.schedule-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: 24px var(--sans);
}
.schedule-modal-close:hover {
  background: var(--ink);
}
.schedule-modal-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.schedule-frame-wrap {
  position: relative;
  min-height: 0;
  margin: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.schedule-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  background: #fff;
}
.schedule-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font: 500 12px var(--mono);
}
.schedule-frame-wrap.is-loaded .schedule-loading {
  display: none;
}
.schedule-frame-wrap.is-error {
  display: grid;
  min-height: 360px;
  place-items: center;
}
.demo-card .button {
  font-family: var(--sans);
}
@media (max-width: 600px) {
  .schedule-modal {
    padding: 0;
  }
  .schedule-modal-card {
    width: 100%;
    height: 100dvh;
    border: 0;
    box-shadow: none;
  }
  .schedule-modal-copy {
    padding: 20px 64px 16px 18px;
  }
  .schedule-modal-copy h2 {
    font-size: 28px;
  }
  .schedule-modal-copy p {
    font-size: 12px;
  }
  .schedule-modal-close {
    top: 14px;
    right: 14px;
  }
  .schedule-frame-wrap {
    margin: 10px;
  }
  .schedule-frame-wrap iframe {
    min-height: 620px;
  }
}
.chat-message.assistant {
  white-space: normal;
}
.chat-message.assistant p {
  margin: 0 0 10px;
}
.chat-message.assistant p:last-child {
  margin-bottom: 0;
}
.chat-message.assistant ul,
.chat-message.assistant ol {
  margin: 8px 0 10px;
  padding-left: 22px;
}
.chat-message.assistant li {
  margin: 5px 0;
  padding-left: 2px;
}
.chat-message.assistant h3,
.chat-message.assistant h4,
.chat-message.assistant h5 {
  margin: 12px 0 7px;
  font-size: 14px;
  line-height: 1.25;
}
.chat-message.assistant strong {
  font-weight: 700;
  color: var(--deep);
}
.chat-message.assistant em {
  font-style: italic;
}
.chat-message.assistant code {
  padding: 1px 4px;
  background: #e8efeb;
  color: var(--deep);
  font: 11px var(--mono);
}
.chat-message.assistant pre {
  max-width: 100%;
  margin: 9px 0;
  padding: 10px;
  overflow-x: auto;
  background: var(--deep);
  color: #fff;
}
.chat-message.assistant pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.chat-message.assistant blockquote {
  margin: 9px 0;
  padding: 7px 10px;
  border-left: 3px solid var(--orange);
  background: #f5f2e8;
  color: var(--muted);
}
.chat-message.assistant a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
