:root {
  --ink: #173f3a;
  --ink-deep: #0d2f2b;
  --ink-soft: #41635f;
  --paper: #f7f4ea;
  --paper-deep: #eee9dc;
  --white: #fffef9;
  --mint: #dcece4;
  --mint-bright: #b9e0ce;
  --coral: #d96b4f;
  --coral-deep: #b94f38;
  --gold: #e2bd61;
  --line: rgba(23, 63, 58, 0.18);
  --line-light: rgba(255, 254, 249, 0.2);
  --shadow: 0 24px 70px rgba(14, 47, 43, 0.13);
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Standalone public-information pages */
.legal-page {
  background: #f5f1e9;
  color: var(--ink, #173f3a);
}

.legal-page .site-header {
  position: relative;
  background: #0a2926;
}

.legal-home-link {
  text-decoration: none;
}

.legal-main {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1,
.not-found-card h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-updated {
  color: #62736e;
  font-size: 0.9rem;
}

.legal-content h2 {
  margin: 2.4rem 0 0.65rem;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li,
.not-found-card > p {
  color: #465954;
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content a {
  color: #0c675c;
  font-weight: 700;
}

.legal-content ul {
  padding-left: 1.35rem;
}

.legal-owner {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 63, 58, 0.18);
  font-size: 0.9rem !important;
}

.not-found-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(155, 214, 194, 0.3), transparent 38%),
    radial-gradient(circle at 82% 80%, rgba(254, 137, 97, 0.2), transparent 34%),
    #f5f1e9;
}

.not-found-card {
  width: min(680px, 100%);
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(23, 63, 58, 0.16);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 80px rgba(13, 47, 43, 0.12);
}

.not-found-card img {
  width: min(270px, 80%);
  height: auto;
  margin-bottom: 3.5rem;
}

.not-found-card .button {
  margin-top: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--ink-deep);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(13, 47, 43, 0.96), rgba(17, 59, 53, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(3, 24, 21, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-image {
  display: block;
  width: 160px;
  height: auto;
  transition: filter 240ms ease, transform 240ms ease;
}

.brand:hover .brand-logo-image {
  filter: drop-shadow(0 8px 18px rgba(155, 214, 194, 0.14));
  transform: translateY(-1px) scale(1.015);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 254, 249, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav .nav-cta {
  padding: 11px 17px;
  color: var(--ink-deep);
  background: var(--gold);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover {
  color: var(--ink-deep);
  background: #edcc7a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  --spot-x: 78%;
  --spot-y: 30%;
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero::after,
.demo-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(560px circle at var(--spot-x) var(--spot-y), rgba(185, 224, 206, 0.12), transparent 62%);
  content: "";
  opacity: 0.95;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

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

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -270px;
  right: 4%;
  border: 1px solid rgba(185, 224, 206, 0.22);
  box-shadow: inset 0 0 120px rgba(185, 224, 206, 0.06);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  right: 27%;
  bottom: -210px;
  background: rgba(217, 107, 79, 0.1);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 682px;
  padding: 84px 0 76px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(56px, 8vw, 105px);
  align-items: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 23px;
  align-items: center;
  gap: 12px;
  color: var(--mint-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--coral-deep);
}

.eyebrow-light {
  color: var(--mint-bright);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(54px, 5.25vw, 76px);
  line-height: 0.97;
}

h1 em {
  color: var(--mint-bright);
  font-weight: inherit;
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 254, 249, 0.74);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 21px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
  color: var(--ink-deep);
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(226, 189, 97, 0.14);
}

.button-primary::after {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: skewX(-18deg) translateX(0);
  transition: transform 520ms ease;
}

.button-primary:hover::after {
  transform: skewX(-18deg) translateX(610%);
}

.button-primary:hover {
  background: #edcc7a;
  box-shadow: 0 14px 36px rgba(226, 189, 97, 0.18);
}

.text-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--mint-bright);
}

.hero-assurances {
  display: flex;
  margin: 38px 0 0;
  padding: 25px 0 0;
  gap: 23px;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 254, 249, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-bright);
  content: "";
}

.answer-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotateZ(1.25deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.answer-stage:hover {
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.34), 0 0 55px rgba(185, 224, 206, 0.08);
}

.answer-stage::before {
  position: absolute;
  z-index: -1;
  inset: -28px 24px 28px -24px;
  border: 1px solid rgba(185, 224, 206, 0.24);
  border-radius: 14px;
  content: "";
}

.answer-stage-topline {
  display: grid;
  min-height: 48px;
  padding: 0 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #66817d;
  background: #edf3ef;
  border-bottom: 1px solid #d9e4de;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bdcec7;
}

.status-pill {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48a47d;
  box-shadow: 0 0 0 3px rgba(72, 164, 125, 0.12);
}

.answer-canvas {
  min-height: 462px;
  padding: 31px 34px 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 224, 206, 0.34), transparent 30%),
    var(--white);
}

