:root {
  --maroon: #850b1a;
  --maroon-dark: #570611;
  --yellow: #f2b705;
  --blue: #0735cb;
  --blue-dark: #052796;
  --ink: #171513;
  --muted: #645f59;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --shell: #e8e2d8;
  --line: rgba(23, 21, 19, 0.18);
  --gap: 12px;
  --radius: 8px;
  --ease: cubic-bezier(.2, .76, .24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--shell);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-leaving .site-grid {
  opacity: 0;
  transform: scale(.992);
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

img {
  display: block;
  width: 100%;
}

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

h1,
h2,
h3,
h4,
h1 em,
h2 em,
h3 em,
h4 em {
  font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif !important;
  font-style: normal;
  font-weight: 300 !important;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transition: top .2s;
}

.skip-link:focus {
  top: 1rem;
}

.site-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 2.2fr);
  gap: var(--gap);
  align-items: start;
  min-height: 100svh;
  padding: var(--gap);
  transition: opacity .24s ease, transform .24s var(--ease);
}

.page-home .site-grid {
  grid-template-columns: minmax(300px, .74fr) minmax(0, 2.76fr);
}

.context-tile {
  position: sticky;
  z-index: 4;
  top: var(--gap);
  min-width: 0;
  height: calc(100svh - (var(--gap) * 2));
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 2.5vw, 2.8rem);
  background: var(--white);
  border-radius: var(--radius);
  isolation: isolate;
}

.context-tile::before {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.context-tile::before {
  inset: 0;
  opacity: .4;
  background-image:
    linear-gradient(rgba(23, 21, 19, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, .045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 44%);
}

.page-home .context-tile::before {
  display: none;
}

.context--yellow {
  background: var(--yellow);
}

.context--yellow::before {
  opacity: .65;
}

.context--maroon,
.context--blue {
  color: white;
}

.context--maroon {
  background: var(--maroon);
}

.context--blue {
  background: var(--blue);
}

.context--maroon::before,
.context--blue::before {
  opacity: .65;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
}

.context-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.context-top,
.context-bottom {
  flex-shrink: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  width: fit-content;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.brand-lockup img {
  width: 39px;
  height: 41px;
  object-fit: contain;
  clip-path: inset(6%);
}

.context-index {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .7rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .08em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color .25s, background .25s;
}

.context-index:hover {
  color: white;
  background: var(--ink);
}

.context--maroon .context-index:hover,
.context--blue .context-index:hover {
  color: var(--ink);
  background: white;
}

.context-main {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding-block: 2rem;
}

.context-tile h1 {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(3.15rem, 4.5vw, 5.4rem);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .86;
}

.context-tile h1 em {
  display: block;
  font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -.065em;
}

.home-title-accent {
  color: var(--maroon);
}

#thesis-title {
  max-width: none;
  font-size: clamp(2.6rem, 3.8vw, 4.6rem);
}

#thesis-title span {
  display: block;
  white-space: nowrap;
}

.context-bottom {
  position: relative;
  z-index: 2;
}

.context-description {
  max-width: 34rem;
  margin: 0 0 1.45rem;
  font-size: clamp(.98rem, 1.25vw, 1.14rem);
  line-height: 1.5;
}

.context--maroon .context-description,
.context--blue .context-description {
  color: rgba(255, 255, 255, .82);
}

.context-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  width: 100%;
  padding: .65rem .65rem .65rem 1.15rem;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color .25s, background .25s, transform .25s var(--ease);
}

.context-cta span:last-child,
.card-arrow,
.button-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 0;
  transition: transform .35s var(--ease);
}

.context-cta span:last-child::before,
.card-arrow::before,
.button-arrow::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .35s var(--ease);
}

.context-cta:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.context-cta:hover span:last-child,
.booking-button:hover .button-arrow,
.nav-card:hover .card-arrow,
.next-card:hover .card-arrow {
  transform: none;
}

.context-cta:hover span:last-child::before,
.booking-button:hover .button-arrow::before,
.message-submit:not(:disabled):hover .button-arrow::before,
.nav-card:hover .card-arrow::before,
.next-card:hover .card-arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.context--maroon .context-cta,
.context--blue .context-cta {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.context--maroon .context-cta:hover,
.context--blue .context-cta:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--ink);
}

.page-faq .context-cta:hover {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.home-tiles {
  height: calc(100svh - (var(--gap) * 2));
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.nav-card,
.content-card,
.next-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.nav-card {
  --mx: 50%;
  --my: 50%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 2.6rem);
  isolation: isolate;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}

.nav-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .28), transparent 34%);
  transition: opacity .35s;
}

.nav-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(23, 21, 19, .17);
}

.nav-card:hover::after {
  opacity: .8;
}

.nav-card:focus-visible,
.context-index:focus-visible,
.context-cta:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.card-number,
.card-kicker {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card-arrow {
  flex: 0 0 auto;
  border: 1px solid rgba(23, 21, 19, .22);
}

.nav-card h2 {
  position: relative;
  z-index: 3;
  max-width: 12ch;
  margin: auto 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.nav-card h2 span {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-about {
  grid-column: 1;
  grid-row: 1;
  color: white;
  background: var(--ink);
}

.nav-about::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 15, 14, .65) 0%, rgba(15, 15, 14, .18) 42%, rgba(15, 15, 14, .9) 100%);
}

.nav-about > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.nav-about:hover > img {
  transform: none;
}

.nav-about .card-number {
  color: white;
}

.nav-about .card-arrow {
  color: var(--ink);
  border-color: transparent;
}

.nav-platform {
  grid-column: 2 / 4;
  grid-row: 1;
  color: white;
  background: var(--maroon);
}

.nav-platform .card-arrow,
.nav-contact .card-arrow {
  color: var(--ink);
  border-color: transparent;
}

.page-home .nav-platform .card-arrow {
  margin-right: 64px;
}

.nav-thesis {
  grid-column: 1;
  grid-row: 2;
  color: white;
  background: var(--ink);
}

.nav-thesis > img,
.nav-card--image > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.nav-thesis::before,
.nav-card--image::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 21, 19, .05), rgba(23, 21, 19, .84));
}

.nav-thesis:hover > img,
.nav-card--image:hover > img {
  transform: scale(1.045);
}

.nav-thesis .card-arrow {
  border-color: transparent;
}

.nav-demo {
  grid-column: 2;
  grid-row: 2;
  color: white;
  background: var(--ink);
}

.nav-contact {
  color: white;
  background: var(--blue);
}

.home-start-tiles {
  min-width: 0;
  display: grid;
  grid-column: 3;
  grid-row: 2;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.home-start-tiles .nav-card {
  min-height: 0;
  padding: clamp(1rem, 1.6vw, 1.6rem);
}

.home-start-tiles .nav-card h2 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.nav-faq {
  color: white;
  background: var(--yellow);
}

.nav-faq .card-arrow {
  color: var(--ink);
  border-color: transparent;
}

.nav-card--image .card-number {
  color: white;
}

.page-canvas {
  min-width: 0;
  display: grid;
  gap: var(--gap);
}

.content-card {
  padding: clamp(2rem, 5vw, 5.4rem);
  background: var(--white);
}

.content-card h2,
.next-card h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 7.8rem);
  font-weight: 560;
  letter-spacing: -.07em;
  line-height: .87;
}

.content-card h2 em,
.next-card h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.lead-card {
  min-height: min(820px, calc(100svh - (var(--gap) * 2)));
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--ink);
  isolation: isolate;
}

.lead-card > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.lead-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 16, 14, .04), rgba(17, 16, 14, .88));
}

.lead-card:hover > img {
  transform: scale(1.025);
}

.three-up {
  display: grid;
  gap: var(--gap);
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 3.5vw, 3.8rem);
}

.compact-card h3 {
  max-width: 10ch;
  margin: auto 0 1rem;
  font-size: clamp(2.1rem, 3.6vw, 4.4rem);
  font-weight: 560;
  letter-spacing: -.06em;
  line-height: .92;
}

.compact-card p {
  max-width: 32rem;
  margin-bottom: 0;
  font-size: .98rem;
}

.card-yellow {
  background: var(--yellow);
}

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

.card-maroon {
  color: white;
  background: var(--maroon);
}

.card-ink {
  color: white;
  background: var(--ink);
}

.card-blue p,
.card-maroon p,
.card-ink p {
  color: rgba(255, 255, 255, .76);
}

.big-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-style: italic;
  letter-spacing: -.06em;
  line-height: 1;
}

.decision-cards .compact-card {
  min-height: 360px;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2rem);
  padding: clamp(2rem, 4vw, 4rem);
}

.decision-cards .big-number {
  font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
  font-size: clamp(4.8rem, 7.5vw, 8.5rem);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .85;
}

.decision-cards .compact-card p {
  max-width: 28rem;
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.5;
}

.editorial-card {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.editorial-card > p {
  max-width: 700px;
  margin: 0;
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.team-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  color: white;
  background: var(--blue);
}

.team-card > p {
  max-width: 1150px;
  margin: 0;
  align-self: end;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.industries-card {
  background: var(--paper);
}

.industries-card .section-head {
  grid-template-columns: 1fr;
}

.industries-card .section-head p {
  max-width: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-head p {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.industry {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  padding: 1.35rem;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  isolation: isolate;
}

.industry img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.industry::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 21, 19, .04), rgba(23, 21, 19, .83));
}

.industry:hover img {
  transform: scale(1.045);
}

.industry figcaption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
}

.industry strong {
  display: block;
  font-size: clamp(.9rem, 1.25vw, 1.35rem);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}

.industry span {
  display: block;
  margin-top: .45rem;
  color: rgba(255, 255, 255, .74);
  font-size: .78rem;
}

.platform-lead {
  min-height: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
}

.platform-problem {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  padding-inline: clamp(2rem, 5vw, 5.4rem);
  color: white;
  background: var(--blue);
}