.district-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.district-chip > span:last-child {
  display: flex;
  flex-direction: column;
}

.district-chip strong {
  font-size: 12px;
  line-height: 1.2;
}

.district-chip small {
  color: #6a817e;
  font-size: 9px;
  line-height: 1.4;
}

.district-seal {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
}

.question-bubble {
  max-width: 82%;
  margin: 27px 0 20px auto;
  padding: 13px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px 14px 3px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.answer-card {
  padding: 20px;
  background: #f1f6f3;
  border: 1px solid #dbe6e1;
  border-radius: 3px 14px 14px 14px;
}

.answer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.answer-spark {
  color: var(--coral);
  font-size: 15px;
}

.answer-card p {
  margin: 13px 0 15px;
  color: #375651;
  font-size: 13px;
  line-height: 1.6;
}

.answer-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.answer-sources span {
  padding: 5px 8px;
  color: #42635e;
  background: var(--white);
  border: 1px solid #d2dfd9;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.answer-card a {
  display: inline-block;
  margin-top: 17px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.answer-stage-note {
  display: grid;
  padding: 18px 22px;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  align-items: start;
  color: var(--white);
  background: var(--coral);
}

.answer-stage-note > span {
  color: #ffd3c8;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.answer-stage-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
  line-height: 1.55;
}

.answer-stage-note strong {
  color: var(--white);
}

.signal-strip {
  color: var(--ink-deep);
  background: var(--gold);
  border-bottom: 1px solid rgba(13, 47, 43, 0.18);
}

.signal-grid {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: center;
}

.signal-grid p,
.signal-grid span {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-grid p {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.signal-grid span {
  min-height: 32px;
  padding-left: 21px;
  border-left: 1px solid rgba(13, 47, 43, 0.22);
}

.section {
  padding: 112px 0;
}

.demo-section {
  --spot-x: 52%;
  --spot-y: 48%;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.demo-orbit {
  position: absolute;
  border: 1px solid rgba(185, 224, 206, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.demo-orbit-one {
  width: 520px;
  height: 520px;
  top: -310px;
  right: -60px;
  animation: orbit-drift 12s ease-in-out infinite alternate;
}

.demo-orbit-two {
  width: 280px;
  height: 280px;
  bottom: -190px;
  left: -80px;
  border-color: rgba(217, 107, 79, 0.22);
  animation: orbit-drift 16s ease-in-out infinite alternate-reverse;
}

.demo-layout {
  position: relative;
  z-index: 2;
}

.demo-intro {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.demo-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5.5vw, 74px);
  line-height: 0.98;
}

.demo-intro > p {
  margin: 0 0 5px;
  color: rgba(255, 254, 249, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.demo-player-frame {
  position: relative;
  max-width: 1090px;
  margin: 0 auto;
  overflow: hidden;
  background: #f8f9fc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36), 0 0 70px rgba(111, 194, 164, 0.08);
}

.demo-player-frame::before {
  position: absolute;
  z-index: 2;
  top: -40%;
  left: -24%;
  width: 18%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 850ms ease;
}

.demo-player-frame:hover::before {
  left: 116%;
}

.demo-player-topline {
  display: grid;
  min-height: 48px;
  padding: 0 17px;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  color: #60706e;
  background: #eef1f2;
  border-bottom: 1px solid #d7dedf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-player-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
}

.demo-player-status i {
  width: 7px;
  height: 7px;
  background: #4f8d72;
  border-radius: 50%;
}

.demo-video-shell {
  background: #f8f9fc;
}

.demo-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 1156 / 744;
  background: #f8f9fc;
  object-fit: contain;
}

.demo-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(13, 47, 43, 0.14);
}

.demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint-bright));
  transition: width 180ms linear;
}

.demo-foot {
  display: grid;
  max-width: 1090px;
  margin: 28px auto 0;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 46px;
  align-items: start;
}

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

.demo-story li {
  display: flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.5;
  transition: opacity 220ms ease, transform 220ms ease;
}

.demo-story li:first-child {
  padding-left: 0;
  border-left: 0;
}

.demo-story span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 20px;
}

.demo-story strong {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-story li.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.demo-story li.is-active span {
  text-shadow: 0 0 24px rgba(217, 107, 79, 0.5);
}

.demo-foot > p {
  margin: 0;
  color: rgba(255, 254, 249, 0.55);
  font-size: 12px;
  line-height: 1.65;
}

.demo-summary {
  max-width: 1090px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.demo-summary summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: rgba(255, 254, 249, 0.82);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

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

.demo-summary summary span,
.demo-summary summary span::after {
  position: absolute;
  background: var(--mint-bright);
  content: "";
}

.demo-summary summary span {
  width: 18px;
  height: 1px;
  top: 30px;
  right: 2px;
}

.demo-summary summary span::after {
  width: 1px;
  height: 18px;
  top: -8px;
  left: 8px;
  transition: transform 180ms ease;
}

.demo-summary[open] summary span::after {
  transform: rotate(90deg);
}

.demo-summary-grid {
  display: grid;
  padding: 10px 0 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.demo-summary-grid p {
  margin: 0;
  color: rgba(255, 254, 249, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.demo-summary-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal][data-reveal-delay="1"] {
  transition-delay: 100ms;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-22px, 14px, 0) scale(1.04);
  }
}

.section-intro h2,
.approach-copy h2,
.outcomes-head h2,
.trust-panel h2,
.pilot-heading h2,
.faq-intro h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.02;
}

.split-heading {
  display: grid;
  margin-bottom: 55px;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.65fr);
  gap: 90px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.friction-section {
  background: var(--paper);
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.friction-card {
  position: relative;
  min-height: 360px;
  padding: 31px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(13, 47, 43, 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

@media (hover: hover) {
  .friction-card:hover {
    border-color: rgba(23, 63, 58, 0.28);
    box-shadow: 0 22px 55px rgba(13, 47, 43, 0.1);
    transform: translateY(-6px);
  }

  .boundary-card:hover {
    box-shadow: 34px 34px 0 rgba(185, 224, 206, 0.12);
    transform: translate(-3px, -3px);
  }
}

.friction-card-accent {
  background: var(--mint);
}

.card-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #8aa39d;
  font-family: var(--serif);
  font-size: 17px;
}

.line-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 31px 0 42px;
  border: 1px solid rgba(23, 63, 58, 0.35);
  border-radius: 50%;
}

.line-icon-search::before {
  position: absolute;
  top: 19px;
  left: 19px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.line-icon-search::after {
  position: absolute;
  width: 14px;
  height: 2px;
  top: 42px;
  left: 40px;
  background: var(--ink);
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.line-icon-repeat::before,
.line-icon-repeat::after {
  position: absolute;
  width: 30px;
  height: 13px;
  border: 2px solid var(--ink);
  content: "";
}

.line-icon-repeat::before {
  top: 18px;
  left: 18px;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.line-icon-repeat::after {
  right: 18px;
  bottom: 18px;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.line-icon-signal {
  display: flex;
  padding: 17px 18px;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.line-icon-signal i {
  width: 6px;
  background: var(--ink);
  border-radius: 1px 1px 0 0;
}

.line-icon-signal i:nth-child(1) { height: 12px; }
.line-icon-signal i:nth-child(2) { height: 23px; }
.line-icon-signal i:nth-child(3) { height: 34px; }

.friction-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.friction-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.services-section {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.services-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(90deg, transparent 49.9%, #fff 50%, transparent 50.1%);
  background-size: 25% 100%;
  content: "";
}

.services-section > .shell {
  position: relative;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

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

.centered-heading .eyebrow::after {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.centered-heading > p:last-child {
  max-width: 650px;
  margin: 23px auto 0;
  color: rgba(255, 254, 249, 0.67);
  font-size: 18px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 19px;
  align-items: stretch;
}

.service-feature {
  display: flex;
  min-height: 642px;
  padding: clamp(33px, 5vw, 58px);
  flex-direction: column;
  color: var(--ink-deep);
  background: var(--mint-bright);
}

.service-label,
.service-audience {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-feature h3 {
  max-width: 500px;
  margin: 34px 0 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 50px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.service-feature > p {
  max-width: 500px;
  margin: 0;
  color: #31534e;
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  content: "✓";
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
}

.mini-question {
  margin-top: auto;
  padding: 18px 20px;
  border: 1px solid rgba(13, 47, 43, 0.28);
}

.mini-question span,
.mini-question strong {
  display: block;
}

.mini-question span {
  margin-bottom: 5px;
  color: #52706c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-question strong {
  font-size: 12px;
}

.service-stack {
  display: grid;
  gap: 19px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 201px;
  padding: 29px 32px;
  flex-direction: column;
  background: rgba(255, 254, 249, 0.06);
  border: 1px solid rgba(255, 254, 249, 0.15);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: rgba(255, 254, 249, 0.1);
  border-color: rgba(185, 224, 206, 0.38);
  transform: translateX(3px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--mint-bright);
}

.service-index {
  font-family: var(--serif);
  font-size: 14px;
}

.service-card h3 {
  max-width: 590px;
  margin: 18px 0 9px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.service-card p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 254, 249, 0.63);
  font-size: 13px;
  line-height: 1.55;
}

.service-outcome {
  position: absolute;
  right: 31px;
  bottom: 25px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.approach-section {
  background: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: center;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.principle-callout {
  display: grid;
  margin-top: 39px;
  padding: 25px 0 0;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.principle-callout > span {
  height: 30px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 55px;
  line-height: 0.8;
}

.principle-callout p {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.workflow-list li {
  position: relative;
  display: grid;
  min-height: 120px;
  padding: 25px 0;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.workflow-list li::after {
  position: absolute;
  top: 29px;
  right: 4px;
  color: var(--coral);
  content: "→";
  font-size: 17px;
}

.workflow-number {
  padding-top: 2px;
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: 18px;
}

.workflow-list strong {
  display: block;
  padding-right: 25px;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.02em;
}

.workflow-list p {
  max-width: 550px;
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.outcomes-section {
  background: var(--paper-deep);
}

.outcomes-head {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  column-gap: 80px;
  align-items: end;
}

.outcomes-head .eyebrow {
  grid-column: 1 / -1;
}

.outcomes-head > p:last-child {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 18px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 290px;
  padding: 29px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-grid article:nth-child(even) {
  background: rgba(255, 254, 249, 0.42);
}

.outcome-grid article > span {
  display: block;
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: 18px;
}

.outcome-grid h3 {
  margin: 80px 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.outcome-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.trust-section {
  color: var(--white);
  background: var(--ink-deep);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.trust-panel h2 {
  max-width: 700px;
}

.trust-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 254, 249, 0.67);
  font-size: 18px;
}

.trust-matrix {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.trust-matrix article {
  display: grid;
  min-height: 150px;
  padding: 25px;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.trust-glyph {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink-deep);
  background: var(--mint-bright);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.trust-matrix h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.trust-matrix p {
  margin: 0;
  color: rgba(255, 254, 249, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.boundary-card {
  position: relative;
  padding: 28px;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 28px 28px 0 rgba(185, 224, 206, 0.09);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.boundary-card-head {
  display: flex;
  padding-bottom: 21px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boundary-card-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.boundary-row {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 66px 1fr;
  gap: 19px;
  align-items: center;
}

.boundary-row strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 22px;
}

.boundary-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.boundary-symbol {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  border-radius: 50%;
}

.public-symbol {
  gap: 3px;
}

.public-symbol span {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.staff-symbol span {
  position: relative;
  width: 21px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.staff-symbol span::before {
  position: absolute;
  width: 10px;
  height: 7px;
  top: -9px;
  left: 3px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.boundary-divider {
  position: relative;
  height: 1px;
  background: var(--line);
  text-align: center;
}

.boundary-divider span {
  position: relative;
  top: -11px;
  padding: 0 11px;
  color: #78908c;
  background: var(--paper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-note {
  margin: 5px 0 0;
  padding: 16px;
  color: #633426;
  background: #f4ddd3;
  border-left: 3px solid var(--coral);
  font-size: 11px;
  font-weight: 600;
}

.pilot-section {
  background: var(--mint);
}

.pilot-heading {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.pilot-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
}

.pilot-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  list-style: none;
}

.pilot-steps::before {
  position: absolute;
  top: 22px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: rgba(23, 63, 58, 0.3);
  content: "";
}

.pilot-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pilot-dot {
  display: grid;
  width: 45px;
  height: 45px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 8px solid var(--mint);
  border-radius: 50%;
  box-sizing: content-box;
  font-family: var(--serif);
  font-size: 17px;
}

.pilot-content > span {
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-content h3 {
  margin: 12px 0 9px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pilot-content p {
  max-width: 325px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(540px, 1.3fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

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

.faq-intro > p:last-child {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  background: var(--ink);
  content: "";
}

.faq-list summary span {
  width: 16px;
  height: 1px;
  top: 40px;
  right: 4px;
}

.faq-list summary span::after {
  width: 1px;
  height: 16px;
  top: -7px;
  left: 7px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(90deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 27px;
  padding-right: 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.contact-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--coral-deep);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.contact-orbit-one {
  width: 440px;
  height: 440px;
  top: -280px;
  left: 38%;
}

.contact-orbit-two {
  width: 230px;
  height: 230px;
  right: -110px;
  bottom: -130px;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.7fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: end;
}

.contact-layout h2 {
  max-width: 710px;
}

.contact-action > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 16px;
}

.button-light {
  color: var(--ink-deep);
  background: var(--white);
}

.button-light:hover {
  background: #fff3d8;
}

.contact-action small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.site-footer {
  padding: 48px 0;
  color: var(--white);
  background: #082522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 50px;
  align-items: end;
}

.brand-footer .brand-logo-image {
  width: 146px;
}

.footer-grid > div:first-child > p {
  margin: 15px 0 0;
  color: rgba(255, 254, 249, 0.54);
  font-family: var(--serif);
  font-size: 15px;
}

.footer-grid nav,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
}

.footer-grid nav a {
  color: rgba(255, 254, 249, 0.66);
  text-decoration: none;
}

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

.footer-meta {
  align-items: flex-end;
  color: rgba(255, 254, 249, 0.45);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    gap: 48px;
  }

  .hero-assurances {
    flex-wrap: wrap;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 21px 0;
    gap: 12px 0;
  }

  .signal-grid p {
    grid-column: 1 / -1;
  }

  .signal-grid span {
    padding-left: 0;
    border-left: 0;
  }

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

  .friction-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

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

  .service-feature {
    min-height: 560px;
  }

  .approach-layout,
  .trust-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-layout,
  .trust-layout,
  .faq-layout {
    gap: 64px;
  }

  .outcomes-head {
    grid-template-columns: 1fr;
  }

  .outcomes-head > p:last-child {
    margin-top: 23px;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-layout {
    gap: 42px;
  }

  .contact-action {
    max-width: 620px;
  }

  .demo-intro {
    gap: 48px;
  }

  .demo-foot {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 34px, 660px);
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:not(.sr-only):nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:not(.sr-only):nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    min-height: calc(100vh - 68px);
    padding: 42px max(24px, calc((100vw - 660px) / 2));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 47, 43, 0.985);
    overflow-y: auto;
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
  }

  .primary-nav .nav-cta {
    margin-top: 24px;
    padding: 14px 18px;
    border-bottom: 0;
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 14px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: 0;
    padding: 68px 0 74px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .answer-stage {
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .signal-grid p {
    grid-column: auto;
    margin-bottom: 5px;
  }

  .section {
    padding: 82px 0;
  }

  .section-intro h2,
  .demo-intro h2,
  .approach-copy h2,
  .outcomes-head h2,
  .trust-panel h2,
  .pilot-heading h2,
  .faq-intro h2,
  .contact-layout h2 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .split-heading,
  .demo-intro,
  .pilot-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .friction-card:last-child {
    grid-column: auto;
  }

  .friction-card {
    min-height: 320px;
  }

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

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

  .outcome-grid article {
    min-height: 230px;
  }

  .outcome-grid h3 {
    margin-top: 47px;
  }

  .trust-matrix {
    grid-template-columns: 1fr;
  }

  .pilot-steps {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .pilot-steps::before {
    top: 30px;
    bottom: 30px;
    left: 21px;
    width: 1px;
    height: auto;
  }

  .pilot-steps li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 23px;
    text-align: left;
  }

  .pilot-dot {
    width: 35px;
    height: 35px;
    margin: 0;
    border-width: 6px;
  }

  .pilot-content h3 {
    margin-top: 6px;
  }

  .pilot-content p {
    max-width: none;
    margin: 0;
  }

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

  .contact-section {
    padding: 80px 0;
  }

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

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

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
  }

  .demo-player-topline {
    grid-template-columns: 1fr 1fr;
  }

  .demo-player-topline > span:nth-child(2) {
    display: none;
  }

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

  .demo-story li,
  .demo-story li:first-child {
    min-height: 36px;
    padding: 0;
    border-left: 0;
  }

  .demo-summary-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .answer-stage-topline {
    grid-template-columns: 1fr 1fr;
  }

  .answer-stage-topline > span:nth-child(2) {
    display: none;
  }

  .answer-canvas {
    min-height: 420px;
    padding: 24px 20px;
  }

  .question-bubble {
    max-width: 92%;
  }

  .service-feature {
    min-height: 620px;
    padding: 31px 25px;
  }

  .service-card {
    min-height: 258px;
    padding: 27px 25px;
  }

  .service-outcome {
    position: static;
    display: block;
    margin-top: 20px;
  }

  .workflow-list li {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .trust-matrix article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .boundary-card {
    padding: 22px;
  }

  .boundary-row {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .boundary-symbol {
    width: 50px;
    height: 50px;
  }

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

  .footer-meta {
    grid-column: auto;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .answer-stage {
    transform: rotate(1.25deg);
  }

  .demo-progress span {
    transition: none;
  }
}