.platform-problem h2 {
  width: 100%;
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.platform-problem p {
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.capabilities-card .section-head {
  grid-template-columns: 1fr;
}

.capabilities-card .section-head h2 {
  font-size: clamp(2.6rem, 4.5vw, 5.5rem);
}

.capabilities-card .section-head h2 span {
  display: block;
  white-space: nowrap;
}

.platform-lead::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(23, 21, 19, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.platform-lead-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.platform-lead-copy h2 {
  max-width: 10ch;
}

.platform-lead-copy .platform-title {
  max-width: none;
}

.platform-title span {
  display: block;
  white-space: nowrap;
}

.platform-lead p {
  max-width: 500px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.integration-rail {
  position: relative;
  z-index: 2;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: clamp(5rem, 10vw, 9rem);
  overflow: visible;
  padding-top: 0;
}

.integration-label {
  display: block;
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(.9rem, 1.2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.integration-track {
  width: max-content;
  display: flex;
  animation: integration-scroll 28s linear infinite;
}

.integration-group {
  display: flex;
  gap: var(--gap);
  padding-right: var(--gap);
}

.integration-logo {
  position: relative;
  flex: 0 0 clamp(170px, 15vw, 220px);
  width: clamp(170px, 15vw, 220px);
  height: 104px;
  display: grid;
  place-items: center;
  padding: .7rem 1rem;
  color: rgba(255, 255, 255, .72);
  background: white;
  border: 0;
  border-radius: 0;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.integration-logo img {
  position: absolute;
  inset: .7rem 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 1.4rem);
  object-fit: contain;
}

.integration-logo--database img {
  inset: .2rem;
  width: calc(100% - .4rem);
  height: calc(100% - .4rem);
}

.integration-logo--more {
  color: white;
  background: var(--maroon);
  border-color: var(--maroon);
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: .06em;
}

@keyframes integration-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .integration-track {
    animation: none;
  }
}

.capabilities-card {
  overflow: visible;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}

.capabilities-card .section-head {
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 5vw, 5.4rem);
  background: var(--white);
  border-radius: var(--radius);
}

.capability-list {
  margin-top: var(--gap);
}

.capability-feature {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(420px, 1.12fr);
  gap: var(--gap);
  align-items: stretch;
  margin-bottom: var(--gap);
}

.capability-copy {
  min-width: 0;
  min-height: clamp(390px, 33vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.6rem);
  background: var(--white);
  border-radius: var(--radius);
}

.capability-feature h3 {
  max-width: 11ch;
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  font-size: clamp(2.4rem, 3.3vw, 4.3rem);
  letter-spacing: -.055em;
  line-height: .92;
}

.capability-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.58;
}

.capability-demo {
  position: relative;
  min-width: 0;
  min-height: clamp(390px, 33vw, 520px);
  overflow: hidden;
  background: white;
  border-radius: var(--radius);
  isolation: isolate;
}

.capability-demo::before,
.capability-demo::after {
  display: none;
}

.capability-demo-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.035);
  transition: transform 7s var(--ease);
}

.capability-feature.is-active .capability-demo-bg {
  transform: scale(1.09);
}

.demo-panel {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(88%, 650px);
  overflow: hidden;
  color: #221d1d;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: clamp(12px, 1.4vw, 18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.demo-panel-head {
  min-height: 60px;
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  padding: .7rem clamp(.8rem, 1.6vw, 1.25rem);
  border-bottom: 1px solid #ece7e7;
}

.demo-product {
  min-width: 0;
  display: flex;
  gap: .65rem;
  align-items: center;
}

.demo-product strong {
  overflow: hidden;
  font-size: clamp(.78rem, 1.15vw, 1rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-brandmark,
.demo-answer-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.demo-brandmark {
  width: 36px;
  height: 36px;
  padding: 0;
}

.demo-brandmark img,
.demo-answer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-pill {
  flex: 0 0 auto;
  padding: .42rem .72rem;
  color: var(--maroon);
  background: rgba(133, 11, 26, .08);
  border: 1px solid rgba(133, 11, 26, .1);
  border-radius: 999px;
  font-size: clamp(.58rem, .78vw, .73rem);
  font-weight: 800;
  line-height: 1;
}

.demo-panel--search {
  min-height: 310px;
}

.search-conversation {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(.8rem, 1.6vw, 1.2rem);
  background: white;
}

.search-question {
  max-width: 78%;
  display: flex;
  gap: .65rem;
  align-items: center;
  align-self: flex-end;
  padding: .75rem .8rem .75rem 1rem;
  color: white;
  background: var(--maroon);
  border-radius: 14px 14px 4px 14px;
  font-size: clamp(.68rem, .95vw, .86rem);
  font-weight: 650;
  line-height: 1.35;
}

.demo-user {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  color: var(--maroon);
  background: white;
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 850;
}

.search-thinking {
  width: 58px;
  min-height: 34px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: .65rem;
  background: white;
  border: 1px solid #e9e3e3;
  border-radius: 4px 12px 12px 12px;
  opacity: 0;
}

.search-thinking span {
  width: 5px;
  height: 5px;
  background: #b9afb0;
  border-radius: 50%;
}

.search-answer {
  position: relative;
  max-width: 82%;
  margin-top: .65rem;
  padding: .8rem 1rem .8rem 2.9rem;
  background: white;
  border: 1px solid #e9e3e3;
  border-radius: 4px 12px 12px 12px;
  font-size: clamp(.66rem, .9vw, .82rem);
  line-height: 1.42;
}

.search-answer p {
  margin: 0;
}

.demo-answer-logo {
  position: absolute;
  left: .75rem;
  top: .75rem;
  width: 25px;
  height: 25px;
  padding: 0;
}

.demo-citation {
  display: inline-flex;
  margin-top: .55rem;
  padding: .28rem .46rem;
  color: var(--maroon);
  background: rgba(133, 11, 26, .07);
  border-radius: 5px;
  font-size: .62rem;
  font-weight: 750;
}

.demo-input {
  min-height: 52px;
  display: flex;
  gap: .6rem;
  align-items: center;
  margin: 0 .85rem .85rem;
  padding: .55rem .65rem .55rem .8rem;
  color: #817879;
  background: white;
  border: 1px solid #ddd5d5;
  border-radius: 11px;
  font-size: clamp(.64rem, .85vw, .78rem);
}

.demo-input svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #9b9192;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.demo-input b {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: white;
  background: var(--maroon);
  border-radius: 8px;
  font-size: 1rem;
}

.capability-feature.is-active .search-question {
  animation: search-question-cycle 8.8s var(--ease) infinite both;
}

.capability-feature.is-active .search-thinking {
  animation: search-thinking-cycle 8.8s ease infinite both;
}

.capability-feature.is-active .search-thinking span {
  animation: demo-dot 1s ease-in-out infinite;
}

.capability-feature.is-active .search-thinking span:nth-child(2) {
  animation-delay: .15s;
}

.capability-feature.is-active .search-thinking span:nth-child(3) {
  animation-delay: .3s;
}

.capability-feature.is-active .search-answer {
  animation: search-answer-cycle 8.8s var(--ease) infinite both;
}

.classification-request {
  padding: 1rem clamp(1rem, 1.7vw, 1.35rem) .8rem;
}

.classification-request span,
.classification-result > span,
.impact-label,
.document-complete span {
  display: block;
  margin-bottom: .35rem;
  color: #8a8081;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.classification-request strong {
  display: block;
  font-size: clamp(.72rem, 1vw, .9rem);
  line-height: 1.4;
}

.classification-progress {
  height: 4px;
  margin: 0 clamp(1rem, 1.7vw, 1.35rem);
  overflow: hidden;
  background: #eee9e9;
  border-radius: 99px;
}

.classification-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--maroon);
  transform-origin: left;
}

.classification-checks {
  display: grid;
  gap: .42rem;
  padding: .85rem clamp(1rem, 1.7vw, 1.35rem);
}

.classification-checks > div {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr) auto;
  gap: .5rem;
  align-items: center;
  min-height: 32px;
  padding: .35rem .55rem;
  background: white;
  border: 1px solid #eee9e9;
  border-radius: 8px;
  font-size: clamp(.62rem, .8vw, .74rem);
}

.classification-checks i,
.classification-result strong i,
.approval-person > i,
.approval-complete > i,
.document-impact-list > div > b,
.audit-timeline > div > i,
.audit-complete > i {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  background: rgba(133, 11, 26, .09);
  border-radius: 50%;
}

.classification-checks i::after,
.classification-result strong i::after,
.approval-person > i::after,
.approval-complete > i::after,
.document-impact-list > div > b::after,
.audit-timeline > div > i::after,
.audit-complete > i::after {
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  content: "";
  border: solid var(--maroon);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.classification-checks b {
  color: var(--maroon);
  font-size: .62rem;
}

.classification-result {
  margin: 0 clamp(1rem, 1.7vw, 1.35rem) 1rem;
  padding: .75rem .9rem;
  background: rgba(133, 11, 26, .07);
  border: 1px solid rgba(133, 11, 26, .13);
  border-radius: 10px;
}

.classification-result strong {
  display: flex;
  gap: .45rem;
  align-items: center;
  color: var(--maroon);
  font-size: clamp(.74rem, .95vw, .86rem);
}

.classification-result small {
  display: block;
  margin: .3rem 0 0 1.45rem;
  color: #776d6e;
  font-size: .59rem;
}

.capability-feature.is-active .classification-progress span {
  animation: classification-progress-cycle 8.6s var(--ease) infinite both;
}

.capability-feature.is-active .classification-checks > div {
  animation: demo-check-cycle 8.6s var(--ease) infinite both;
}

.capability-feature.is-active .classification-checks > div:nth-child(2) {
  animation-delay: .35s;
}

.capability-feature.is-active .classification-checks > div:nth-child(3) {
  animation-delay: .7s;
}

.capability-feature.is-active .classification-result {
  animation: demo-result-cycle 8.6s var(--ease) 1.05s infinite both;
}

.approval-summary {
  padding: 1rem clamp(1rem, 1.7vw, 1.4rem) .85rem;
}

.approval-summary span {
  display: block;
  margin-bottom: .2rem;
  color: var(--maroon);
  font-size: .6rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.approval-summary strong,
.approval-summary small {
  display: block;
}

.approval-summary strong {
  font-size: clamp(.75rem, 1vw, .92rem);
}

.approval-summary small {
  margin-top: .2rem;
  color: #817879;
  font-size: .62rem;
}

.approval-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  margin: 0 clamp(1rem, 1.7vw, 1.4rem);
  padding: 1rem 0;
}

.approval-connector {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 37px;
  height: 2px;
  background: rgba(133, 11, 26, .18);
}

.approval-connector::after {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: var(--maroon);
  transform-origin: left;
}

.approval-person {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  padding: .65rem .4rem;
  text-align: center;
  background: white;
  border: 1px solid #e7e0e0;
  border-radius: 10px;
}

.person-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--maroon);
  border: 3px solid #f4e9ea;
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 850;
}

.approval-person strong,
.approval-person small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.approval-person strong {
  font-size: clamp(.58rem, .75vw, .68rem);
}

.approval-person small {
  color: #887e7f;
  font-size: .55rem;
}

.approval-person > i {
  width: 20px;
  height: 20px;
}

.approval-person > i::after {
  left: 6px;
  top: 4px;
}

.approval-complete,
.audit-complete {
  display: flex;
  gap: .7rem;
  align-items: center;
  margin: .2rem clamp(1rem, 1.7vw, 1.4rem) 1rem;
  padding: .7rem .8rem;
  background: rgba(133, 11, 26, .07);
  border: 1px solid rgba(133, 11, 26, .12);
  border-radius: 10px;
}

.approval-complete > i,
.audit-complete > i {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: var(--maroon);
}

.approval-complete > i::after,
.audit-complete > i::after {
  left: 8px;
  top: 5px;
  width: 6px;
  height: 9px;
  border-color: white;
}

.approval-complete strong,
.approval-complete small,
.audit-complete strong,
.audit-complete small {
  display: block;
}

.approval-complete strong,
.audit-complete strong {
  color: var(--maroon);
  font-size: .7rem;
}

.approval-complete small,
.audit-complete small {
  margin-top: .1rem;
  color: #7d7374;
  font-size: .57rem;
}

.capability-feature.is-active .approval-connector::after {
  animation: approval-line-cycle 10s var(--ease) infinite both;
}

.capability-feature.is-active .approval-person {
  --approval-step: 0s;
  animation: approval-person-cycle 10s var(--ease) var(--approval-step) infinite both;
}

.capability-feature.is-active .approval-person:nth-of-type(2) {
  --approval-step: .55s;
}

.capability-feature.is-active .approval-person:nth-of-type(3) {
  --approval-step: 1.1s;
}

.capability-feature.is-active .approval-person > i {
  animation: approval-check-cycle 10s var(--ease) var(--approval-step) infinite both;
}

.capability-feature.is-active .approval-complete {
  animation: approval-complete-cycle 10s var(--ease) infinite both;
}

.document-workspace {
  display: grid;
  grid-template-columns: minmax(120px, .78fr) minmax(180px, 1.22fr);
  gap: .8rem;
  padding: 1rem clamp(1rem, 1.7vw, 1.35rem) .75rem;
  background: white;
}

.document-sheet {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: .8rem;
  background: white;
  border: 1px solid #e5dede;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(36, 19, 20, .06);
}

.sheet-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: .45rem;
  border-bottom: 1px solid #ded7d7;
  font-size: .54rem;
}

.sheet-title span {
  color: var(--maroon);
  font-weight: 850;
}

.sheet-title b {
  font-size: .5rem;
}

.sheet-line {
  width: 68%;
  height: 4px;
  margin-top: .65rem;
  background: #e5dfe0;
  border-radius: 99px;
}

.sheet-line--long {
  width: 88%;
}

.sheet-line--short {
  width: 44%;
}

.sheet-diagram {
  position: relative;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .65rem 0;
}

.sheet-diagram::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  content: "";
  background: #9d9293;
}

.sheet-diagram span,
.sheet-diagram i,
.sheet-diagram b {
  position: relative;
  z-index: 2;
  background: white;
}

.sheet-diagram span {
  width: 9px;
  height: 9px;
  border: 2px solid #9d9293;
  border-radius: 50%;
}

.sheet-diagram i {
  width: 18px;
  height: 18px;
  margin: 0 .4rem;
  border: 2px solid #9d9293;
  border-radius: 50%;
}

.sheet-diagram b {
  padding: .3rem .35rem;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  border-radius: 4px;
  font-size: .5rem;
}

.document-sheet em {
  position: absolute;
  right: .7rem;
  bottom: .65rem;
  padding: .25rem .35rem;
  color: var(--maroon);
  background: #f7e9eb;
  border: 1px solid #e9bdc3;
  border-radius: 4px;
  font-size: .5rem;
  font-style: normal;
  font-weight: 800;
  transform: none;
}

.document-impact-list {
  min-width: 0;
}

.document-impact-list > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  gap: .55rem;
  align-items: center;
  min-height: 45px;
  margin-bottom: .42rem;
  padding: .45rem .55rem;
  background: white;
  border: 1px solid #e9e3e3;
  border-radius: 8px;
}

.document-impact-list > div > i {
  color: var(--maroon);
  font-size: .54rem;
  font-style: normal;
  font-weight: 850;
}

.document-impact-list strong,
.document-impact-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-impact-list strong {
  font-size: clamp(.57rem, .73vw, .67rem);
}

.document-impact-list small {
  margin-top: .1rem;
  color: #817879;
  font-size: .54rem;
}

.document-complete {
  display: flex;
  gap: .8rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: .1rem clamp(1rem, 1.7vw, 1.35rem) 1rem;
}

.document-complete strong {
  display: block;
  color: var(--maroon);
  font-size: .7rem;
}

.document-update-button {
  min-height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  gap: .6rem;
  align-items: center;
  justify-content: center;
  padding: .55rem .75rem;
  color: white;
  background: var(--maroon);
  border: 0;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  cursor: default;
}

.document-update-button b {
  font-size: .85rem;
  line-height: 1;
}

.capability-feature.is-active .document-impact-list > div {
  animation: document-row-cycle 9.2s var(--ease) infinite both;
}

.capability-feature.is-active .document-impact-list > div:nth-of-type(2) {
  animation-delay: .4s;
}

.capability-feature.is-active .document-impact-list > div:nth-of-type(3) {
  animation-delay: .8s;
}

.capability-feature.is-active .document-sheet em {
  animation: redline-cycle 9.2s var(--ease) 1s infinite both;
}

.capability-feature.is-active .document-complete > div {
  animation: demo-result-cycle 9.2s var(--ease) 1.25s infinite both;
}

.audit-record-head {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  padding: .9rem clamp(1rem, 1.7vw, 1.35rem);
  background: white;
  border-bottom: 1px solid #eee8e8;
}

.audit-record-head span,
.audit-record-head strong {
  display: block;
}

.audit-record-head span {
  margin-bottom: .14rem;
  color: #817879;
  font-size: .56rem;
}

.audit-record-head strong {
  font-size: clamp(.68rem, .9vw, .82rem);
}

.audit-record-head > b {
  padding: .32rem .55rem;
  color: var(--maroon);
  background: rgba(133, 11, 26, .08);
  border-radius: 999px;
  font-size: .57rem;
}

.audit-timeline {
  position: relative;
  display: grid;
  gap: .25rem;
  padding: .7rem clamp(1rem, 1.7vw, 1.35rem);
}

.audit-line {
  position: absolute;
  left: calc(clamp(1rem, 1.7vw, 1.35rem) + 8px);
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: #e5dfe0;
}

.audit-line::after {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: var(--maroon);
  transform-origin: top;
}

.audit-timeline > div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: .65rem;
  align-items: center;
  min-height: 40px;
}

.audit-timeline > div > i {
  width: 17px;
  height: 17px;
  background: white;
  border: 2px solid rgba(133, 11, 26, .25);
}

.audit-timeline > div > i::after {
  left: 4px;
  top: 2px;
}

.audit-timeline strong,
.audit-timeline small {
  display: block;
}

.audit-timeline strong {
  font-size: clamp(.58rem, .76vw, .69rem);
}

.audit-timeline small {
  color: #887e7f;
  font-size: .53rem;
}

.audit-timeline > div > b {
  color: var(--maroon);
  font-size: .54rem;
}

.capability-feature.is-active .audit-line::after {
  animation: audit-line-cycle 9.8s var(--ease) infinite both;
}

.capability-feature.is-active .audit-timeline > div {
  animation: audit-row-cycle 9.8s var(--ease) infinite both;
}

.capability-feature.is-active .audit-timeline > div:nth-of-type(2) {
  animation-delay: .45s;
}

.capability-feature.is-active .audit-timeline > div:nth-of-type(3) {
  animation-delay: .9s;
}

.capability-feature.is-active .audit-timeline > div:nth-of-type(4) {
  animation-delay: 1.35s;
}

.capability-feature.is-active .audit-complete {
  animation: audit-complete-cycle 9.8s var(--ease) infinite both;
}

@keyframes search-question-cycle {
  0%, 4%, 100% { opacity: 0; transform: translateY(14px) scale(.98); }
  10%, 92% { opacity: 1; transform: translateY(0) scale(1); }
  97% { opacity: 0; transform: translateY(-5px) scale(.99); }
}

@keyframes search-thinking-cycle {
  0%, 15%, 34%, 100% { opacity: 0; transform: translateY(8px); }
  20%, 29% { opacity: 1; transform: translateY(0); }
}

@keyframes search-answer-cycle {
  0%, 28%, 100% { opacity: 0; transform: translateY(12px); }
  38%, 92% { opacity: 1; transform: translateY(0); }
  97% { opacity: 0; transform: translateY(-5px); }
}

@keyframes demo-dot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}

@keyframes classification-progress-cycle {
  0%, 4% { transform: scaleX(0); }
  30%, 92% { transform: scaleX(1); }
  98%, 100% { opacity: 0; transform: scaleX(1); }
}

@keyframes demo-check-cycle {
  0%, 15%, 100% { opacity: 0; transform: translateX(-8px); }
  27%, 90% { opacity: 1; transform: translateX(0); }
  97% { opacity: 0; transform: translateX(3px); }
}

@keyframes demo-result-cycle {
  0%, 25%, 100% { opacity: 0; transform: translateY(8px); }
  38%, 88% { opacity: 1; transform: translateY(0); }
  96% { opacity: 0; transform: translateY(-4px); }
}

@keyframes approval-line-cycle {
  0%, 6%, 100% { transform: scaleX(0); }
  38%, 99% { transform: scaleX(1); }
}

@keyframes approval-person-cycle {
  0%, 12%, 100% { border-color: #e7e0e0; box-shadow: none; }
  20%, 92% { border-color: rgba(133, 11, 26, .3); box-shadow: 0 8px 18px rgba(74, 19, 25, .08); }
  99% { border-color: #e7e0e0; box-shadow: none; }
}

@keyframes approval-check-cycle {
  0%, 14%, 100% { opacity: 0; transform: scale(.7); }
  20%, 99% { opacity: 1; transform: scale(1); }
}

@keyframes approval-complete-cycle {
  0%, 48%, 100% { opacity: 0; visibility: hidden; transform: translateY(5px); }
  53%, 99% { opacity: 1; visibility: visible; transform: translateY(0); }
}

@keyframes document-row-cycle {
  0%, 14%, 100% { opacity: 0; transform: translateX(8px); }
  26%, 99% { opacity: 1; transform: translateX(0); }
}

@keyframes redline-cycle {
  0%, 26%, 100% { opacity: 0; transform: scale(.85); }
  38%, 90% { opacity: 1; transform: scale(1); }
  97% { opacity: 0; transform: scale(.96); }
}

@keyframes audit-line-cycle {
  0%, 5%, 100% { transform: scaleY(0); }
  42%, 99% { transform: scaleY(1); }
}

@keyframes audit-row-cycle {
  0%, 12%, 100% { opacity: 0; transform: translateX(-6px); }
  24%, 99% { opacity: 1; transform: translateX(0); }
}

@keyframes audit-complete-cycle {
  0%, 58%, 100% { opacity: 0; visibility: hidden; transform: translateY(5px); }
  63%, 99% { opacity: 1; visibility: visible; transform: translateY(0); }
}

.thesis-lead {
  background: var(--ink);
}

.chapter-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 4rem);
}

.chapter-index {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .4rem;
  border-right: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 6rem);
  font-style: italic;
}

.chapter-card h2 {
  max-width: none;
  font-size: clamp(2.4rem, 3.5vw, 4.4rem);
  line-height: .94;
}

.belief-card {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: var(--blue);
}

.belief-card blockquote {
  max-width: 16ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.5vw, 7.8rem);
  font-style: italic;
  letter-spacing: -.06em;
  line-height: .92;
}

.video-section {
  height: auto;
  min-height: auto;
  display: grid;
  align-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--ink);
  background: var(--white);
}

.video-section h2 {
  max-width: 12ch;
  margin: .8rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.video-section h2 em {
  font-weight: 400;
}

.video-title-line {
  display: block;
  white-space: nowrap;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.video-placeholder p {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.demo-embed {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}

.demo-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-embed:fullscreen,
.demo-embed:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  aspect-ratio: auto;
}

.demo-embed.is-fullscreen-fallback {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
}

.video-section.has-fullscreen-demo {
  z-index: 1000;
  overflow: visible;
  transform: none !important;
  transition: none !important;
}

body.demo-fullscreen-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.demo-fullscreen-open .site-grid {
  overflow: visible;
}

.demo-fullscreen-button {
  position: absolute;
  z-index: 4;
  bottom: 1rem;
  right: 1rem;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  place-items: center;
  color: white;
  background: rgba(23, 21, 19, .72);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.demo-fullscreen-button:hover,
.demo-fullscreen-button:focus-visible {
  background: rgba(23, 21, 19, .94);
  transform: scale(1.06);
}

.demo-fullscreen-button svg {
  width: 100%;
  height: 100%;
}

.demo-play-button {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  color: white;
  background: rgba(23, 21, 19, .42);
  border: 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, opacity .25s;
}

.demo-play-button:hover {
  background: rgba(23, 21, 19, .58);
}

.demo-play-button:hover .video-play {
  transform: scale(1.08);
}

.demo-play-button.is-playing {
  opacity: 0;
  background: transparent;
}

.demo-play-button.is-playing,
.demo-play-button.is-paused {
  inset: 0;
  width: auto;
  height: auto;
  padding: 0;
  place-content: unset;
  border: 0;
  border-radius: 0;
}

.demo-play-button.is-playing [data-demo-play-label],
.demo-play-button.is-paused [data-demo-play-label] {
  display: none;
}

.demo-embed:hover .demo-play-button.is-playing,
.demo-play-button.is-playing:focus-visible,
.demo-play-button.is-paused {
  opacity: 1;
  background: transparent;
}

.demo-embed.controls-inactive .demo-play-button.is-playing {
  opacity: 0;
  background: transparent;
}

.demo-play-button.is-playing .video-play,
.demo-play-button.is-paused .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  padding-left: 2px;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(23, 21, 19, .72);
  border: 1px solid rgba(255, 255, 255, .42);
  font-size: 1rem;
}

.video-play {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform .25s var(--ease);
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.demo-play-button.is-playing .video-play::before {
  width: 13px;
  height: 16px;
  margin-left: 0;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 9px, currentColor 9px 13px);
  border: 0;
}

@media (max-width: 520px) {
  .video-section h2 {
    font-size: 8vw;
  }

  .content-card.industries-card h2 {
    font-size: 10vw;
  }

  .capabilities-card .section-head h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .demo-pill {
    padding: .38rem .5rem;
  }

  .approval-route {
    grid-template-columns: 1fr;
    gap: .35rem;
    padding: .25rem 0 .55rem;
  }

  .approval-connector {
    display: none;
  }

  .approval-person {
    min-height: 42px;
    flex-direction: row;
    padding: .35rem .5rem;
    text-align: left;
  }

  .approval-person > div {
    min-width: 0;
  }

  .approval-person > i {
    flex: 0 0 20px;
    margin-left: auto;
  }

  .person-avatar {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .document-workspace {
    grid-template-columns: minmax(90px, .75fr) minmax(150px, 1.25fr);
    gap: .45rem;
    padding: .75rem;
  }

  .document-sheet {
    min-height: 174px;
    padding: .55rem;
  }

  .document-impact-list > div {
    grid-template-columns: 18px minmax(0, 1fr) 16px;
    gap: .35rem;
    min-height: 43px;
    padding: .35rem;
  }

  .document-impact-list > div > b {
    width: 16px;
    height: 16px;
  }

  .document-impact-list > div > b::after {
    left: 4px;
    top: 2px;
  }

  .audit-timeline > div {
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: .45rem;
  }

  .audit-timeline > div > b {
    max-width: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .document-complete {
    align-items: stretch;
  }

  .document-update-button {
    max-width: 116px;
    padding-inline: .55rem;
    font-size: .56rem;
  }

}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: var(--gap);
}

.contact-card {
  min-height: min(820px, calc(100svh - (var(--gap) * 2)));
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-inline: clamp(1.5rem, 3vw, 3.5rem);
  background: var(--white);
}

.booking-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: transparent;
}

.booking-eyebrow {
  margin-bottom: auto;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-card h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.booking-card h2 em {
  color: var(--maroon);
}

.booking-button {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 1rem 1.5rem;
  color: white;
  background: var(--maroon);
  border: 0;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease);
}

.booking-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.booking-dialog {
  width: min(980px, calc(100vw - 2rem));
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(23, 21, 19, .35);
}

.booking-dialog::backdrop {
  background: rgba(23, 21, 19, .72);
  backdrop-filter: blur(5px);
}

.booking-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.booking-dialog-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -.035em;
}

.booking-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.booking-dialog iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
}

.policy-updated {
  margin-bottom: clamp(3rem, 8vw, 8rem);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-photo {
  min-height: 540px;
  padding: 0;
}

.contact-layout .contact-photo {
  min-height: 100%;
}

.contact-photo img {
  height: 100%;
  object-fit: cover;
}

.message-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(2rem, 6vw, 6rem);
  background: var(--white);
}

.message-intro h2 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.message-intro h2 em,
.form-field label span {
  color: var(--maroon);
}

.message-intro > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: .55rem;
}

.form-field--wide,
.message-submit {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 2px var(--maroon);
}

.message-submit {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem 1rem 1.4rem;
  color: white;
  background: var(--maroon);
  border: 0;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease);
}

.message-submit:not(:disabled):hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.message-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.faq-card {
  color: white;
  background: var(--ink);
}

.faq-card h2 {
  max-width: 12ch;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: .25rem;
  top: 50%;
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  transform: translateY(-50%);
}

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

.faq-list p {
  max-width: 900px;
  margin: 0;
  padding: 0 3rem 1.5rem 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1.125rem, 1.35vw, 1.3rem);
  line-height: 1.6;
}

.policy-accordion-intro {
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.policy-accordion-intro .policy-updated {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .58);
}

.policy-accordion-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.6;
}

.policy-answer {
  max-width: 700px;
  padding: 0 3rem 1.5rem 0;
  color: rgba(255, 255, 255, .72);
}

.policy-answer p {
  padding: 0;
}

.policy-answer ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.policy-answer li + li {
  margin-top: .55rem;
}

.policy-answer a {
  color: white;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.next-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 5rem);
  color: white;
  background: var(--ink);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.next-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(23, 21, 19, .17);
}

.next-card .card-top {
  margin-bottom: auto;
}

.next-card h2 {
  max-width: 10ch;
}

.next-card--demo h2 {
  max-width: none;
  white-space: nowrap;
}

.next-card .card-arrow {
  color: var(--ink);
}

.next-card.card-yellow {
  color: var(--ink);
}

.next-card.card-blue,
.next-card.card-maroon {
  color: white;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  min-height: 210px;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--white);
  border-radius: var(--radius);
}

.home-footer {
  grid-column: 1 / -1;
}

.site-footer p {
  max-width: 320px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

.footer-links a,
.footer-links span {
  padding: .65rem .85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 750;
}

.footer-links a {
  transition: color .25s, background .25s;
}

.footer-links a:hover {
  color: white;
  background: var(--maroon);
}

.menu-button {
  position: fixed;
  z-index: 101;
  right: calc(var(--gap) + 1rem);
  top: calc(var(--gap) + 1rem);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(7, 53, 203, .22);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(23, 21, 19, .1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color .2s, background .2s, border-color .2s;
}

.menu-button:hover {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.menu-dots {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 4px;
}

.menu-dots i {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.menu-close {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity .2s, transform .3s var(--ease);
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.menu-close::before {
  width: 20px;
  height: 1px;
}

.menu-close::after {
  width: 1px;
  height: 20px;
}

.menu-button[aria-expanded="true"] {
  color: white;
  background: var(--blue);
  border-color: white;
}

.menu-button[aria-expanded="true"] .menu-dots {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-close {
  opacity: 1;
  transform: rotate(45deg);
}

.quick-menu {
  position: fixed;
  z-index: 100;
  right: var(--gap);
  top: var(--gap);
  width: min(340px, calc(100vw - (var(--gap) * 2)));
  display: grid;
  gap: .3rem;
  padding: 5.4rem 1.15rem 1.15rem;
  color: white;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(7, 53, 203, .3);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-12px) scale(.96);
  transform-origin: top right;
  transition: opacity .28s, transform .38s var(--ease), visibility 0s linear .38s;
}

.quick-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.quick-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .78rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
  transition: color .2s, background .2s, padding .25s var(--ease);
}

.quick-menu a::after {
  content: none;
}

.quick-menu a:hover,
.quick-menu a[aria-current="page"] {
  padding-left: 1.1rem;
  color: var(--blue);
  background: white;
}

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

.js .reveal {
  opacity: 1;
  transform: translateY(28px);
  transition: transform .75s var(--ease);
}

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

@media (min-width: 1101px) {
  .page-home {
    overflow: hidden;
  }

  .page-home .context-tile,
  .page-home .home-tiles {
    height: calc(100svh - (var(--gap) * 2));
    min-height: 0;
  }
}

@media (min-width: 1101px) and (max-height: 700px) {
  body:not(.page-home) .context-tile,
  body:not(.page-home) .home-tiles {
    height: 720px;
  }
}

@media (min-width: 1101px) and (max-height: 1020px) {
  .context-tile {
    padding-block: 1.6rem;
  }

  .context-main {
    padding-block: 1rem;
  }

  .context-tile h1 {
    font-size: clamp(3rem, 4.15vw, 4.8rem);
  }

  .context-description {
    margin-bottom: 1rem;
    font-size: .98rem;
    line-height: 1.42;
  }

  .context-cta {
    min-height: 56px;
  }

}

@media (max-width: 1100px) {
  .site-grid,
  .page-home .site-grid {
    grid-template-columns: 1fr;
  }

  .context-tile {
    position: relative;
    top: auto;
    height: auto;
    min-height: min(680px, calc(100svh - (var(--gap) * 2)));
  }

  .context-tile h1 {
    max-width: 10ch;
    font-size: clamp(4rem, 10vw, 7rem);
  }

  .context-description {
    max-width: 680px;
  }

  .context-cta {
    max-width: 420px;
  }

  .home-tiles {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(360px, auto));
  }

  .nav-about {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-platform {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .nav-thesis {
    grid-column: 1;
    grid-row: 2;
  }

  .nav-demo {
    grid-column: 1;
    grid-row: 3;
  }

  .home-start-tiles {
    grid-column: 2;
    grid-row: 3;
  }

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

@media (max-width: 820px) {
  .editorial-card,
  .team-card,
  .section-head,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .three-up {
    grid-template-columns: 1fr;
  }

  .capability-feature {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }

  .capability-copy {
    max-width: 650px;
  }

  .capability-feature h3 {
    max-width: 12ch;
  }

  .capability-copy p {
    max-width: 620px;
  }

  .chapter-card {
    grid-template-columns: 70px 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (max-width: 700px) {
  :root {
    --gap: 8px;
    --radius: 8px;
  }

  .site-grid {
    width: 100%;
    max-width: 100vw;
    padding: var(--gap);
    overflow: hidden;
  }

  .context-tile {
    width: calc(100vw - (var(--gap) * 2));
    max-width: 100%;
    min-height: min(640px, calc(100svh - (var(--gap) * 2)));
    padding: 1.4rem;
  }

  .brand-lockup span {
    font-size: .75rem;
  }

  .context-tile h1 {
    max-width: 8.5ch;
    font-size: clamp(2.9rem, 13vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .context-main {
    padding-block: 2rem;
  }

  .context-description {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .context-index {
    margin-right: 56px;
  }

  .context-top {
    gap: .5rem;
  }

  .context-top .brand-lockup {
    gap: .55rem;
  }

  .home-tiles {
    grid-template-columns: 1fr;
  }

  .home-tiles {
    display: grid;
    grid-template-rows: none;
  }

  .nav-about,
  .nav-platform,
  .nav-thesis,
  .nav-demo,
  .home-start-tiles {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }

  .nav-platform {
    min-height: 380px;
  }

  .nav-card h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .content-card {
    padding: clamp(1.5rem, 6vw, 2.2rem);
  }

  .content-card h2,
  .next-card h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .lead-card,
  .platform-lead {
    min-height: min(640px, calc(100svh - (var(--gap) * 2)));
  }

  #thesis-title span,
  .platform-title span,
  .capabilities-card .section-head h2 span,
  .video-title-line {
    display: block;
    white-space: normal;
  }

  .site-grid > *,
  .page-canvas,
  .home-tiles,
  .content-card {
    min-width: 0;
  }

  .platform-lead {
    align-items: flex-start;
    min-height: 0;
    padding-bottom: clamp(1.5rem, 6vw, 2.2rem);
  }

  .platform-lead-copy h2,
  .platform-lead-copy .platform-title {
    font-size: clamp(2.6rem, 11.5vw, 4rem);
    line-height: .92;
  }

  .integration-rail {
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: clamp(3rem, 12vw, 4.5rem);
  }

  .video-section {
    height: auto;
    min-height: auto;
    align-content: start;
    gap: 2rem;
  }

  .demo-embed {
    max-width: 100%;
    height: clamp(320px, 62svh, 560px);
    aspect-ratio: auto;
  }

  .video-section h2 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(2.6rem, 11.5vw, 4rem);
  }

  .video-placeholder {
    min-height: 240px;
    aspect-ratio: auto;
  }

  .menu-button {
    right: calc(var(--gap) + .65rem);
    top: calc(var(--gap) + .65rem);
    width: 48px;
    height: 48px;
  }

  .site-footer {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

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

  .industry {
    min-height: 340px;
  }

  .capabilities-card {
    padding: 0;
  }

  .capability-list {
    margin-top: var(--gap);
  }

  .capability-feature {
    gap: var(--gap);
    margin-bottom: var(--gap);
    padding: 0;
  }

  .capability-feature h3 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .capability-copy {
    min-height: 380px;
    padding: clamp(2rem, 8vw, 3rem);
  }

  .capability-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .capability-demo {
    min-height: 440px;
    border-radius: var(--radius);
  }

  .demo-panel {
    width: 94%;
  }

  .demo-panel-head {
    min-height: 54px;
  }

  .demo-brandmark {
    width: 32px;
    height: 32px;
  }

  .search-conversation {
    min-height: 196px;
  }

  .search-question {
    max-width: 88%;
  }

  .search-answer {
    max-width: 92%;
  }

  .chapter-card {
    min-height: 400px;
    grid-template-columns: 52px 1fr;
    padding-left: 1rem;
  }

  .chapter-index {
    font-size: 2.7rem;
  }

  .belief-card {
    min-height: 560px;
  }

  .next-card {
    min-height: 400px;
  }

  .booking-card {
    min-height: 560px;
    padding: 1.5rem;
  }

  .message-card,
  .message-form {
    grid-template-columns: 1fr;
  }

  .booking-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .booking-dialog iframe {
    min-height: calc(100svh - 78px);
    height: calc(100svh - 78px);
  }
}

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

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

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

  .capability-feature.is-active .search-question,
  .capability-feature.is-active .search-thinking,
  .capability-feature.is-active .search-thinking span,
  .capability-feature.is-active .search-answer,
  .capability-feature.is-active .classification-progress span,
  .capability-feature.is-active .classification-checks > div,
  .capability-feature.is-active .classification-result,
  .capability-feature.is-active .approval-connector::after,
  .capability-feature.is-active .approval-person,
  .capability-feature.is-active .approval-complete,
  .capability-feature.is-active .document-impact-list > div,
  .capability-feature.is-active .document-sheet em,
  .capability-feature.is-active .document-complete > div,
  .capability-feature.is-active .audit-line::after,
  .capability-feature.is-active .audit-timeline > div,
  .capability-feature.is-active .audit-complete {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}
