/* source: base.css */
:root {
  color-scheme: light;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "Microsoft YaHei UI", serif;
  --bg: #e7e6df;
  --bg-raised: #f2f0e8;
  --bg-soft: #dcdcd4;
  --ink: #151714;
  --ink-soft: #41443f;
  --muted: #6c6f68;
  --line: rgba(21, 23, 20, 0.16);
  --line-strong: rgba(21, 23, 20, 0.34);
  --deep: #111512;
  --deep-soft: #1a201c;
  --paper: #f1efe7;
  --accent: #c24f31;
  --accent-dark: #8f3522;
  --ok: #287455;
  --warn: #a6552e;
  --blocked: #9a3d35;
  --not-run: #6c6c68;
  --header-height: 76px;
  --shell: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 80px rgba(13, 17, 14, 0.12);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111512;
  --bg-raised: #181d19;
  --bg-soft: #202621;
  --ink: #eeece3;
  --ink-soft: #c6c6bd;
  --muted: #a4a79f;
  --line: rgba(238, 236, 227, 0.15);
  --line-strong: rgba(238, 236, 227, 0.34);
  --paper: #ece9df;
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

a,
button,
input,
select,
textarea,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(194, 79, 49, 0.18);
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-weight: 540;
  line-height: 1.12;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

.shell {
  width: var(--shell);
  max-width: calc(100% - env(safe-area-inset-left) - env(safe-area-inset-right) - 24px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-140%);
  background: var(--paper);
  color: #111;
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  color: var(--ink);
  transition: background-color 480ms var(--ease), color 480ms var(--ease), border-color 480ms var(--ease), box-shadow 480ms var(--ease);
}

.site-header--home {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(to bottom, rgba(4, 8, 6, 0.54), rgba(4, 8, 6, 0));
  color: #f4f2e9;
}

.site-header--home.is-solid {
  border-bottom-color: var(--line);
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(8, 11, 9, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) auto minmax(180px, 0.8fr);
  align-items: center;
  height: 100%;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  gap: 16px;
}

.wordmark > span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 620;
  letter-spacing: 0.1em;
  line-height: 1;
}

.wordmark > small {
  max-width: 9.5rem;
  color: currentColor;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  opacity: 0.62;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  height: 100%;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: currentColor;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--accent);
  content: "";
  transition: right 240ms var(--ease), left 240ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.theme-toggle,
.menu-toggle,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.theme-toggle {
  min-width: 62px;
  opacity: 0.68;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid currentColor;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Cinematic home hero */
.home-hero {
  position: relative;
  z-index: 1;
  height: 168svh;
  background: #0b0e0c;
  view-timeline-name: --home-hero;
  view-timeline-axis: block;
}

.home-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #0a0d0b;
}

.home-hero__image,
.home-hero__shadow,
.home-hero__light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.92) contrast(1.03);
  animation: home-image-drift linear both;
  animation-timeline: --home-hero;
  animation-range: exit 0% exit 92%;
}

.home-hero__shadow {
  background:
    radial-gradient(circle at 68% 41%, transparent 0 18%, rgba(6, 10, 8, 0.07) 47%, rgba(4, 7, 5, 0.28) 100%),
    linear-gradient(90deg, rgba(3, 6, 5, 0.88) 0%, rgba(4, 7, 5, 0.68) 20%, rgba(5, 8, 6, 0.2) 48%, rgba(5, 8, 6, 0.03) 72%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.48) 0%, transparent 24%, transparent 66%, rgba(4, 7, 5, 0.55) 100%);
  animation: home-shadow-deepen linear both;
  animation-timeline: --home-hero;
  animation-range: exit 5% exit 90%;
}

.home-hero__light {
  background: radial-gradient(ellipse at 71% 34%, rgba(255, 225, 158, 0.17), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: home-light-move linear both;
  animation-timeline: --home-hero;
  animation-range: exit 0% exit 80%;
}

.home-hero__content {
  position: relative;
  height: 100%;
  color: #f2f0e6;
}

.home-hero__copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(760px, 70vw);
  transform: translateY(-48%);
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.58);
  animation: home-copy-exit linear both;
  animation-timeline: --home-hero;
  animation-range: exit 16% exit 84%;
}

.home-hero__overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(242, 240, 230, 0.72);
  font-size: 12px;
  letter-spacing: 0.32em;
}

.home-hero__overline::before {
  width: 42px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.home-hero h1 {
  display: flex;
  align-items: baseline;
  gap: 0.33em;
  margin-bottom: 26px;
  color: #f7f4eb;
  font-size: clamp(56px, 7.15vw, 116px);
  font-weight: 640;
  letter-spacing: 0.035em;
  line-height: 0.98;
  white-space: nowrap;
}

.home-hero h1 span:last-child {
  color: #fffdf6;
}

.home-hero__intro {
  display: flex;
  gap: 1.3em;
  margin-bottom: 34px;
  color: rgba(244, 242, 233, 0.82);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 21px);
  letter-spacing: 0.13em;
}

.home-hero__link {
  display: inline-grid;
  grid-template-columns: auto auto 24px;
  align-items: center;
  min-height: 54px;
  padding: 0 4px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  gap: 20px;
  transition: border-color 180ms ease, gap 240ms var(--ease);
}

.home-hero__link > span {
  font-size: 17px;
  letter-spacing: 0.16em;
}

.home-hero__link > small {
  color: rgba(244, 242, 233, 0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home-hero__link > i {
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.home-hero__link:hover {
  border-color: var(--accent);
  gap: 24px;
}

.home-hero__link:hover > i {
  transform: translate(4px, -4px);
}

.home-hero__motto {
  position: absolute;
  bottom: 38px;
  left: 50%;
  display: flex;
  align-items: center;
  margin: 0;
  transform: translateX(-50%);
  gap: 18px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.34em;
  white-space: nowrap;
  animation: home-motto-exit linear both;
  animation-timeline: --home-hero;
  animation-range: exit 15% exit 64%;
}

.home-hero__motto span {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
}

.home-hero__scroll-cue {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.home-hero__scroll-cue span {
  width: 1px;
  height: 44px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
}

@keyframes home-image-drift {
  from { transform: scale(1); filter: saturate(0.92) contrast(1.03); }
  to { transform: scale(1.055); filter: saturate(0.82) contrast(1.08); }
}

@keyframes home-shadow-deepen {
  from { opacity: 1; }
  to { opacity: 1.34; }
}

@keyframes home-light-move {
  from { transform: translate3d(0, 0, 0); opacity: 0.78; }
  to { transform: translate3d(-3%, 2%, 0); opacity: 0.34; }
}

@keyframes home-copy-exit {
  0%, 38% { opacity: 1; transform: translateY(-48%); }
  100% { opacity: 0.08; transform: translateY(-66%); }
}

@keyframes home-motto-exit {
  from { opacity: 1; transform: translateX(-50%); }
  to { opacity: 0; transform: translate(-50%, -18px); }
}

/* Interior page heroes */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  min-height: min(820px, 92svh);
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 90px;
  gap: clamp(56px, 7vw, 120px);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: calc(var(--header-height) + 42px);
  left: -16vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 9%, transparent), transparent 68%);
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.page-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.6vw, 88px);
  letter-spacing: -0.02em;
}

.page-hero h1 span {
  display: block;
}

.hero__intro {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.85;
}

.hero__media {
  position: relative;
}

.hero__media::before {
  position: absolute;
  z-index: 2;
  inset: 10% auto -6% -7%;
  width: 1px;
  background: var(--accent);
  content: "";
}

.concept-figure {
  margin: 0;
}

.concept-figure__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow-soft);
}

.concept-figure__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 10, 8, 0.36));
  content: "";
}

.concept-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 900ms var(--ease);
}

.concept-figure:hover img {
  transform: scale(1.025);
  filter: saturate(0.72) contrast(1.06);
}

.concept-figure figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 16px;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.concept-figure figcaption span {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.page-cases .page-hero,
.page-qualifications .page-hero,
.page-contact .page-hero,
.page-legal .page-hero {
  grid-template-columns: minmax(0, 900px);
  min-height: 670px;
}

.page-cases .page-hero::after,
.page-qualifications .page-hero::after,
.page-contact .page-hero::after,
.page-legal .page-hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 8%;
  width: min(620px, 48vw);
  height: min(380px, 32vw);
  background:
    linear-gradient(135deg, transparent 0 47%, var(--line) 47.2% 47.5%, transparent 47.7%),
    radial-gradient(circle at 65% 42%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 54%);
  content: "";
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: 0.06em;
  transition: transform 220ms var(--ease), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
}

.button--text {
  min-height: 44px;
  padding: 0;
  border-bottom-color: var(--line-strong);
  gap: 12px;
}

.button--text:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.button__arrow {
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.button--text:hover .button__arrow {
  transform: translate(4px, -4px);
}

/* Global section rhythm */
.section {
  position: relative;
  padding-block: clamp(90px, 10vw, 156px);
  background: var(--bg);
}

.page-home .section--home-pains {
  z-index: 4;
  margin-top: -20svh;
  padding-top: 38svh;
  background: linear-gradient(to bottom, transparent 0, var(--bg) 22svh, var(--bg) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 90px);
  gap: 10vw;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  letter-spacing: -0.025em;
}

.section-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.section--muted {
  background: var(--bg-soft);
}

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

.section--contrast .section-lead,
.section--contrast .fine-print {
  color: rgba(241, 239, 231, 0.62);
}

.section--contrast .status {
  border-color: currentColor;
}

.fine-print {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

/* Homepage sections */
.problem-story,
.service-focus,
.secondary-service,
.company-context,
.delivery-grid,
.boundary-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 9vw, 150px);
}

.problem-story__statement {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.problem-story__statement > p {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.55;
}

.friction-list {
  margin: 0;
}

.friction-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) 1fr;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  gap: 38px;
}

.friction-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.friction-list dt {
  font-size: 17px;
  font-weight: 680;
}

.friction-list dd {
  margin: 0;
  color: var(--muted);
}

.section--home-primary {
  background: var(--paper);
  color: #161715;
}

.section--home-primary .section-lead {
  color: #666961;
}

.service-focus {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.service-focus__copy h3,
.secondary-service__copy h3 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.7vw, 42px);
}

.service-focus__copy p,
.secondary-service__copy > p {
  color: #5d605a;
  font-size: 17px;
}

.delivery-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
}

.delivery-outcomes > div {
  min-height: 160px;
  padding: 26px 0;
  border-top: 1px solid rgba(22, 23, 21, 0.2);
}

.delivery-outcomes strong,
.delivery-outcomes span {
  display: block;
}

.delivery-outcomes strong {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 17px;
}

.delivery-outcomes span {
  color: #60635c;
}

.collaboration-path {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr 0.92fr;
  margin: 0;
  padding: 0;
  gap: 5vw;
  list-style: none;
}

.collaboration-path::before {
  position: absolute;
  top: 10px;
  right: 3%;
  left: 3%;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.collaboration-path li {
  position: relative;
  padding-top: 46px;
}

.collaboration-path li:nth-child(2) {
  margin-top: 58px;
}

.collaboration-path li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  content: "";
}

.collaboration-path strong,
.collaboration-path span {
  display: block;
}

.collaboration-path strong {
  margin-bottom: 14px;
  font-size: 22px;
}

.collaboration-path span {
  color: var(--muted);
}

.secondary-service {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
}

.secondary-service__media .concept-figure__media,
.company-context__media .concept-figure__media {
  aspect-ratio: 16 / 10;
}

.secondary-service__copy {
  padding-right: 5vw;
}

.company-context {
  align-items: end;
}

.company-context__copy {
  padding-bottom: 26px;
}

.company-context__copy > p {
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.65;
}

.company-context__links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-board {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 90px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line-strong);
  gap: 9vw;
}

.trust-board > p {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.4;
}

.trust-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-board li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

/* Editorial content patterns */
.fit-grid,
.capability-grid,
.policy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0 clamp(50px, 8vw, 130px);
}

.fit-grid article,
.capability-grid article,
.policy-grid article {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.fit-grid article:nth-child(2n),
.capability-grid article:nth-child(2n),
.policy-grid article:nth-child(2n) {
  transform: translateY(46px);
}

.fit-grid h3,
.capability-grid h3,
.policy-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.fit-grid p,
.capability-grid p,
.policy-grid p {
  color: var(--muted);
}

.delivery-main h3,
.not-included h3 {
  margin-bottom: 28px;
  font-size: 25px;
}

.number-list {
  counter-reset: steps;
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 16px;
}

.number-list li::before {
  color: var(--accent);
  content: counter(steps, decimal-leading-zero);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.not-included {
  align-self: start;
  padding: clamp(30px, 4vw, 56px);
  background: var(--deep);
  color: var(--paper);
}

.not-included .clean-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.price-feature {
  padding: 46px 5vw 46px 0;
  border-right: 1px solid var(--line);
}

.price-feature span,
.price-feature strong,
.price-feature p {
  display: block;
}

.price-feature span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.price-feature strong {
  margin: 20px 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 580;
  font-variant-numeric: tabular-nums;
}

.price-list {
  padding: 28px 0 28px 5vw;
}

.price-list p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  font-variant-numeric: tabular-nums;
}

.plain-callout {
  max-width: 1000px;
  padding-left: clamp(28px, 5vw, 78px);
  border-left: 2px solid var(--accent);
}

.plain-callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.7;
}

.boundary-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.boundary-statement {
  max-width: 540px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.45;
}

.boundary-notes {
  display: grid;
  gap: 0;
}

.boundary-notes p {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(241, 239, 231, 0.72);
}

.boundary-notes strong {
  color: var(--paper);
}

.boundary-notes--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 6vw;
}

.record-band,
.gate-grid,
.authorization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.record-band span,
.gate-grid p,
.authorization-grid p {
  min-height: 104px;
  margin: 0;
  padding: 24px 22px 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.case-status-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0 8vw;
}

.case-status-grid article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.case-status-grid article:last-child {
  grid-column: 2;
}

.case-status-grid h3 {
  margin-top: 22px;
  font-size: 25px;
}

.case-status-grid p {
  color: var(--muted);
}

.demo-flow,
.refund-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.demo-flow article,
.refund-timeline article {
  min-height: 280px;
  padding: clamp(28px, 3vw, 46px);
  background: var(--bg);
}

.demo-flow article:nth-child(2),
.demo-flow article:nth-child(4),
.refund-timeline article:nth-child(2),
.refund-timeline article:nth-child(4) {
  background: var(--bg-raised);
}

.demo-flow h3,
.refund-timeline h3 {
  margin-bottom: 60px;
  font-size: 24px;
}

.demo-flow p,
.refund-timeline p {
  color: var(--muted);
}

/* Status and qualifications */
.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
}

.status--pass { color: var(--ok); }
.status--fail { color: var(--blocked); }
.status--blocked { color: var(--warn); }
.status--not_run { color: var(--not-run); }

.status-list,
.qualification-list {
  border-top: 1px solid var(--line-strong);
}

.status-item {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.25fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  gap: 9vw;
}

.status-item > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status-item h3 {
  margin: 0;
  font-size: 20px;
}

.status-item p {
  margin: 0;
  color: var(--muted);
}

.status-definition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4vw;
}

.status-definition-grid article {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.status-definition-grid p {
  color: rgba(241, 239, 231, 0.7);
}

.qualification-list article {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  gap: 7vw;
}

.qualification-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.qualification-list h3,
.qualification-list p {
  margin: 0;
}

.qualification-list p + p {
  margin-top: 10px;
  color: var(--muted);
}

/* Legal and disclosure */
.grouped-list {
  border-top: 1px solid var(--line-strong);
}

.grouped-list > div {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 7vw;
}

.grouped-list h3,
.grouped-list p {
  margin: 0;
}

.grouped-list p {
  color: var(--muted);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.responsibility-grid article {
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

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

.disclosure:last-child {
  border-bottom: 1px solid var(--line);
}

.disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  font-size: 18px;
  font-weight: 640;
  list-style: none;
}

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

.disclosure summary::after {
  color: var(--accent);
  content: "+";
  font-size: 26px;
  font-weight: 300;
}

.disclosure[open] summary::after {
  content: "−";
}

.disclosure > div {
  max-width: 820px;
  padding: 0 0 30px;
  color: var(--muted);
}

.contact-blocked {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  max-width: 980px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
  gap: 32px;
}

.contact-blocked p {
  margin: 0;
  font-size: 18px;
}

code {
  padding: 2px 6px;
  background: var(--bg-soft);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88em;
}

/* Contact form */
.form-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 24px;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field select {
  background-color: var(--bg);
  color: var(--ink);
}

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

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

.form-field [aria-invalid="true"] {
  border-color: var(--blocked);
}

.field-help,
.field-error,
.form-message {
  min-height: 1.5em;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.field-error {
  color: var(--blocked);
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--accent);
}

.summary-panel {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--deep);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.summary-panel__label {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.summary-panel h3 {
  font-size: 26px;
}

.summary-panel pre {
  max-height: 420px;
  overflow: auto;
  margin: 26px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f1e8;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.summary-panel .fine-print,
.summary-panel .form-message {
  color: rgba(244, 241, 232, 0.6);
}

.noscript-note {
  margin-top: 20px;
  color: var(--warn);
}

/* Closing statement */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 10vw, 150px);
  background: var(--deep);
  color: var(--paper);
}

.final-cta::before {
  position: absolute;
  top: -50%;
  right: -8%;
  width: 54vw;
  height: 150%;
  background:
    radial-gradient(circle at 50% 50%, rgba(194, 79, 49, 0.22), transparent 56%),
    linear-gradient(135deg, transparent 49.8%, rgba(255, 255, 255, 0.1) 50%, transparent 50.2%);
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 64px;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.8vw, 86px);
}

.final-cta p {
  max-width: 640px;
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 18px;
}

.final-cta .button--primary {
  min-width: 154px;
}

/* Footer */
.site-footer {
  padding-top: clamp(70px, 8vw, 120px);
  background: #0b0e0c;
  color: rgba(241, 239, 231, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 1fr 0.7fr;
  gap: 6vw;
}

.footer-grid > div:not(.footer-intro) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: #f1efe7;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-grid a,
.footer-grid span {
  font-size: 12px;
}

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

.footer-grid a:hover {
  color: #fff;
}

.wordmark--footer {
  color: #f4f1e8;
}

.footer-intro > p {
  max-width: 440px;
  margin: 28px 0 22px;
  color: rgba(241, 239, 231, 0.72);
}

.footer-stage {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 78px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 40px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(241, 239, 231, 0.45);
  font-size: 10px;
}

.not-found {
  min-height: 72svh;
  padding-top: calc(var(--header-height) + 120px);
  padding-bottom: 120px;
}

.not-found__code {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.not-found h1 {
  margin: 18px 0 24px;
  font-size: clamp(48px, 7vw, 100px);
}

/* View-based reveal with a static fallback */
@supports (animation-timeline: view()) {
  .section-heading,
  .section > .shell > :not(.section-heading) {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 32%;
  }
}

@keyframes section-reveal {
  from { opacity: 0.25; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1080px);
  }

  .site-header__inner {
    grid-template-columns: 140px 1fr 142px;
    gap: 16px;
  }

  .wordmark > small,
  .theme-toggle {
    display: none;
  }

  .desktop-nav {
    gap: 20px;
  }

  .page-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr 0.7fr;
    gap: 4vw;
  }
}

@media (max-width: 979px) {
  :root {
    --header-height: 68px;
    --shell: min(100% - 40px, 820px);
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

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

  .menu-toggle {
    display: inline-flex;
    gap: 10px;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 220ms var(--ease), opacity 180ms ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle i::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 44px max(20px, env(safe-area-inset-right)) max(44px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    background: var(--bg);
    color: var(--ink);
    overscroll-behavior: contain;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 26px;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--accent);
  }

  .home-hero {
    height: 124svh;
  }

  .home-hero__sticky {
    min-height: 620px;
  }

  .home-hero__copy {
    width: min(720px, 84vw);
  }

  .home-hero h1 {
    font-size: clamp(48px, 9vw, 76px);
  }

  .page-home .section--home-pains {
    margin-top: -12svh;
    padding-top: 25svh;
    background: linear-gradient(to bottom, transparent 0, var(--bg) 14svh, var(--bg) 100%);
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 96px);
    padding-bottom: 84px;
    gap: 54px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__media {
    width: min(680px, 90%);
    margin-left: auto;
  }

  .concept-figure__media {
    aspect-ratio: 16 / 11;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-story,
  .service-focus,
  .secondary-service,
  .company-context,
  .delivery-grid,
  .boundary-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .problem-story__statement,
  .summary-panel {
    position: static;
  }

  .collaboration-path {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .collaboration-path::before {
    top: 4px;
    right: auto;
    bottom: 4px;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .collaboration-path li,
  .collaboration-path li:nth-child(2) {
    margin-top: 0;
    padding: 0 0 0 36px;
  }

  .collaboration-path li::before {
    top: 6px;
  }

  .secondary-service__copy {
    padding-right: 0;
  }

  .trust-board {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .demo-flow,
  .refund-timeline,
  .status-definition-grid {
    grid-template-columns: 1fr 1fr;
  }

  .boundary-notes--three {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .wordmark > span {
    font-size: 24px;
  }

  .menu-toggle > span {
    font-size: 11px;
  }

  .home-hero {
    height: 108svh;
  }

  .home-hero__sticky {
    min-height: 560px;
  }

  .home-hero__image {
    object-position: 61% center;
  }

  .home-hero__shadow {
    background:
      linear-gradient(90deg, rgba(3, 6, 5, 0.7), rgba(3, 6, 5, 0.08) 82%),
      linear-gradient(180deg, rgba(3, 6, 5, 0.55), transparent 26%, transparent 54%, rgba(3, 6, 5, 0.76));
  }

  .home-hero__copy {
    top: 48%;
    width: 100%;
    transform: translateY(-45%);
  }

  .home-hero__overline {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .home-hero h1 {
    gap: 0.25em;
    margin-bottom: 20px;
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: 0;
  }

  .home-hero__intro {
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .home-hero__link {
    grid-template-columns: auto 20px;
    gap: 16px;
  }

  .home-hero__link > small {
    display: none;
  }

  .home-hero__motto {
    bottom: max(24px, env(safe-area-inset-bottom));
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .home-hero__motto span {
    width: 18px;
  }

  .home-hero__scroll-cue {
    display: none;
  }

  .page-home .section--home-pains {
    margin-top: -8svh;
    padding-top: 17svh;
    background: linear-gradient(to bottom, transparent 0, var(--bg) 9svh, var(--bg) 100%);
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 68px;
    gap: 44px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .page-cases .page-hero h1,
  .page-qualifications .page-hero h1,
  .page-contact .page-hero h1,
  .page-legal .page-hero h1 {
    font-size: clamp(40px, 11.5vw, 52px);
  }

  .hero__intro {
    font-size: 16px;
  }

  .hero__media {
    width: 94%;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .problem-story__statement > p,
  .company-context__copy > p,
  .plain-callout p {
    font-size: 23px;
  }

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

  .delivery-outcomes,
  .fit-grid,
  .capability-grid,
  .policy-grid,
  .case-status-grid,
  .record-band,
  .gate-grid,
  .authorization-grid,
  .demo-flow,
  .refund-timeline,
  .status-definition-grid,
  .responsibility-grid,
  .form-split {
    grid-template-columns: 1fr;
  }

  .fit-grid article:nth-child(2n),
  .capability-grid article:nth-child(2n),
  .policy-grid article:nth-child(2n),
  .case-status-grid article:last-child {
    grid-column: auto;
    transform: none;
  }

  .delivery-outcomes > div {
    min-height: auto;
  }

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

  .price-feature {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-list {
    padding-left: 0;
  }

  .price-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .demo-flow article,
  .refund-timeline article {
    min-height: 210px;
  }

  .demo-flow h3,
  .refund-timeline h3 {
    margin-bottom: 26px;
  }

  .status-item,
  .qualification-list article,
  .grouped-list > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .status-item > div,
  .qualification-list article > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-blocked {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px 28px;
  }

  .footer-intro,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
    gap: 18px;
  }
}

@media (update: none) {
  html {
    scroll-behavior: auto;
  }

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

  .home-hero {
    height: 100svh;
  }

  .home-hero__sticky {
    position: relative;
  }

  .page-home .section--home-pains {
    margin-top: 0;
    padding-top: clamp(90px, 10vw, 156px);
    background: var(--bg);
  }

  .concept-figure:hover img,
  .button:hover {
    transform: none;
  }
}

/* V12 full-site editorial system */
:root {
  --bg: #e4e4de;
  --bg-raised: #f2f1ec;
  --bg-soft: #d8d7cf;
  --ink: #222521;
  --ink-soft: #484d47;
  --muted: #6e726b;
  --deep: #20272b;
  --deep-soft: #343c34;
  --paper: #f2f1ec;
  --accent: #c74b2c;
  --accent-dark: #96361f;
  --shell: min(1440px, calc(100vw - 128px));
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 240ms ease both page-exit;
}

::view-transition-new(root) {
  animation: 320ms var(--ease) both page-enter;
}

@keyframes page-exit {
  to { opacity: 0; transform: translateY(-3px); }
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(4px); }
}

.site-header--overlay {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(to bottom, rgba(12, 17, 17, 0.72), rgba(12, 17, 17, 0.06));
  color: #f4f2e9;
}

.site-header--overlay.is-solid {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(8, 11, 9, 0.08);
  backdrop-filter: blur(14px);
}

/* Continuous homepage transition */
.home-hero {
  height: 156svh;
  background: var(--bg);
  isolation: isolate;
}

.home-hero__sticky::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 36svh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--bg) 9%, transparent) 24%,
    color-mix(in srgb, var(--bg) 58%, transparent) 66%,
    var(--bg) 100%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: home-page-wash linear both;
  animation-timeline: --home-hero;
  animation-range: exit 18% exit 92%;
}

.home-hero__content {
  z-index: 3;
}

@keyframes home-page-wash {
  from { opacity: 0; transform: translateY(12%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-image-drift {
  from { transform: scale(1); }
  to { transform: scale(1.018) translateY(-0.8%); }
}

@keyframes home-copy-exit {
  0%, 44% { opacity: 1; transform: translateY(-48%); }
  100% { opacity: 0; transform: translateY(-58%); }
}

.page-home .section--home-pains {
  z-index: 4;
  margin-top: -24svh;
  padding-top: 29svh;
  background: linear-gradient(
    to bottom,
    transparent 0,
    color-mix(in srgb, var(--bg) 60%, transparent) 8svh,
    var(--bg) 20svh,
    var(--bg) 100%
  );
}

.page-home .section--home-pains .section-heading {
  grid-template-columns: minmax(620px, 1.24fr) minmax(300px, 0.76fr);
  margin-bottom: clamp(62px, 8vw, 110px);
  gap: 6vw;
}

.home-hero__motto {
  z-index: 4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
  animation-range: exit 22% exit 88%;
}

@keyframes home-motto-exit {
  0%, 36% { color: #f2f0e6; opacity: 1; transform: translateX(-50%); }
  76% { color: rgba(34, 37, 33, 0.72); opacity: 0.78; transform: translate(-50%, -8px); }
  100% { color: rgba(34, 37, 33, 0.38); opacity: 0; transform: translate(-50%, -18px); }
}

/* Interior hero families */
.page-hero {
  min-height: 58svh;
}

.hero--product,
.hero--services,
.hero--cases,
.hero--progress,
.hero--qualifications,
.hero--contact,
.hero--legal {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(64px, calc((100vw - 1440px) / 2));
  padding-left: max(64px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  isolation: isolate;
}

.hero--product,
.hero--services,
.hero--cases,
.hero--progress {
  grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.1fr);
  color: var(--paper);
  background: var(--deep);
}

.hero--product { min-height: 76svh; }
.hero--services { min-height: 70svh; }
.hero--cases { min-height: 78svh; }
.hero--progress { min-height: 66svh; }

.hero--product::before,
.hero--services::before,
.hero--cases::before,
.hero--progress::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(20, 26, 27, 0.98) 0%, rgba(20, 26, 27, 0.9) 30%, rgba(20, 26, 27, 0.52) 51%, rgba(20, 26, 27, 0.06) 78%),
    linear-gradient(180deg, rgba(15, 20, 20, 0.28), transparent 32%, rgba(18, 23, 23, 0.46));
}

.hero--product::after,
.hero--services::after,
.hero--cases::after,
.hero--progress::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 18%;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--bg) 96%, transparent));
  content: "";
  pointer-events: none;
}

.hero--product .hero__copy,
.hero--services .hero__copy,
.hero--cases .hero__copy,
.hero--progress .hero__copy {
  z-index: 3;
  width: min(650px, 48vw);
  padding-top: 4vh;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.34);
}

.hero--product .hero__intro,
.hero--services .hero__intro,
.hero--cases .hero__intro,
.hero--progress .hero__intro {
  color: rgba(242, 241, 236, 0.78);
}

.hero--product .button--secondary,
.hero--services .button--secondary,
.hero--cases .button--secondary,
.hero--progress .button--secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--paper);
}

.hero--product .hero__media,
.hero--services .hero__media,
.hero--cases .hero__media,
.hero--progress .hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero--product .concept-figure,
.hero--services .concept-figure,
.hero--cases .concept-figure,
.hero--progress .concept-figure,
.hero--product .concept-figure__media,
.hero--services .concept-figure__media,
.hero--cases .concept-figure__media,
.hero--progress .concept-figure__media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.hero--product .concept-figure img,
.hero--services .concept-figure img,
.hero--cases .concept-figure img,
.hero--progress .concept-figure img {
  object-position: center;
  filter: saturate(0.76) contrast(1.05);
}

.hero--product .concept-figure:hover img,
.hero--cases .concept-figure:hover img {
  filter: saturate(0.76) contrast(1.05);
}

.hero--product .concept-figure figcaption,
.hero--services .concept-figure figcaption,
.hero--cases .concept-figure figcaption,
.hero--progress .concept-figure figcaption {
  position: absolute;
  z-index: 4;
  right: max(64px, calc((100vw - 1440px) / 2));
  bottom: 28px;
  display: block;
  width: min(410px, 38vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  text-align: right;
}

.hero--product .concept-figure figcaption span,
.hero--services .concept-figure figcaption span,
.hero--cases .concept-figure figcaption span,
.hero--progress .concept-figure figcaption span {
  margin-right: 12px;
  color: #f0a188;
}

.hero--services .concept-figure img {
  object-position: 68% center;
  transform: scaleX(-1);
}

.hero--services .concept-figure:hover img {
  transform: scaleX(-1) scale(1.025);
}

.hero--cases::before {
  background:
    linear-gradient(90deg, rgba(20, 24, 24, 0.98) 0%, rgba(20, 24, 24, 0.93) 34%, rgba(20, 24, 24, 0.42) 60%, rgba(20, 24, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 19, 19, 0.4), transparent 48%, rgba(18, 23, 23, 0.58));
}

.hero--progress .concept-figure img {
  object-position: 58% center;
  filter: saturate(0.48) contrast(1.08);
}

.hero--progress .concept-figure:hover img {
  filter: saturate(0.48) contrast(1.08);
}

.hero--qualifications,
.hero--contact,
.hero--legal {
  grid-template-columns: minmax(0, 860px) minmax(180px, 1fr);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 98%, transparent) 0 52%, color-mix(in srgb, var(--bg) 58%, transparent) 76%, color-mix(in srgb, var(--bg) 18%, transparent)),
    url("/assets/paper-stone-light-v12.webp") center / cover no-repeat;
}

.hero--qualifications {
  min-height: 56svh;
}

.hero--contact {
  min-height: 52svh;
  background-position: center, 63% center;
}

.hero--legal {
  min-height: 42svh;
  grid-template-columns: minmax(0, 900px) 1fr;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 64px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(24, 31, 33, 0.99) 0%, rgba(28, 36, 38, 0.96) 48%, rgba(32, 39, 43, 0.68) 74%, rgba(32, 39, 43, 0.34)),
    url("/assets/paper-stone-light-v12.webp") center / cover no-repeat;
}

.hero--qualifications::before,
.hero--contact::before,
.hero--legal::before {
  display: none;
}

.hero--qualifications .hero__copy,
.hero--contact .hero__copy,
.hero--legal .hero__copy {
  max-width: 800px;
}

.hero--legal h1 {
  max-width: 900px;
  font-size: clamp(46px, 5vw, 74px);
}

.hero--legal .hero__intro {
  color: rgba(242, 241, 236, 0.74);
}

.hero--legal .button--secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--paper);
}

/* More deliberate global section rhythm */
.section {
  padding-block: clamp(104px, 10vw, 160px);
}

.section-heading {
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
}

.section-heading h2 {
  max-width: 820px;
  font-size: clamp(40px, 4.35vw, 66px);
  line-height: 1.14;
}

@supports (animation-timeline: view()) {
  .section-heading,
  .section > .shell > :not(.section-heading) {
    animation: none;
  }

  .page-home .friction-list > div,
  .page-home .delivery-outcomes > div,
  .page-home .collaboration-path li,
  .page-product .fit-grid article,
  .page-services .capability-grid article,
  .page-cases .demo-flow article,
  .page-progress .status-item {
    animation: chapter-detail-enter linear both;
    animation-timeline: view();
    animation-range: entry 4% entry 32%;
  }
}

@keyframes chapter-detail-enter {
  from { opacity: 0.16; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product: river convergence */
.section--product-fit {
  padding-top: clamp(84px, 8vw, 128px);
}

.section--product-fit .section-heading {
  grid-template-columns: minmax(460px, 1.15fr) minmax(320px, 0.85fr);
}

.section--product-fit .fit-grid {
  grid-template-columns: 1.3fr 0.7fr;
  padding-left: 12vw;
}

.section--product-fit .fit-grid article:nth-child(3) {
  margin-left: -8vw;
}

.section--product-delivery {
  background: var(--bg-raised);
}

.section--product-delivery .section-heading {
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
}

.section--product-delivery .delivery-grid {
  grid-template-columns: minmax(380px, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
}

.section--product-delivery .not-included {
  margin-top: 72px;
  padding: 8px 0 8px clamp(28px, 4vw, 60px);
  border-left: 2px solid var(--accent);
  background: transparent;
  color: var(--ink);
}

.section--product-delivery .not-included .clean-list li {
  border-color: var(--line);
  color: var(--muted);
}

.section--product-pricing .price-layout {
  margin-left: 10vw;
}

.section--product-boundary .section-heading {
  grid-template-columns: minmax(520px, 1.1fr) minmax(300px, 0.9fr);
}

/* Services: diagnostic layers */
.section--service-capabilities .section-heading {
  grid-template-columns: 1fr 0.72fr;
}

.section--service-capabilities .capability-grid {
  display: block;
  max-width: 1080px;
  margin-left: auto;
}

.section--service-capabilities .capability-grid article,
.section--service-capabilities .capability-grid article:nth-child(2n) {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(420px, 1.45fr);
  align-items: baseline;
  padding: 34px 0;
  transform: none;
  gap: 7vw;
}

.section--service-capabilities .capability-grid h3,
.section--service-capabilities .capability-grid p {
  margin: 0;
}

.section--service-boundary {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.03), transparent 44%),
    var(--deep);
}

.section--service-boundary .boundary-statement {
  max-width: 650px;
}

.section--service-record {
  background: var(--bg-raised);
}

.section--service-record .record-band {
  grid-template-columns: 1fr 1fr;
  max-width: 980px;
  margin-left: auto;
}

.section--service-record .record-band span {
  min-height: 120px;
  padding: 30px 44px 30px 0;
  font-family: var(--font-display);
  font-size: 20px;
}

/* Cases: a calm review room */
.section--cases-status {
  padding-top: clamp(72px, 7vw, 112px);
  background: #1a211f;
  color: var(--paper);
}

.section--cases-status .section-lead,
.section--cases-status .case-status-grid p {
  color: rgba(242, 241, 236, 0.66);
}

.section--cases-status .case-status-grid {
  grid-template-columns: 1.2fr 0.8fr;
  padding-left: 10vw;
}

.section--cases-status .case-status-grid article {
  border-color: rgba(255, 255, 255, 0.17);
}

.section--cases-status .case-status-grid article:last-child {
  margin-top: 72px;
}

.section--cases-demo .section-heading {
  grid-template-columns: minmax(520px, 1.1fr) minmax(300px, 0.9fr);
}

.section--cases-demo .demo-flow {
  display: block;
  max-width: 1080px;
  margin-left: auto;
  background: transparent;
}

.section--cases-demo .demo-flow article,
.section--cases-demo .demo-flow article:nth-child(2n) {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(420px, 1.55fr);
  min-height: 0;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  gap: 8vw;
}

.section--cases-demo .demo-flow article:nth-child(2),
.section--cases-demo .demo-flow article:nth-child(4) {
  margin-left: 7vw;
}

.section--cases-demo .demo-flow h3,
.section--cases-demo .demo-flow p {
  margin: 0;
}

.section--cases-authorization .authorization-grid {
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 1000px;
  margin-left: auto;
}

/* Progress: evidence above claims */
.section--progress-status .status-list {
  border-top: 0;
}

.section--progress-status .status-item {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  padding: 42px 0;
}

.section--progress-status .status-item:nth-child(2n) {
  margin-left: 8vw;
}

.section--progress-status .status-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
}

.section--progress-method .status-definition-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0 8vw;
}

.section--progress-method .status-definition-grid article:nth-child(2n) {
  margin-top: 46px;
}

.section--progress-gates .gate-grid {
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 1020px;
  margin-left: auto;
}

/* Qualifications: natural light, no certificate wall */
.section--qualifications-register {
  padding-top: clamp(80px, 8vw, 128px);
  background: var(--bg-raised);
}

.section--qualifications-register .qualification-list {
  margin-left: 8vw;
}

.section--qualifications-register .qualification-list article {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
}

.section--qualifications-register .qualification-list article:nth-child(3),
.section--qualifications-register .qualification-list article:nth-child(6) {
  margin-top: 52px;
  border-top: 2px solid var(--line-strong);
}

.section--qualifications-boundary .plain-callout {
  max-width: 1120px;
  margin-left: 7vw;
}

.section--qualifications-check .number-list--wide {
  max-width: 940px;
  margin-left: auto;
}

.section--qualifications-check .number-list--wide li {
  grid-template-columns: 54px 1fr;
  padding: 24px 0;
}

/* Contact: quiet arrival and an explicit local-only boundary */
.section--contact-form {
  padding-top: clamp(84px, 8vw, 128px);
  background: var(--bg-raised);
}

.section--contact-form .form-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: start;
}

.section--contact-form .request-form {
  padding: clamp(28px, 4vw, 58px);
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  box-shadow: 0 24px 72px rgba(34, 37, 33, 0.08);
}

.form-context,
.summary-panel {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.form-context {
  padding: clamp(32px, 4vw, 52px) 0 clamp(32px, 4vw, 52px) clamp(32px, 4vw, 58px);
  border-left: 1px solid var(--line-strong);
}

.form-context__label {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.form-context h3 {
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
}

.form-context p {
  color: var(--muted);
}

.form-context ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.form-context li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.section--contact-channel .contact-blocked {
  margin-left: 12vw;
}

/* Legal: readable documents with a stable editorial rail */
.page-legal main {
  background: var(--bg);
}

.section--legal > .shell {
  width: min(1120px, calc(100vw - 128px));
}

.section--legal .section-heading {
  grid-template-columns: minmax(240px, 0.55fr) minmax(520px, 1.45fr);
  gap: 7vw;
}

.section--legal .section-heading h2 {
  font-size: clamp(34px, 3.7vw, 52px);
}

.section--legal .section-heading ~ * {
  width: min(760px, 100%);
  margin-right: 0;
  margin-left: auto;
}

.section--legal .policy-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0 52px;
}

.section--legal .policy-grid article:nth-child(2n) {
  transform: translateY(34px);
}

.section--terms-responsibility .responsibility-grid {
  grid-template-columns: 0.72fr 1.28fr;
}

.section--refund-principles .refund-timeline {
  display: block;
  background: transparent;
}

.section--refund-principles .refund-timeline article,
.section--refund-principles .refund-timeline article:nth-child(2n) {
  min-height: 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.section--refund-principles .refund-timeline h3 {
  margin-bottom: 16px;
}

.section--ip-boundary .policy-grid article:first-child {
  grid-row: span 2;
  padding-right: 38px;
}

/* Route-specific closing statements */
.page-product .final-cta::before {
  background: radial-gradient(circle at 82% 48%, rgba(199, 75, 44, 0.2), transparent 34%);
}

.page-services .final-cta {
  background: #29312d;
}

.page-cases .final-cta {
  background: #151a19;
}

.page-progress .final-cta {
  background: #313a3e;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 80px, 1120px);
  }

  .hero--product,
  .hero--services,
  .hero--cases,
  .hero--progress,
  .hero--qualifications,
  .hero--contact,
  .hero--legal {
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero--product .concept-figure figcaption,
  .hero--services .concept-figure figcaption,
  .hero--cases .concept-figure figcaption,
  .hero--progress .concept-figure figcaption {
    right: 40px;
  }
}

@media (max-width: 979px) {
  :root {
    --shell: min(100% - 40px, 820px);
  }

  .site-header--overlay .mobile-menu {
    background: var(--deep);
    color: var(--paper);
  }

  .home-hero {
    height: 120svh;
  }

  .page-home .section--home-pains {
    margin-top: -19svh;
    padding-top: 24svh;
    background: linear-gradient(to bottom, transparent 0, color-mix(in srgb, var(--bg) 64%, transparent) 7svh, var(--bg) 16svh, var(--bg) 100%);
  }

  .hero--product,
  .hero--services,
  .hero--cases,
  .hero--progress {
    display: flex;
    align-items: flex-end;
    min-height: 78svh;
    padding: calc(var(--header-height) + 86px) 40px 94px;
  }

  .hero--product .hero__copy,
  .hero--services .hero__copy,
  .hero--cases .hero__copy,
  .hero--progress .hero__copy {
    width: min(720px, 86vw);
    padding-top: 0;
  }

  .hero--product::before,
  .hero--services::before,
  .hero--cases::before,
  .hero--progress::before {
    background:
      linear-gradient(90deg, rgba(19, 24, 24, 0.86), rgba(19, 24, 24, 0.18)),
      linear-gradient(180deg, rgba(16, 21, 21, 0.18) 0%, rgba(16, 21, 21, 0.16) 34%, rgba(16, 21, 21, 0.9) 84%);
  }

  .hero--product .concept-figure figcaption,
  .hero--services .concept-figure figcaption,
  .hero--cases .concept-figure figcaption,
  .hero--progress .concept-figure figcaption {
    right: 40px;
    bottom: 24px;
    width: min(520px, 70vw);
  }

  .hero--qualifications,
  .hero--contact,
  .hero--legal {
    grid-template-columns: 1fr;
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero--legal {
    color: var(--paper);
    background:
      linear-gradient(110deg, rgba(24, 31, 33, 0.99), rgba(30, 38, 40, 0.86) 70%, rgba(32, 39, 43, 0.56)),
      url("/assets/paper-stone-light-v12.webp") 62% center / cover no-repeat;
  }

  .section--product-fit .fit-grid,
  .section--cases-status .case-status-grid,
  .section--qualifications-register .qualification-list {
    padding-left: 0;
    margin-left: 0;
  }

  .section--product-pricing .price-layout,
  .section--qualifications-boundary .plain-callout,
  .section--contact-channel .contact-blocked {
    margin-left: 0;
  }

  .section--service-capabilities .capability-grid article,
  .section--service-capabilities .capability-grid article:nth-child(2n),
  .section--cases-demo .demo-flow article,
  .section--cases-demo .demo-flow article:nth-child(2n) {
    grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1.52fr);
    gap: 48px;
  }

  .section--cases-demo .demo-flow article:nth-child(2),
  .section--cases-demo .demo-flow article:nth-child(4),
  .section--progress-status .status-item:nth-child(2n) {
    margin-left: 0;
  }

  .form-context,
  .summary-panel {
    position: static;
  }

  .section--legal > .shell {
    width: min(100% - 64px, 860px);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .home-hero {
    height: 112svh;
  }

  .home-hero__sticky::after {
    height: 38svh;
  }

  .page-home .section--home-pains {
    margin-top: -15svh;
    padding-top: 20svh;
    background: linear-gradient(to bottom, transparent 0, color-mix(in srgb, var(--bg) 68%, transparent) 5svh, var(--bg) 12svh, var(--bg) 100%);
  }

  .hero--product,
  .hero--services,
  .hero--cases,
  .hero--progress {
    min-height: 76svh;
    padding: calc(var(--header-height) + 72px) 20px 82px;
  }

  .hero--product .hero__copy,
  .hero--services .hero__copy,
  .hero--cases .hero__copy,
  .hero--progress .hero__copy {
    width: 100%;
  }

  .hero--product h1,
  .hero--services h1,
  .hero--cases h1,
  .hero--progress h1 {
    max-width: 9em;
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .hero--product .concept-figure img {
    object-position: 61% center;
  }

  .hero--services .concept-figure img {
    object-position: 58% center;
  }

  .hero--cases .concept-figure img {
    object-position: 70% center;
  }

  .hero--product .concept-figure figcaption,
  .hero--services .concept-figure figcaption,
  .hero--cases .concept-figure figcaption,
  .hero--progress .concept-figure figcaption {
    right: 20px;
    bottom: 18px;
    width: calc(100% - 40px);
    font-size: 9px;
  }

  .hero--qualifications,
  .hero--contact,
  .hero--legal {
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--bg) 98%, transparent) 0 74%, color-mix(in srgb, var(--bg) 50%, transparent)),
      url("/assets/paper-stone-light-v12.webp") 56% center / cover no-repeat;
  }

  .hero--legal {
    color: var(--paper);
    background:
      linear-gradient(110deg, rgba(24, 31, 33, 0.99), rgba(30, 38, 40, 0.88) 72%, rgba(32, 39, 43, 0.58)),
      url("/assets/paper-stone-light-v12.webp") 58% center / cover no-repeat;
  }

  .hero--qualifications,
  .hero--contact {
    min-height: 56svh;
  }

  .hero--legal {
    min-height: 46svh;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 52px;
  }

  .hero--legal h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .section {
    padding-block: 84px;
  }

  .section-heading,
  .section--product-fit .section-heading,
  .section--product-delivery .section-heading,
  .section--product-boundary .section-heading,
  .section--service-capabilities .section-heading,
  .section--cases-demo .section-heading,
  .section--legal .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section--product-fit .fit-grid,
  .section--cases-status .case-status-grid,
  .section--progress-method .status-definition-grid,
  .section--cases-authorization .authorization-grid,
  .section--progress-gates .gate-grid,
  .section--service-record .record-band {
    grid-template-columns: 1fr;
  }

  .section--product-fit .fit-grid article:nth-child(3),
  .section--cases-status .case-status-grid article:last-child,
  .section--progress-method .status-definition-grid article:nth-child(2n) {
    margin-top: 0;
    margin-left: 0;
  }

  .section--product-delivery .delivery-grid,
  .section--contact-form .form-layout,
  .section--qualifications-register .qualification-list article,
  .section--progress-status .status-item {
    grid-template-columns: 1fr;
  }

  .section--product-delivery .not-included {
    margin-top: 12px;
  }

  .section--service-capabilities .capability-grid article,
  .section--service-capabilities .capability-grid article:nth-child(2n),
  .section--cases-demo .demo-flow article,
  .section--cases-demo .demo-flow article:nth-child(2n) {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section--service-record .record-band span {
    min-height: 88px;
  }

  .section--contact-form .request-form {
    padding: 28px 20px;
  }

  .form-context {
    padding: 34px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .section--legal > .shell {
    width: calc(100% - 40px);
  }

  .section--legal .section-heading ~ * {
    width: 100%;
  }

  .section--legal .policy-grid,
  .section--terms-responsibility .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .section--legal .policy-grid article:nth-child(2n) {
    transform: none;
  }
}

:root[data-theme="dark"] .hero--qualifications,
:root[data-theme="dark"] .hero--contact,
:root[data-theme="dark"] .hero--legal {
  background:
    linear-gradient(90deg, rgba(17, 21, 18, 0.97) 0 56%, rgba(17, 21, 18, 0.7) 82%, rgba(17, 21, 18, 0.35)),
    url("/assets/paper-stone-light-v12.webp") center / cover no-repeat;
}

:root[data-theme="dark"] .section--contact-form .request-form {
  background: rgba(24, 29, 25, 0.82);
}

@media (update: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }

  .home-hero {
    height: 100svh;
  }

  .home-hero__sticky::after {
    display: none;
  }

  .page-home .section--home-pains {
    margin-top: 0;
    padding-top: clamp(90px, 10vw, 156px);
    background: var(--bg);
  }
}


/* source: pages-core.css */
/* V14 page-specific reconstruction from generated interface references */

body:not(.page-home) main {
  background: var(--bg);
}

body:not(.page-home) .page-hero h1,
body:not(.page-home) .section-heading h2,
body:not(.page-home) .final-cta h2 {
  letter-spacing: -0.045em;
}

body:not(.page-home) .page-hero h1 {
  font-family: var(--font-sans);
  font-weight: 510;
}

body:not(.page-home) .section-heading {
  display: block;
}

body:not(.page-home) .section-heading h2 {
  max-width: 14ch;
  margin-bottom: 24px;
}

body:not(.page-home) .section-lead {
  max-width: 58ch;
}

body:not(.page-home) .eyebrow {
  letter-spacing: 0.14em;
}

.route-product .hero--product,
.route-services .hero--services,
.route-cases .hero--cases,
.route-progress .hero--progress {
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 72px;
}

.route-product .hero--product h1,
.route-services .hero--services h1,
.route-cases .hero--cases h1,
.route-progress .hero--progress h1 {
  max-width: 9.5ch;
  font-size: clamp(50px, 6.4vw, 92px);
  line-height: 1.03;
}

.route-product .hero--product .hero__intro,
.route-services .hero--services .hero__intro,
.route-cases .hero--cases .hero__intro,
.route-progress .hero--progress .hero__intro {
  max-width: 34em;
  font-size: clamp(16px, 1.32vw, 20px);
}

.route-product .hero--product::after,
.route-services .hero--services::after,
.route-cases .hero--cases::after,
.route-progress .hero--progress::after {
  height: 11rem;
  background: linear-gradient(to bottom, transparent, var(--deep));
}

/* Product: a working table and a process that converges */

.route-product {
  background: #111513;
}

.route-product .hero--product::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.99) 0%, rgba(10, 13, 12, 0.94) 34%, rgba(10, 13, 12, 0.54) 57%, rgba(10, 13, 12, 0.08) 86%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 50%, rgba(6, 8, 7, 0.66));
}

.route-product .hero--product .hero__copy {
  align-self: center;
  width: min(680px, 48vw);
  padding-top: 0;
}

.route-product .hero--product .concept-figure img {
  object-position: 57% center;
  filter: saturate(0.7) contrast(1.08) brightness(0.78);
}

.route-product .section--product-fit {
  position: relative;
  padding-top: 150px;
  background:
    radial-gradient(circle at 78% 20%, rgba(194, 79, 49, 0.08), transparent 28%),
    #e8e8e3;
  color: #171a18;
}

.route-product .section--product-fit > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}

.route-product .section--product-fit .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.route-product .section--product-fit .fit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px 24px;
  padding: 0;
  margin: 0;
}

.route-product .section--product-fit .fit-grid article {
  min-height: 230px;
  padding: 28px 0 40px;
  border: 0;
  border-top: 1px solid rgba(20, 23, 21, 0.34);
  background: transparent;
  box-shadow: none;
}

.route-product .section--product-fit .fit-grid article:nth-child(1),
.route-product .section--product-fit .fit-grid article:nth-child(4) {
  grid-column: span 7;
}

.route-product .section--product-fit .fit-grid article:nth-child(2),
.route-product .section--product-fit .fit-grid article:nth-child(3) {
  grid-column: span 5;
}

.route-product .section--product-fit .fit-grid article:nth-child(3) {
  margin: 0;
}

.route-product .section--product-fit .fit-grid h3 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.route-product .section--product-delivery {
  min-height: 850px;
  color: #ecebe5;
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.99) 0 51%, rgba(11, 15, 13, 0.65) 70%, rgba(11, 15, 13, 0.2)),
    url("/assets/quote-work-session.webp") 78% center / cover no-repeat;
}

.route-product .section--product-delivery > .shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
  gap: 72px;
}

.route-product .section--product-delivery .delivery-grid {
  display: block;
}

.route-product .section--product-delivery .delivery-main {
  max-width: 660px;
  padding: 48px;
  background: rgba(8, 11, 10, 0.74);
  backdrop-filter: blur(12px);
}

.route-product .section--product-delivery .not-included {
  width: min(560px, 100%);
  margin: 32px 0 0 auto;
  padding: 34px 40px;
  border: 1px solid rgba(238, 236, 227, 0.22);
  background: rgba(18, 23, 20, 0.84);
  color: #ecebe5;
}

.route-product .section--product-delivery .not-included .clean-list li,
.route-product .section--product-delivery .number-list li {
  border-color: rgba(238, 236, 227, 0.18);
}

.route-product .section--product-pricing {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(223, 224, 218, 0.92)),
    url("/assets/paper-stone-light-v12.webp") center / cover no-repeat;
  color: #171a18;
}

.route-product .section--product-pricing > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
}

.route-product .section--product-pricing .price-layout {
  grid-template-columns: minmax(250px, 0.74fr) minmax(0, 1.26fr);
}

.route-product .section--product-boundary {
  background: #d8dad5;
  color: #171a18;
}

.route-product .final-cta {
  background: #101412;
  color: #eeece5;
}

/* Services: diagnostic workshop and recovery route */

.route-services .hero--services::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.98) 0%, rgba(7, 10, 9, 0.9) 38%, rgba(7, 10, 9, 0.28) 70%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.22), transparent 54%, rgba(7, 10, 9, 0.76));
}

.route-services .hero--services .concept-figure img {
  object-position: 68% center;
  transform: none;
  filter: saturate(0.42) contrast(1.15) brightness(0.62);
}

.route-services .hero--services .concept-figure:hover img {
  transform: scale(1.012);
}

.route-services .hero--services .hero__copy {
  align-self: end;
  width: min(760px, 54vw);
  padding: 0 0 9vh;
}

.route-services .section--service-capabilities {
  background: #dde0dd;
  color: #151816;
}

.route-services .section--service-capabilities > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 10vw, 160px);
}

.route-services .section--service-capabilities .section-heading {
  align-self: center;
}

.route-services .section--service-capabilities .capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 30px;
}

.route-services .section--service-capabilities .capability-grid article,
.route-services .section--service-capabilities .capability-grid article:nth-child(2n) {
  grid-template-columns: 1fr;
  grid-column: span 6;
  min-height: 250px;
  padding: 34px 0;
  border: 0;
  border-top: 1px solid rgba(21, 24, 22, 0.3);
  background: transparent;
}

.route-services .section--service-capabilities .capability-grid article:nth-child(2) {
  margin-top: 84px;
}

.route-services .section--service-capabilities .capability-grid article:nth-child(3) {
  margin-top: -30px;
}

.route-services .section--service-capabilities .capability-grid h3 {
  font-size: clamp(26px, 2.4vw, 38px);
}

.route-services .section--service-boundary {
  min-height: 760px;
  color: #eeece6;
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.97) 0 54%, rgba(10, 13, 12, 0.58) 77%, rgba(10, 13, 12, 0.2)),
    url("/assets/local-ai-workstation.jpg") 76% center / cover no-repeat;
}

.route-services .section--service-boundary > .shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.route-services .section--service-boundary .boundary-layout {
  display: grid;
  gap: 50px;
  padding: 48px;
  background: rgba(8, 11, 10, 0.72);
  backdrop-filter: blur(12px);
}

.route-services .section--service-pricing {
  background: #e5e5e0;
  color: #181a18;
}

.route-services .section--service-pricing > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 86px;
}

.route-services .section--service-record {
  background: #1a201d;
  color: #efede6;
}

.route-services .section--service-record .record-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.5fr 0.9fr 1.1fr 1fr;
  gap: 0;
  border: 1px solid rgba(239, 237, 230, 0.22);
}

.route-services .section--service-record .record-band span {
  min-height: 150px;
  border-right: 1px solid rgba(239, 237, 230, 0.16);
}

.route-services .final-cta {
  background: #d8dbd8;
  color: #151816;
}

/* Cases: screening room and authorization evidence */

.route-cases,
.route-cases main {
  background: #090b0a;
}

.route-cases .hero--cases {
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  background: #090b0a;
}

.route-cases .hero--cases::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.99) 0 27%, rgba(5, 7, 6, 0.72) 46%, rgba(5, 7, 6, 0.14) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 50%, rgba(0, 0, 0, 0.66));
}

.route-cases .hero--cases .hero__copy {
  align-self: center;
  width: min(520px, 40vw);
}

.route-cases .hero--cases .hero__media {
  inset: 12vh 4vw 10vh 37vw;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.55);
}

.route-cases .hero--cases .concept-figure img {
  object-position: 70% center;
  filter: saturate(0.32) contrast(1.14) brightness(0.72);
}

.route-cases .section {
  color: #e8e7e0;
  background: #0c0f0e;
}

.route-cases .section--cases-status {
  background:
    radial-gradient(circle at 18% 38%, rgba(194, 79, 49, 0.08), transparent 25%),
    #0c0f0e;
}

.route-cases .section--cases-status > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
}

.route-cases .section--cases-status .case-status-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}

.route-cases .section--cases-status .case-status-grid article {
  grid-column: span 5;
  min-height: 260px;
  padding: 36px;
  border: 1px solid rgba(232, 231, 224, 0.17);
  background: rgba(255, 255, 255, 0.025);
}

.route-cases .section--cases-status .case-status-grid article:first-child {
  grid-column: span 7;
}

.route-cases .section--cases-status .case-status-grid article:last-child {
  grid-column: 3 / span 10;
  margin: 0;
  background: rgba(194, 79, 49, 0.08);
}

.route-cases .section--cases-demo {
  overflow: hidden;
  background: #121614;
}

.route-cases .section--cases-demo .demo-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 18px;
}

.route-cases .section--cases-demo .demo-flow article,
.route-cases .section--cases-demo .demo-flow article:nth-child(2n) {
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(232, 231, 224, 0.16);
  background:
    linear-gradient(to top, rgba(7, 9, 8, 0.98), rgba(7, 9, 8, 0.08)),
    url("/assets/cases-review-room-v12.webp") center / cover no-repeat;
}

.route-cases .section--cases-demo .demo-flow article:nth-child(2) {
  transform: translateY(38px);
  background-position: 28% center;
}

.route-cases .section--cases-demo .demo-flow article:nth-child(3) {
  background-position: 67% center;
}

.route-cases .section--cases-demo .demo-flow article:nth-child(4) {
  transform: translateY(-28px);
  background-position: 84% center;
}

.route-cases .section--cases-authorization {
  background: #e1e1dc;
  color: #181b19;
}

.route-cases .section--cases-authorization > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.route-cases .section--cases-authorization .authorization-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
}

.route-cases .section--cases-authorization .authorization-grid p {
  min-height: 112px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(24, 27, 25, 0.24);
}

.route-cases .final-cta {
  background: #090b0a;
  color: #e8e7e0;
}

/* Progress: evidence observatory */

.route-progress,
.route-progress main {
  background: #111513;
}

.route-progress .hero--progress::before {
  background:
    radial-gradient(circle at 72% 46%, rgba(194, 79, 49, 0.1), transparent 18%),
    linear-gradient(90deg, rgba(8, 11, 10, 0.99) 0 42%, rgba(8, 11, 10, 0.54) 67%, rgba(8, 11, 10, 0.14));
}

.route-progress .hero--progress .concept-figure img {
  object-position: 72% center;
  filter: saturate(0.2) contrast(1.18) brightness(0.54);
}

.route-progress .hero--progress .hero__copy {
  align-self: center;
  width: min(670px, 49vw);
}

.route-progress .section {
  color: #eceae3;
  background: #111513;
}

.route-progress .section--progress-status > .shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.66fr) minmax(0, 1.34fr);
  gap: 88px;
}

.route-progress .section--progress-status .status-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.route-progress .section--progress-status .status-item,
.route-progress .section--progress-status .status-item:nth-child(2n) {
  grid-column: span 6;
  min-height: 270px;
  margin: 0;
  padding: 36px;
  border: 1px solid rgba(236, 234, 227, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.route-progress .section--progress-status .status-item:nth-child(2),
.route-progress .section--progress-status .status-item:nth-child(5) {
  transform: translateY(44px);
}

.route-progress .section--progress-status .status-item:nth-child(3) {
  grid-column: span 8;
}

.route-progress .section--progress-status .status-item:nth-child(4) {
  grid-column: span 4;
}

.route-progress .section--progress-method {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(9, 12, 11, 0.97) 0 52%, rgba(9, 12, 11, 0.56)),
    url("/assets/verification-notes.jpg") 82% center / cover no-repeat;
}

.route-progress .section--progress-method > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 90px;
}

.route-progress .section--progress-method .status-definition-grid {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 18px;
  padding: 44px;
  background: rgba(9, 12, 11, 0.78);
  backdrop-filter: blur(10px);
}

.route-progress .section--progress-method .status-definition-grid article,
.route-progress .section--progress-method .status-definition-grid article:nth-child(2n) {
  width: calc(50% - 9px);
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(236, 234, 227, 0.14);
  background: transparent;
}

.route-progress .section--progress-gates {
  background: #dfe0db;
  color: #171a18;
}

.route-progress .section--progress-gates > .shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: 90px;
}

.route-progress .section--progress-gates .gate-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 20px;
}

.route-progress .section--progress-gates .gate-grid p {
  min-height: 160px;
  padding: 28px;
  border: 1px solid rgba(23, 26, 24, 0.22);
}

.route-progress .section--progress-gates .gate-grid p:nth-child(4) {
  grid-column: span 2;
}

.route-progress .final-cta {
  background: #111513;
  color: #eceae3;
}

/* Qualifications: verification archive, not a certificate wall */

.route-qualifications .hero--qualifications {
  min-height: 82dvh;
  color: #efede6;
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.98) 0 44%, rgba(8, 11, 10, 0.54) 66%, rgba(8, 11, 10, 0.18)),
    url("/assets/verification-notes.jpg") 76% center / cover no-repeat;
}

.route-qualifications .hero--qualifications .hero__copy {
  max-width: 680px;
}

.route-qualifications .hero--qualifications h1 {
  max-width: 8ch;
  font-size: clamp(54px, 6vw, 88px);
}

.route-qualifications .hero--qualifications .hero__intro {
  color: rgba(239, 237, 230, 0.76);
}

.route-qualifications .hero--qualifications .button--secondary {
  border-color: rgba(239, 237, 230, 0.46);
  color: #efede6;
}

.route-qualifications .section--qualifications-register {
  background: #e2e2dd;
  color: #171a18;
}

.route-qualifications .section--qualifications-register > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 90px;
}

.route-qualifications .section--qualifications-register .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.route-qualifications .section--qualifications-register .qualification-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 24px;
}

.route-qualifications .section--qualifications-register .qualification-list article {
  grid-column: span 6;
  min-height: 280px;
  padding: 32px 0 32px 28px;
  border: 0;
  border-left: 2px solid rgba(23, 26, 24, 0.24);
  background: transparent;
}

.route-qualifications .section--qualifications-register .qualification-list article:nth-child(3),
.route-qualifications .section--qualifications-register .qualification-list article:nth-child(6) {
  grid-column: span 8;
  margin: 0 0 0 auto;
}

.route-qualifications .section--qualifications-boundary {
  min-height: 660px;
  color: #eeeae2;
  background:
    radial-gradient(ellipse at 72% 50%, transparent 0 13%, rgba(194, 79, 49, 0.2) 13.2% 13.45%, transparent 13.7% 22%, rgba(238, 234, 226, 0.12) 22.2% 22.45%, transparent 22.7%),
    #141816;
}

.route-qualifications .section--qualifications-boundary > .shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: center;
}

.route-qualifications .section--qualifications-boundary .plain-callout {
  max-width: 650px;
  margin: 0 0 0 auto;
  padding: 46px;
  border: 1px solid rgba(238, 234, 226, 0.18);
  background: rgba(20, 24, 22, 0.7);
}

.route-qualifications .section--qualifications-check {
  background: #ecebe6;
  color: #171a18;
}

.route-qualifications .section--qualifications-check > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
}

.route-qualifications .section--qualifications-check .number-list--wide {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 22px;
}

.route-qualifications .section--qualifications-check .number-list--wide li {
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(23, 26, 24, 0.2);
}

.route-qualifications .section--qualifications-check .number-list--wide li:nth-child(4) {
  grid-column: span 2;
}

.route-qualifications .final-cta {
  background: #141816;
  color: #eeeae2;
}

/* Contact: project briefing workspace */

.route-contact .hero--contact {
  min-height: 78dvh;
  color: #efede6;
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.96) 0 44%, rgba(8, 11, 10, 0.48) 68%, rgba(8, 11, 10, 0.16)),
    url("/assets/quote-work-session.webp") 72% center / cover no-repeat;
}

.route-contact .hero--contact .hero__copy {
  max-width: 690px;
}

.route-contact .hero--contact h1 {
  max-width: 8ch;
  font-size: clamp(54px, 6vw, 88px);
}

.route-contact .hero--contact .hero__intro {
  color: rgba(239, 237, 230, 0.78);
}

.route-contact .hero--contact .button--secondary {
  border-color: rgba(239, 237, 230, 0.48);
  color: #efede6;
}

.route-contact .section--contact-prepare {
  background: #d9dcda;
  color: #171a18;
}

.route-contact .section--contact-prepare > .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
}

.route-contact .briefing-prep {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.route-contact .briefing-prep > div {
  padding: 38px;
  border: 1px solid rgba(23, 26, 24, 0.2);
}

.route-contact .briefing-prep > div:last-child {
  color: #eeeae2;
  background: #171b19;
}

.route-contact .briefing-prep ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.route-contact .briefing-prep li {
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
}

.route-contact .section--contact-form {
  padding-top: 130px;
  background: #ecebe6;
  color: #171a18;
}

.route-contact .section--contact-form > .shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: 70px;
  align-items: start;
}

.route-contact .section--contact-form .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.route-contact .section--contact-form .form-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 0;
}

.route-contact .section--contact-form .request-form {
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(23, 26, 24, 0.18);
  background: #f5f4ef;
  box-shadow: 0 34px 100px rgba(25, 30, 27, 0.09);
}

.route-contact .section--contact-form .form-context,
.route-contact .section--contact-form .summary-panel {
  min-height: 100%;
  padding: 48px 38px;
  border: 0;
  border-left: 1px solid rgba(238, 234, 226, 0.18);
  background: #171b19;
  color: #eeeae2;
}

.route-contact .section--contact-form input,
.route-contact .section--contact-form select,
.route-contact .section--contact-form textarea {
  border-radius: 0;
  background: transparent;
}

.route-contact .section--contact-channel {
  background: #171b19;
  color: #eeeae2;
}

.route-contact .section--contact-channel > .shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.route-contact .section--contact-channel .contact-blocked {
  max-width: 680px;
  margin: 0 0 0 auto;
  padding: 46px;
  border: 1px solid rgba(238, 234, 226, 0.18);
}

/* Legal reader families */

.page-legal .legal-reader-nav {
  position: absolute;
  z-index: 20;
  top: var(--header-height);
  right: 0;
  left: 0;
  height: 46px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter: blur(16px);
}

.page-legal .legal-reader-nav .shell {
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1312px);
  height: 100%;
  gap: clamp(18px, 2.1vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
}

.page-legal .legal-reader-nav .shell::-webkit-scrollbar {
  display: none;
}

.page-legal .legal-reader-nav a {
  position: relative;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.page-legal .legal-reader-nav a[aria-current="page"] {
  color: var(--ink);
}

.page-legal .legal-reader-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.page-legal .hero--legal {
  min-height: 62dvh;
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: 86px;
}

.page-legal .hero--legal h1 {
  max-width: 11ch;
  font-size: clamp(48px, 6vw, 84px);
}

.page-legal .section--legal > .shell {
  width: min(100% - 96px, 1180px);
}

.page-legal .section--legal .section-heading ~ * {
  width: min(100%, 900px);
  margin-left: auto;
}

.page-legal .disclosure {
  border-radius: 0;
}

/* Privacy: cool data-custody reader */

.route-privacy .hero--legal {
  color: #172022;
  background:
    radial-gradient(circle at 78% 38%, rgba(43, 116, 130, 0.12), transparent 22%),
    linear-gradient(135deg, #e9f0f0, #d9e3e4);
}

.route-privacy .hero--legal .hero__intro {
  color: #4e5c5e;
}

.route-privacy .hero--legal .button--secondary {
  border-color: rgba(23, 32, 34, 0.42);
  color: #172022;
}

.route-privacy .section--privacy-data {
  background: #edf1f0;
  color: #172022;
}

.route-privacy .section--privacy-data > .shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1.54fr);
  gap: 76px;
}

.route-privacy .section--privacy-data .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 92px);
}

.route-privacy .section--privacy-data .policy-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.route-privacy .section--privacy-data .policy-grid article,
.route-privacy .section--privacy-data .policy-grid article:nth-child(2n) {
  min-height: 230px;
  padding: 34px;
  transform: none;
  border: 1px solid rgba(23, 32, 34, 0.17);
  background: rgba(255, 255, 255, 0.42);
}

.route-privacy .section--privacy-data .policy-grid article:first-child {
  grid-column: span 2;
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 82% 50%, rgba(43, 116, 130, 0.17), transparent 28%);
}

.route-privacy .section--privacy-fields {
  background: #d7e1e1;
  color: #172022;
}

.route-privacy .section--privacy-fields .grouped-list {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 22px;
}

.route-privacy .section--privacy-fields .grouped-list > div {
  min-height: 260px;
  padding: 36px;
  border: 1px solid rgba(23, 32, 34, 0.18);
}

.route-privacy .section--privacy-rights {
  background: #1a2527;
  color: #edf1f0;
}

.route-privacy .section--privacy-rights .contact-blocked {
  padding: 42px;
  border: 1px solid rgba(237, 241, 240, 0.18);
}

.route-privacy .section--privacy-updates {
  background: #edf1f0;
  color: #172022;
}

/* Terms: contract choreography */

.route-terms .hero--legal {
  display: flex;
  min-height: 78dvh;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + 112px);
  padding-bottom: 92px;
  color: #181a18;
  background:
    radial-gradient(circle at 78% 22%, rgba(194, 79, 49, 0.1), transparent 22%),
    linear-gradient(135deg, #171a18, #252824 64%, #111411);
}

.route-terms .hero--legal::after {
  display: none;
}

.route-terms .hero--legal .hero__copy {
  position: relative;
  width: min(980px, 78vw);
  max-width: none;
  margin-top: 22px;
  padding: clamp(48px, 6vw, 86px) clamp(40px, 6.5vw, 94px);
  overflow: hidden;
  border: 1px solid rgba(35, 31, 25, 0.12);
  border-radius: 3px 34px 3px 3px;
  background:
    linear-gradient(90deg, rgba(108, 94, 72, 0.055) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(108, 94, 72, 0.035) 1px, transparent 1px) 0 0 / 32px 32px,
    #efebe2;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.route-terms .hero--legal .hero__copy::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  background: linear-gradient(225deg, #cfc7b9 0 49%, #f8f4ec 50% 53%, transparent 54%);
  filter: drop-shadow(-10px 12px 12px rgba(33, 29, 23, 0.14));
  content: "";
}

.route-terms .hero--legal .hero__copy::after {
  position: absolute;
  right: clamp(34px, 6vw, 88px);
  bottom: clamp(34px, 5vw, 72px);
  width: clamp(90px, 11vw, 150px);
  height: 1px;
  background: #c24f31;
  content: "";
}

.route-terms .hero--legal h1 {
  max-width: 10ch;
  font-family: var(--font-display);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.route-terms .hero--legal .hero__intro {
  color: #5b5c57;
}

.route-terms .hero--legal .button--secondary {
  border-color: rgba(24, 26, 24, 0.42);
  color: #181a18;
}

.route-terms .section--terms-process {
  background: #ece9e1;
  color: #181a18;
}

.route-terms .section--terms-process .number-list--wide {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.route-terms .section--terms-process .number-list--wide li {
  grid-column: span 5;
  min-height: 210px;
  padding: 34px 26px;
  border: 1px solid rgba(24, 26, 24, 0.2);
}

.route-terms .section--terms-process .number-list--wide li:nth-child(2),
.route-terms .section--terms-process .number-list--wide li:nth-child(3) {
  grid-column: span 7;
}

:root[data-theme="dark"] .route-privacy .hero--legal {
  color: #eef1ef;
  background:
    radial-gradient(circle at 78% 38%, rgba(101, 186, 202, 0.12), transparent 22%),
    linear-gradient(135deg, #111918, #202a2b);
}

:root[data-theme="dark"] .route-privacy .hero--legal .hero__intro {
  color: rgba(238, 241, 239, 0.74);
}

:root[data-theme="dark"] .route-privacy .hero--legal .button--secondary {
  border-color: rgba(238, 241, 239, 0.46);
  color: #eef1ef;
}

:root[data-theme="dark"] .route-terms .hero--legal {
  background:
    radial-gradient(circle at 78% 22%, rgba(194, 79, 49, 0.1), transparent 22%),
    linear-gradient(135deg, #171a18, #252824 64%, #111411);
}

.route-terms .section--terms-responsibility {
  background: #d7d6d0;
  color: #181a18;
}

.route-terms .section--terms-responsibility .responsibility-grid {
  gap: 0;
  border: 1px solid rgba(24, 26, 24, 0.22);
}

.route-terms .section--terms-responsibility .responsibility-grid article {
  min-height: 480px;
  padding: 54px;
  border: 0;
}

.route-terms .section--terms-responsibility .responsibility-grid article:first-child {
  color: #ece9e1;
  background: #1b1e1c;
}

.route-terms .section--terms-boundary {
  background: #252926;
  color: #ece9e1;
}

.route-terms .section--terms-boundary .boundary-notes--three {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 20px;
}

.route-terms .section--terms-boundary .boundary-notes--three p {
  min-height: 190px;
  padding: 34px;
  border: 1px solid rgba(236, 233, 225, 0.17);
}

.route-terms .section--terms-acceptance {
  background: #ece9e1;
  color: #181a18;
}

.route-terms .section--terms-review {
  background: #d7d6d0;
  color: #181a18;
}

/* Refunds: lifecycle and recovery decisions */

.route-refunds .hero--legal {
  min-height: 76dvh;
  color: #f0eee8;
  background:
    linear-gradient(90deg, rgba(20, 25, 23, 0.97) 0 45%, rgba(20, 25, 23, 0.48) 70%, rgba(20, 25, 23, 0.14)),
    url("/assets/paper-stone-light-v12.webp") 72% center / cover no-repeat;
}

.route-refunds .section--refund-principles {
  background: #e8e5dd;
  color: #1c1e1c;
}

.route-refunds .section--refund-principles .refund-timeline {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1fr 0.9fr;
  gap: 18px;
}

.route-refunds .section--refund-principles .refund-timeline article,
.route-refunds .section--refund-principles .refund-timeline article:nth-child(2n) {
  min-height: 290px;
  padding: 34px;
  border: 1px solid rgba(28, 30, 28, 0.2);
  background: transparent;
}

.route-refunds .section--refund-principles .refund-timeline article:nth-child(2) {
  transform: translateY(48px);
  background: #c9b4a5;
}

.route-refunds .section--refund-request {
  min-height: 680px;
  color: #eeeae2;
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.98) 0 55%, rgba(17, 21, 19, 0.62)),
    url("/assets/quote-work-session.webp") 80% center / cover no-repeat;
}

.route-refunds .section--refund-request .grouped-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.route-refunds .section--refund-request .grouped-list > div {
  min-height: 230px;
  padding: 34px;
  border: 1px solid rgba(238, 234, 226, 0.18);
  background: rgba(17, 21, 19, 0.68);
}

.route-refunds .section--refund-channel {
  background: #d4cec5;
  color: #1c1e1c;
}

/* Intellectual property: provenance and ownership map */

.route-ip,
.route-ip main {
  background: #0d100f;
}

.route-ip .hero--legal {
  min-height: 80dvh;
  color: #efede6;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.98) 0 42%, rgba(7, 9, 8, 0.48) 68%, rgba(7, 9, 8, 0.16)),
    url("/assets/cases-review-room-v12.webp") 76% center / cover no-repeat;
}

.route-ip .section--ip-boundary {
  color: #ebe9e2;
  background:
    radial-gradient(ellipse at 50% 80%, transparent 0 15%, rgba(194, 79, 49, 0.16) 15.2% 15.4%, transparent 15.7% 26%, rgba(235, 233, 226, 0.09) 26.2% 26.4%, transparent 26.7%),
    #111513;
}

.route-ip .section--ip-boundary .policy-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1.15fr;
  gap: 0;
  border-top: 1px solid rgba(235, 233, 226, 0.18);
}

.route-ip .section--ip-boundary .policy-grid article,
.route-ip .section--ip-boundary .policy-grid article:first-child,
.route-ip .section--ip-boundary .policy-grid article:nth-child(2n) {
  min-height: 360px;
  padding: 42px 30px;
  transform: none;
  border: 0;
  border-right: 1px solid rgba(235, 233, 226, 0.16);
  background: transparent;
}

.route-ip .section--ip-software {
  min-height: 650px;
  color: #ebe9e2;
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.98) 0 55%, rgba(10, 13, 12, 0.44)),
    url("/assets/quotation-workflow.jpg") 82% center / cover no-repeat;
}

.route-ip .section--ip-software .plain-callout {
  max-width: 700px;
  margin-left: auto;
  padding: 48px;
  border: 1px solid rgba(235, 233, 226, 0.17);
  background: rgba(10, 13, 12, 0.74);
}

.route-ip .section--ip-notice {
  color: #ebe9e2;
  background: #171b19;
}

.route-ip .section--ip-notice .contact-blocked {
  max-width: 720px;
  margin-left: auto;
  padding: 46px;
  border: 1px solid rgba(235, 233, 226, 0.17);
}

/* V14 responsive collapse */

@media (max-width: 980px) {
  .route-product .section--product-fit > .shell,
  .route-product .section--product-delivery > .shell,
  .route-product .section--product-pricing > .shell,
  .route-services .section--service-capabilities > .shell,
  .route-services .section--service-boundary > .shell,
  .route-services .section--service-pricing > .shell,
  .route-cases .section--cases-status > .shell,
  .route-cases .section--cases-authorization > .shell,
  .route-progress .section--progress-status > .shell,
  .route-progress .section--progress-method > .shell,
  .route-progress .section--progress-gates > .shell,
  .route-qualifications .section--qualifications-register > .shell,
  .route-qualifications .section--qualifications-boundary > .shell,
  .route-qualifications .section--qualifications-check > .shell,
  .route-contact .section--contact-prepare > .shell,
  .route-contact .section--contact-form > .shell,
  .route-contact .section--contact-channel > .shell,
  .route-privacy .section--privacy-data > .shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .route-product .section--product-fit .section-heading,
  .route-qualifications .section--qualifications-register .section-heading,
  .route-contact .section--contact-form .section-heading,
  .route-privacy .section--privacy-data .section-heading {
    position: static;
  }

  .route-cases .section--cases-demo .demo-flow {
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    padding-bottom: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .route-cases .section--cases-demo .demo-flow article {
    scroll-snap-align: start;
  }

  .route-services .section--service-record .record-band {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .route-contact .section--contact-form .form-context,
  .route-contact .section--contact-form .summary-panel {
    border-top: 1px solid rgba(238, 234, 226, 0.18);
    border-left: 0;
  }

  .page-legal .section--legal > .shell {
    width: min(100% - 64px, 1000px);
  }
}

@media (max-width: 720px) {
  .page-legal .legal-reader-nav {
    height: 42px;
  }

  .page-legal .legal-reader-nav .shell {
    width: calc(100% - 40px);
    gap: 22px;
  }

  .page-legal .legal-reader-nav a[aria-current="page"]::after {
    bottom: -13px;
  }

  .route-terms .hero--legal {
    min-height: 86dvh;
    padding: calc(var(--header-height) + 82px) 20px 48px;
  }

  .route-terms .hero--legal .hero__copy {
    width: 100%;
    margin-top: 0;
    padding: 48px 24px 54px;
    border-radius: 2px 22px 2px 2px;
  }

  .route-terms .hero--legal .hero__copy::before {
    width: 62px;
    height: 62px;
  }

  .route-terms .hero--legal .hero__copy::after {
    right: 24px;
    bottom: 24px;
    width: 76px;
  }

  body:not(.page-home) .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(40px, 12vw, 56px);
  }

  .route-product .hero--product,
  .route-services .hero--services,
  .route-cases .hero--cases,
  .route-progress .hero--progress,
  .route-qualifications .hero--qualifications,
  .route-contact .hero--contact,
  .route-refunds .hero--legal,
  .route-ip .hero--legal {
    min-height: 86dvh;
    padding: calc(var(--header-height) + 64px) 20px 64px;
  }

  .route-product .hero--product .hero__copy,
  .route-services .hero--services .hero__copy,
  .route-cases .hero--cases .hero__copy,
  .route-progress .hero--progress .hero__copy {
    align-self: end;
    width: 100%;
    padding: 0;
  }

  .route-product .hero--product::before,
  .route-services .hero--services::before,
  .route-progress .hero--progress::before {
    background: linear-gradient(to top, rgba(6, 9, 8, 0.99) 0 44%, rgba(6, 9, 8, 0.44) 74%, rgba(6, 9, 8, 0.16));
  }

  .route-cases .hero--cases .hero__media {
    inset: 12vh 20px 39vh;
  }

  .route-cases .hero--cases::before {
    background: linear-gradient(to top, rgba(5, 7, 6, 0.99) 0 46%, rgba(5, 7, 6, 0.4) 72%, rgba(5, 7, 6, 0.16));
  }

  .route-product .section--product-fit .fit-grid,
  .route-services .section--service-capabilities .capability-grid,
  .route-cases .section--cases-status .case-status-grid,
  .route-progress .section--progress-status .status-list,
  .route-qualifications .section--qualifications-register .qualification-list {
    grid-template-columns: 1fr;
  }

  .route-product .section--product-fit .fit-grid article,
  .route-product .section--product-fit .fit-grid article:nth-child(n),
  .route-services .section--service-capabilities .capability-grid article,
  .route-services .section--service-capabilities .capability-grid article:nth-child(n),
  .route-cases .section--cases-status .case-status-grid article,
  .route-cases .section--cases-status .case-status-grid article:nth-child(n),
  .route-progress .section--progress-status .status-item,
  .route-progress .section--progress-status .status-item:nth-child(n),
  .route-qualifications .section--qualifications-register .qualification-list article,
  .route-qualifications .section--qualifications-register .qualification-list article:nth-child(n) {
    grid-column: 1;
    margin: 0;
    transform: none;
  }

  .route-product .section--product-delivery,
  .route-services .section--service-boundary,
  .route-progress .section--progress-method,
  .route-refunds .section--refund-request,
  .route-ip .section--ip-software {
    min-height: auto;
    background-position: center;
  }

  .route-product .section--product-delivery .delivery-main,
  .route-product .section--product-delivery .not-included,
  .route-services .section--service-boundary .boundary-layout,
  .route-progress .section--progress-method .status-definition-grid {
    padding: 28px 22px;
  }

  .route-services .section--service-capabilities .capability-grid article:nth-child(n) {
    min-height: 190px;
  }

  .route-services .section--service-record .record-band {
    grid-template-columns: 1fr 1fr;
  }

  .route-cases .section--cases-authorization .authorization-grid,
  .route-progress .section--progress-gates .gate-grid,
  .route-qualifications .section--qualifications-check .number-list--wide,
  .route-contact .briefing-prep,
  .route-privacy .section--privacy-data .policy-grid,
  .route-privacy .section--privacy-fields .grouped-list,
  .route-terms .section--terms-process .number-list--wide,
  .route-terms .section--terms-boundary .boundary-notes--three,
  .route-refunds .section--refund-principles .refund-timeline,
  .route-refunds .section--refund-request .grouped-list,
  .route-ip .section--ip-boundary .policy-grid {
    grid-template-columns: 1fr;
  }

  .route-progress .section--progress-gates .gate-grid p:nth-child(n),
  .route-qualifications .section--qualifications-check .number-list--wide li:nth-child(n),
  .route-privacy .section--privacy-data .policy-grid article:first-child {
    grid-column: 1;
  }

  .route-progress .section--progress-method .status-definition-grid article,
  .route-progress .section--progress-method .status-definition-grid article:nth-child(2n) {
    width: 100%;
  }

  .route-terms .section--terms-responsibility .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .route-terms .section--terms-responsibility .responsibility-grid article {
    min-height: auto;
    padding: 36px 24px;
  }

  .route-refunds .section--refund-principles .refund-timeline article:nth-child(2) {
    transform: none;
  }

  .route-ip .section--ip-boundary .policy-grid article,
  .route-ip .section--ip-boundary .policy-grid article:first-child,
  .route-ip .section--ip-boundary .policy-grid article:nth-child(2n) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(235, 233, 226, 0.16);
  }

  .page-legal .hero--legal {
    min-height: 58dvh;
    padding: calc(var(--header-height) + 96px) 20px 56px;
  }

  .page-legal .section--legal > .shell {
    width: calc(100% - 40px);
  }
}

@media screen {
  body:not(.page-home) .page-hero .hero__copy {
    animation: v14-hero-enter 900ms var(--ease) both;
  }

  body:not(.page-home) .page-hero .hero__media {
    animation: v14-media-enter 1200ms var(--ease) both;
  }

  body:not(.page-home) .section > .shell > :not(.section-heading) {
    animation: v14-section-enter linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
  }
}

@keyframes v14-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes v14-media-enter {
  from { opacity: 0.5; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes v14-section-enter {
  from { opacity: 0.35; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (update: none) {
  body:not(.page-home) .page-hero .hero__copy,
  body:not(.page-home) .page-hero .hero__media,
  body:not(.page-home) .section > .shell > :not(.section-heading) {
    animation: none;
    transform: none;
  }
}

/* Final cascade seal: these route heroes must override the retired V13 grammar */

.route-product .hero--product {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  color: #efede6;
  background: #0d110f;
}

.route-product .hero--product::before,
.route-progress .hero--progress::before,
.route-services .hero--services::before,
.route-cases .hero--cases::before {
  position: absolute;
  display: block;
  content: "";
}

.route-product .hero--product .hero__media,
.route-progress .hero--progress .hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-product .hero--product .concept-figure,
.route-product .hero--product .concept-figure__media,
.route-progress .hero--progress .concept-figure,
.route-progress .hero--progress .concept-figure__media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.route-product .hero--product .hero__copy,
.route-progress .hero--progress .hero__copy {
  position: relative;
  z-index: 3;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.34);
}

.route-product .hero--product .button--secondary,
.route-progress .hero--progress .button--secondary {
  border-color: rgba(239, 237, 230, 0.5);
  color: #efede6;
}

.route-product .hero--product .concept-figure figcaption,
.route-progress .hero--progress .concept-figure figcaption {
  position: absolute;
  z-index: 4;
  right: max(64px, calc((100vw - 1440px) / 2));
  bottom: 28px;
  width: min(410px, 38vw);
  color: rgba(255, 255, 255, 0.64);
  text-align: right;
}

/* Retired list layouts used large inner columns. V14 cards own their geometry. */

.route-progress .section--progress-status .status-item,
.route-progress .section--progress-status .status-item:nth-child(2n) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
  gap: 34px;
}

.route-progress .section--progress-status .status-item > div {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.route-progress .section--progress-status .status-item h3,
.route-progress .section--progress-status .status-item p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.route-progress .section--progress-status .status-item p {
  max-width: 34rem;
}

.route-qualifications .section--qualifications-register .qualification-list article,
.route-qualifications .section--qualifications-register .qualification-list article:nth-child(3),
.route-qualifications .section--qualifications-register .qualification-list article:nth-child(6) {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 28px;
}

.route-qualifications .section--qualifications-register .qualification-list article > div {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.route-qualifications .section--qualifications-register .qualification-list article p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.route-progress .hero--progress {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  color: #efede6;
  background: #101412;
}

.route-qualifications .hero--qualifications,
.route-contact .hero--contact {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(220px, 1fr);
  align-items: center;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 72px;
}

.route-qualifications .hero--qualifications .hero__copy,
.route-contact .hero--contact .hero__copy {
  display: block;
}

@media (max-width: 720px) {
  .route-product .hero--product,
  .route-progress .hero--progress,
  .route-qualifications .hero--qualifications,
  .route-contact .hero--contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-product .hero--product .concept-figure figcaption,
  .route-progress .hero--progress .concept-figure figcaption {
    right: 20px;
    bottom: 18px;
    width: calc(100% - 40px);
  }
}


/* source: pages-art-direction.css */
/* V15 approved event-driven multi-page language.
   This layer keeps V14 intact for comparison and replaces its repeated page grammar. */

:root {
  --v15-paper: #e8e8e2;
  --v15-paper-bright: #f3f1ea;
  --v15-ink: #171a17;
  --v15-night: #0b100e;
  --v15-moss: #203129;
  --v15-rust: #c64a29;
  --v15-sand: #b9ab91;
  --v15-fog: #bdc6c3;
  --v15-dust: #777a72;
  --v15-rule: rgba(23, 26, 23, 0.22);
  --v15-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v15-ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --v15-section-space: clamp(7rem, 12vw, 12rem);
}

html {
  scroll-behavior: auto;
}

body:not(.page-home) {
  background: var(--v15-paper);
}

body:not(.page-home) main {
  overflow: clip;
  background: var(--v15-paper);
}

body:not(.page-home) .section {
  padding-block: var(--v15-section-space);
}

body:not(.page-home) .section-heading {
  position: static;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

body:not(.page-home) .form-context,
body:not(.page-home) .summary-panel {
  position: static;
}

body:not(.page-home) .section-heading h2 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5.4vw, 5.6rem);
  font-weight: 520;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

body:not(.page-home) .section-lead {
  max-width: 38rem;
  color: currentColor;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.8;
  opacity: 0.64;
}

body:not(.page-home) .page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  isolation: isolate;
}

body:not(.page-home) .page-hero::after {
  pointer-events: none;
}

body:not(.page-home) .page-hero::before {
  pointer-events: none;
}

body:not(.page-home) .section > .shell > :not(.section-heading),
body:not(.page-home) .page-hero .hero__copy,
body:not(.page-home) .page-hero .hero__media,
body:not(.page-home) .friction-list > div,
body:not(.page-home) .fit-grid article,
body:not(.page-home) .capability-grid article,
body:not(.page-home) .demo-flow article,
body:not(.page-home) .status-item {
  animation: none !important;
}

body:not(.page-home) .page-hero .hero__copy {
  z-index: 5;
}

body:not(.page-home) .page-hero h1 {
  max-width: 12ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.6vw, 8.2rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

body:not(.page-home) .page-hero .eyebrow {
  margin-bottom: clamp(1.6rem, 3vw, 3rem);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}

body:not(.page-home) .hero__intro {
  max-width: 35rem;
  color: currentColor;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  opacity: 0.68;
}

.hero__signature {
  position: absolute;
  z-index: 4;
  display: grid;
  pointer-events: none;
}

.hero__signature i {
  display: block;
  background: currentColor;
  opacity: 0.25;
  transform-origin: left center;
}

.hero__media-focus {
  position: absolute;
  z-index: 7;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  gap: 0.9rem;
}

.hero__media-focus i {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
}

.hero__media-focus i::before,
.hero__media-focus i::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.55rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.hero__media-focus i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.hero__media-focus[aria-pressed="true"] i::after {
  opacity: 0;
}

[data-motion-control] {
  --press-x: 0;
  --press-y: 0;
}

[data-motion-control].is-pressed {
  transform: translate(var(--press-x), calc(var(--press-y) + 2px)) scale(0.985) !important;
}

body:not(.page-home) .button {
  position: relative;
  min-height: 52px;
  overflow: hidden;
  transition: color 240ms ease, border-color 240ms ease, transform 360ms var(--v15-ease-out);
}

body:not(.page-home) .button::before {
  position: absolute;
  inset: 0;
  background: currentColor;
  content: "";
  opacity: 0.08;
  transform: translateY(104%);
  transition: transform 440ms var(--v15-ease-out);
}

body:not(.page-home) .button:hover::before,
body:not(.page-home) .button:focus-visible::before {
  transform: translateY(0);
}

.hero__media {
  transition: transform 780ms var(--v15-ease-out), opacity 520ms ease;
}

.page-hero.is-media-focused .hero__media {
  transform: scale(1.025);
}

.page-hero.is-media-focused .hero__copy {
  opacity: 0.32;
  transform: translateX(-0.75rem);
}

.page-hero .hero__copy {
  transition: opacity 520ms ease, transform 680ms var(--v15-ease-out);
}

.page-hero .concept-figure,
.page-hero .concept-figure__media {
  height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
}

.page-hero .concept-figure figcaption {
  position: absolute;
  z-index: 5;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: clamp(4.7rem, 7vw, 6.5rem);
  width: min(30rem, 40vw);
  color: rgba(255, 255, 255, 0.54);
  text-align: right;
}

.page-hero .concept-figure__media::after {
  background: linear-gradient(180deg, rgba(6, 9, 8, 0.04), rgba(6, 9, 8, 0.52));
}

.disclosure > div {
  opacity: 0.72;
  transform: translateY(-0.5rem);
  transition: opacity 320ms ease, transform 520ms var(--v15-ease-out);
}

.disclosure.is-open > div {
  opacity: 1;
  transform: none;
}

.disclosure summary.is-pressed {
  transform: translateY(2px);
}

/* Product: a quotation path converging into one usable result. */
.route-product {
  --route-accent: #d25430;
}

.route-product .hero--product {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 5rem) clamp(3rem, 6.5vw, 7.5rem) clamp(4rem, 7vw, 7rem);
  color: #f0eee6;
  background: var(--v15-night);
}

.route-product .hero--product .hero__media {
  position: absolute;
  inset: 0;
}

.route-product .hero--product .concept-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.62) contrast(1.06) brightness(0.86);
}

.route-product .hero--product::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.99) 0%, rgba(8, 12, 10, 0.94) 30%, rgba(8, 12, 10, 0.48) 57%, rgba(8, 12, 10, 0.04) 86%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.28), transparent 52%, rgba(5, 8, 7, 0.72));
}

.route-product .hero--product::after {
  z-index: 3;
  right: 7vw;
  bottom: 15%;
  left: auto;
  width: min(31rem, 34vw);
  height: min(16rem, 26vh);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(112deg, transparent 49.7%, rgba(210, 84, 48, 0.68) 50%, transparent 50.3%);
}

.route-product .hero--product .hero__copy {
  align-self: end;
  width: min(50rem, 62vw);
}

.route-product .hero--product h1 {
  max-width: 8.5ch;
}

.route-product .hero__signature--product {
  top: 37%;
  right: 8vw;
  width: min(26rem, 30vw);
  gap: 0.65rem;
}

.route-product .hero__signature--product i {
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.route-product .hero__signature--product i:nth-child(1) { width: 100%; }
.route-product .hero__signature--product i:nth-child(2) { width: 68%; }
.route-product .hero__signature--product i:nth-child(3) { width: 36%; background: var(--route-accent); }

.route-product .section--product-fit {
  background: #ecebe5;
  color: var(--v15-ink);
}

.route-product .section--product-fit > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-product .section--product-fit .section-heading {
  position: static;
  align-self: start;
  padding-top: 1.4rem;
  border-top: 1px solid var(--v15-rule);
}

.route-product .fit-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--v15-rule);
}

.route-product .section--product-fit .fit-grid {
  gap: 1px;
  padding: 0;
}

.route-product .fit-grid article,
.route-product .fit-grid article:nth-child(n) {
  grid-column: span 5;
  min-height: 19rem;
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem);
  border: 0;
  background: #ecebe5;
}

.route-product .fit-grid article:nth-child(2),
.route-product .fit-grid article:nth-child(3) {
  background: #e2e1db;
}

.route-product .fit-grid article h3 {
  margin-bottom: 4rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  font-weight: 520;
}

.route-product .fit-grid article p {
  max-width: 27rem;
  color: #5e625b;
}

.route-product .section--product-delivery {
  min-height: auto;
  color: #efede5;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.98) 0 42%, rgba(8, 12, 10, 0.76) 66%, rgba(8, 12, 10, 0.48)),
    url("/assets/quote-work-session.webp") 72% center / cover no-repeat;
}

.route-product .section--product-delivery > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.route-product .section--product-delivery .delivery-main,
.route-product .section--product-delivery .not-included {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.route-product .section--product-delivery .delivery-main h3,
.route-product .section--product-delivery .not-included h3 {
  margin-bottom: 2rem;
  color: var(--v15-sand);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.route-product .section--product-delivery .number-list li,
.route-product .section--product-delivery .clean-list li {
  border-color: rgba(239, 237, 229, 0.18);
}

.route-product .section--product-pricing {
  color: var(--v15-ink);
  background: #d9d6cc;
}

.route-product .section--product-pricing > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route-product .price-feature,
.route-product .price-list {
  border-color: rgba(23, 26, 23, 0.26);
  background: transparent;
}

.route-product .section--product-boundary {
  color: #eeece4;
  background: #242a25;
}

.route-product .section--product-boundary .plain-callout {
  max-width: 70rem;
  margin-left: auto;
  padding-left: clamp(2rem, 6vw, 6rem);
  border-left: 1px solid rgba(238, 236, 228, 0.35);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.6;
}

.route-product .final-cta {
  background: #0b100e;
  color: #f0eee6;
}

/* Services: a diagnostic bench that reveals one layer at a time. */
.route-services {
  --route-accent: #d0b77f;
  background: #0a0e0d;
}

.route-services .hero--services {
  display: grid;
  grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) clamp(3rem, 6vw, 7rem) 4rem;
  color: #efeee8;
  background: #080c0b;
}

.route-services .hero--services .hero__copy {
  align-self: center;
  width: min(45rem, 52vw);
}

.route-services .hero--services h1 {
  max-width: 7.5ch;
  font-size: clamp(4rem, 7vw, 8rem);
}

.route-services .hero--services .hero__media {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 38%;
}

.route-services .hero--services .concept-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.34) contrast(1.18) brightness(0.65);
}

.route-services .hero--services::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, #080c0b 0%, rgba(8, 12, 11, 0.96) 36%, rgba(8, 12, 11, 0.35) 68%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.4), transparent 58%, rgba(5, 8, 7, 0.72));
}

.route-services .hero--services::after {
  z-index: 3;
  inset: auto 7vw 13% auto;
  width: min(34rem, 38vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 183, 127, 0.85));
}

.route-services .hero__signature--services {
  right: 7vw;
  bottom: 16%;
  grid-template-columns: repeat(3, auto);
  align-items: end;
  gap: 0.55rem;
}

.route-services .hero__signature--services i {
  width: 1px;
  height: 5rem;
  background: rgba(255, 255, 255, 0.44);
}

.route-services .hero__signature--services i:nth-child(2) { height: 8rem; }
.route-services .hero__signature--services i:nth-child(3) { height: 3rem; background: var(--route-accent); }

.route-services .section--service-capabilities {
  color: #edece6;
  background: #111714;
}

.route-services .section--service-capabilities > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route-services .capability-grid {
  display: block;
}

.route-services .capability-grid article,
.route-services .capability-grid article:nth-child(n) {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) minmax(0, 1.6fr);
  min-height: auto;
  padding: clamp(2rem, 4vw, 3.8rem) 0;
  border: 0;
  border-top: 1px solid rgba(237, 236, 230, 0.18);
  background: transparent;
  color: inherit;
  gap: clamp(2rem, 6vw, 6rem);
}

.route-services .capability-grid article:last-child {
  border-bottom: 1px solid rgba(237, 236, 230, 0.18);
}

.route-services .capability-grid h3 {
  margin: 0;
  color: var(--v15-sand);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.route-services .capability-grid p {
  max-width: 42rem;
  margin: 0;
  color: rgba(237, 236, 230, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  opacity: 1;
}

.route-services .section--service-boundary {
  color: #151915;
  background: #d9d5c9;
}

.route-services .section--service-boundary > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.route-services .section--service-boundary .boundary-layout {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.route-services .boundary-statement {
  max-width: 18ch;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1.3;
}

.route-services .boundary-notes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(21, 25, 21, 0.24);
}

.route-services .boundary-notes p {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #d9d5c9;
}

.route-services .section--service-pricing {
  background: #ecebe5;
  color: var(--v15-ink);
}

.route-services .section--service-pricing > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route-services .section--service-record {
  color: #eeece5;
  background: #202a24;
}

.route-services .record-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(238, 236, 229, 0.24);
  border-bottom: 1px solid rgba(238, 236, 229, 0.24);
}

.route-services .record-band span {
  min-height: 10rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(238, 236, 229, 0.16);
  writing-mode: vertical-rl;
}

.route-services .record-band span:last-child {
  border-right: 0;
}

.route-services .final-cta {
  background: #090d0b;
  color: #f0eee6;
}

/* Cases: a viewing room with a deliberately honest empty seat. */
.route-cases,
.route-cases main {
  background: #070a09;
  color: #eeece6;
}

.route-cases .hero--cases {
  display: grid;
  grid-template-columns: minmax(18rem, 0.54fr) minmax(0, 1.46fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) clamp(3rem, 5vw, 6rem) 4rem;
  color: #f0eee8;
  background: #070a09;
}

.route-cases .hero--cases .hero__copy {
  align-self: end;
  width: min(47rem, 58vw);
  padding-bottom: 3rem;
}

.route-cases .hero--cases h1 {
  max-width: 8.5ch;
  font-size: clamp(4rem, 7.3vw, 8rem);
}

.route-cases .hero--cases .hero__media {
  position: absolute;
  z-index: 1;
  inset: 12% 4vw 8% 38%;
}

.route-cases .hero--cases .concept-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.2) contrast(1.12) brightness(0.7);
}

.route-cases .hero--cases::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, #070a09 0 31%, rgba(7, 10, 9, 0.82) 42%, rgba(7, 10, 9, 0.05) 68%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.2), transparent 50%, rgba(7, 10, 9, 0.8));
}

.route-cases .hero--cases::after {
  z-index: 3;
  inset: 16% 7vw auto auto;
  width: min(27rem, 30vw);
  height: min(14rem, 24vh);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.route-cases .hero__signature--cases {
  top: 17%;
  right: 8vw;
  grid-template-columns: repeat(3, 1fr);
  width: min(23rem, 26vw);
  gap: 1rem;
}

.route-cases .hero__signature--cases i {
  height: 2px;
  background: rgba(255, 255, 255, 0.58);
}

.route-cases .hero__signature--cases i:nth-child(2) { background: var(--v15-rust); }

.route-cases .section {
  color: #eeece6;
  background: #0e1311;
}

.route-cases .section--cases-status {
  background: #d7d5cd;
  color: #171a17;
}

.route-cases .section--cases-status > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-cases .case-status-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: stretch;
  gap: 1px;
  background: var(--v15-rule);
}

.route-cases .section--cases-status .case-status-grid {
  gap: 1px;
}

.route-cases .case-status-grid article,
.route-cases .case-status-grid article:nth-child(n) {
  min-height: 18rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 0;
  background: #e8e6df;
  color: #171a17;
}

.route-cases .case-status-grid article p {
  color: #5b6059;
}

.route-cases .case-status-grid article:first-child {
  grid-row: span 2;
  min-height: 36rem;
  background: #c9c7bf;
}

.route-cases .case-status-grid h3 {
  margin-top: 4rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.route-cases .section--cases-demo {
  background: #090d0b;
}

.route-cases .demo-flow {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.15fr 0.85fr;
  gap: 0;
  overflow: visible;
}

.route-cases .demo-flow article,
.route-cases .demo-flow article:nth-child(n) {
  min-height: clamp(24rem, 38vw, 38rem);
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.4rem, 3vw, 3rem);
  border: 0;
  border-left: 1px solid rgba(238, 236, 230, 0.18);
  background: transparent;
}

.route-cases .demo-flow article:nth-child(2),
.route-cases .demo-flow article:nth-child(4) {
  padding-top: clamp(8rem, 14vw, 14rem);
  background: rgba(255, 255, 255, 0.025);
}

.route-cases .demo-flow h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 500;
}

.route-cases .demo-flow p {
  color: rgba(238, 236, 230, 0.62);
}

.route-cases .section--cases-authorization {
  --ink: #eeece6;
  --ink-soft: rgba(238, 236, 230, 0.74);
  --muted: rgba(238, 236, 230, 0.68);
  background: #252b26;
  color: var(--ink);
}

.route-cases .section--cases-authorization > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.route-cases .authorization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.route-cases .authorization-grid p {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(238, 236, 230, 0.2);
  color: var(--ink-soft);
}

.route-cases .final-cta {
  background: #d0cdc4;
  color: #171a17;
}

/* Progress: an evidence terrain, with distance created by proof rather than percentages. */
.route-progress {
  --route-accent: #b5c2bc;
  background: #e7e6df;
}

.route-progress .hero--progress {
  display: grid;
  grid-template-columns: minmax(22rem, 0.76fr) minmax(0, 1.24fr);
  min-height: 100svh;
  padding: calc(var(--header-height) + 4.5rem) clamp(3rem, 6.5vw, 7rem) clamp(4rem, 7vw, 7rem);
  color: #f0eee7;
  background: #0b100e;
}

.route-progress .hero--progress .hero__copy {
  align-self: end;
  width: min(50rem, 58vw);
}

.route-progress .hero--progress h1 {
  max-width: 7.8ch;
}

.route-progress .hero--progress .hero__media {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.route-progress .hero--progress .concept-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 58%;
  filter: saturate(0.15) contrast(1.16) brightness(0.58);
}

.route-progress .hero--progress::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 8, 0.99) 0 32%, rgba(6, 10, 8, 0.64) 56%, rgba(6, 10, 8, 0.12)),
    linear-gradient(180deg, rgba(5, 8, 7, 0.42), transparent 47%, rgba(5, 8, 7, 0.85));
}

.route-progress .hero--progress::after {
  z-index: 3;
  inset: 21% 7vw auto auto;
  width: min(31rem, 36vw);
  height: min(25rem, 46vh);
  background:
    linear-gradient(168deg, transparent 31%, rgba(181, 194, 188, 0.36) 31.2% 31.45%, transparent 31.7%),
    linear-gradient(174deg, transparent 53%, rgba(181, 194, 188, 0.28) 53.2% 53.45%, transparent 53.7%),
    linear-gradient(179deg, transparent 73%, rgba(198, 74, 41, 0.62) 73.2% 73.45%, transparent 73.7%);
}

.route-progress .hero__signature--progress {
  top: 20%;
  right: 8vw;
  width: min(29rem, 34vw);
  height: min(23rem, 40vh);
}

.route-progress .hero__signature--progress i {
  position: absolute;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #e8e7e0;
}

.route-progress .hero__signature--progress i:nth-child(1) { top: 24%; left: 18%; }
.route-progress .hero__signature--progress i:nth-child(2) { top: 48%; left: 58%; }
.route-progress .hero__signature--progress i:nth-child(3) { top: 77%; left: 87%; background: var(--v15-rust); }

.route-progress .section--progress-status {
  color: #171a17;
  background: #e9e8e2;
}

.route-progress .section--progress-status > .shell {
  display: block;
}

.route-progress .section--progress-status .section-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-progress .status-list {
  display: block;
  width: min(100%, 74rem);
  margin-left: auto;
  counter-reset: evidence;
}

.route-progress .status-item,
.route-progress .status-item:nth-child(n) {
  display: grid;
  grid-template-columns: minmax(15rem, 0.66fr) minmax(0, 1.34fr);
  align-items: start;
  min-height: 15rem;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border: 0;
  border-top: 1px solid rgba(23, 26, 23, 0.28);
  background: transparent;
  gap: clamp(3rem, 8vw, 8rem);
  counter-increment: evidence;
}

.route-progress .status-item:last-child {
  border-bottom: 1px solid rgba(23, 26, 23, 0.28);
}

.route-progress .status-item:nth-child(2n) {
  margin-left: clamp(0rem, 6vw, 6rem);
}

.route-progress .status-item > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  justify-content: start;
  gap: 1.25rem;
}

.route-progress .status-item > div::before {
  color: #858980;
  content: counter(evidence, decimal-leading-zero);
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.route-progress .status-item h3 {
  grid-column: 1 / -1;
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 500;
}

.route-progress .status-item p {
  max-width: 44rem;
  margin: 0;
  color: #5a5f58;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.route-progress .section--progress-method {
  color: #efede7;
  background: #121916;
}

.route-progress .section--progress-method > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route-progress .status-definition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(239, 237, 231, 0.24);
  border-bottom: 1px solid rgba(239, 237, 231, 0.24);
}

.route-progress .status-definition-grid article,
.route-progress .status-definition-grid article:nth-child(n) {
  width: auto;
  min-height: 17rem;
  margin: 0;
  padding: 2rem 1.5rem;
  border: 0;
  border-right: 1px solid rgba(239, 237, 231, 0.16);
  background: transparent;
}

.route-progress .status-definition-grid article:last-child {
  border-right: 0;
}

.route-progress .status-definition-grid p {
  margin-top: 4rem;
  color: rgba(239, 237, 231, 0.64);
}

.route-progress .section--progress-gates {
  color: #171a17;
  background: #d7d2c4;
}

.route-progress .section--progress-gates > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-progress .gate-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
}

.route-progress .gate-grid p,
.route-progress .gate-grid p:nth-child(n) {
  grid-column: auto;
  min-height: 8rem;
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(23, 26, 23, 0.28);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.route-progress .gate-grid p:nth-child(2),
.route-progress .gate-grid p:nth-child(5) {
  transform: translateY(3rem);
}

.route-progress .final-cta {
  background: #0b100e;
  color: #f0eee7;
}

/* Qualifications: papers checked under natural light, never a certificate wall. */
.route-qualifications {
  --route-accent: #a13f28;
  color: #181b18;
  background: #e8e5dc;
}

.route-qualifications .site-header--overlay:not(.is-solid),
.route-contact .site-header--overlay:not(.is-solid),
.route-terms .site-header--overlay:not(.is-solid) {
  border-bottom-color: rgba(20, 23, 20, 0.14);
  background: linear-gradient(to bottom, rgba(239, 237, 229, 0.92), rgba(239, 237, 229, 0.32));
  color: #171a17;
}

.route-qualifications .hero--qualifications {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 1.28fr);
  min-height: 76svh;
  padding: calc(var(--header-height) + 7rem) clamp(3rem, 7vw, 8rem) clamp(5rem, 8vw, 8rem);
  color: #181b18;
  background:
    linear-gradient(111deg, transparent 0 55%, rgba(255, 252, 241, 0.86) 55.2% 73%, transparent 73.2%),
    url("/assets/paper-stone-light-v12.webp") center / cover no-repeat,
    #e8e5dc;
}

.route-qualifications .hero--qualifications::before {
  z-index: 1;
  inset: 0 0 0 44%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(154deg, transparent 44%, rgba(23, 26, 23, 0.13) 44.2% 44.4%, transparent 44.6%),
    linear-gradient(171deg, transparent 65%, rgba(161, 63, 40, 0.44) 65.2% 65.4%, transparent 65.6%);
}

.route-qualifications .hero--qualifications::after {
  display: none;
}

.route-qualifications .hero--qualifications .hero__copy {
  align-self: end;
  max-width: 55rem;
}

.route-qualifications .hero--qualifications h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 7.3vw, 8rem);
}

.route-qualifications .hero--qualifications .hero__intro,
.route-contact .hero--contact .hero__intro {
  color: #343a34;
  opacity: 0.78;
}

.route-qualifications .hero--qualifications .button--secondary,
.route-contact .hero--contact .button--secondary {
  border-color: rgba(23, 26, 23, 0.48);
  color: #171a17;
}

.route-qualifications .hero__signature--qualifications {
  top: 24%;
  right: 8vw;
  width: min(30rem, 36vw);
  height: min(21rem, 38vh);
  border-top: 1px solid rgba(23, 26, 23, 0.26);
  border-right: 1px solid rgba(23, 26, 23, 0.26);
}

.route-qualifications .hero__signature--qualifications i {
  position: absolute;
  right: 2rem;
  width: 5rem;
  height: 1px;
}

.route-qualifications .hero__signature--qualifications i:nth-child(1) { top: 2rem; }
.route-qualifications .hero__signature--qualifications i:nth-child(2) { top: 3rem; width: 8rem; }
.route-qualifications .hero__signature--qualifications i:nth-child(3) { bottom: 2rem; background: var(--route-accent); }

.route-qualifications .section--qualifications-register {
  color: #efede6;
  background: #111714;
}

.route-qualifications .section--qualifications-register > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-qualifications .section--qualifications-register .section-heading {
  position: static;
}

.qualification-ledger {
  border-top: 1px solid rgba(239, 237, 230, 0.24);
}

.qualification-group {
  border-bottom: 1px solid rgba(239, 237, 230, 0.24);
}

.qualification-group summary {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto auto;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1.5rem;
  list-style: none;
}

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

.qualification-group summary > span:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.qualification-group summary small {
  color: rgba(239, 237, 230, 0.5);
  letter-spacing: 0.08em;
}

.qualification-group summary::after {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background: var(--v15-rust);
  content: "";
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform 460ms var(--v15-ease-out);
}

.qualification-group[open] summary::after {
  transform: scaleX(1);
}

.qualification-group__records {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
  padding: 0 0 4rem;
}

.qualification-group__records article {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(239, 237, 230, 0.14);
}

.qualification-group__records h3 {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.qualification-group__records p {
  color: rgba(239, 237, 230, 0.62);
}

.route-qualifications .section--qualifications-boundary {
  color: #171a17;
  background: #d7d3c8;
}

.route-qualifications .section--qualifications-boundary > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route-qualifications .section--qualifications-boundary .plain-callout {
  max-width: 56rem;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1.55;
}

.route-qualifications .section--qualifications-check {
  color: #efede6;
  background: #202822;
}

.route-qualifications .section--qualifications-check > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-qualifications .number-list--wide {
  display: block;
  counter-reset: qualify;
}

.route-qualifications .number-list--wide li,
.route-qualifications .number-list--wide li:nth-child(n) {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(239, 237, 230, 0.2);
  color: rgba(239, 237, 230, 0.74);
}

.route-qualifications .final-cta {
  background: #e8e5dc;
  color: #171a17;
}

/* Contact: the landscape resolves into a quiet working conversation. */
.route-contact {
  --route-accent: #c54b2a;
  color: #171a17;
  background: #efede6;
}

.route-contact .hero--contact {
  display: flex;
  min-height: 88svh;
  padding: calc(var(--header-height) + 7rem) clamp(3rem, 7vw, 8rem) clamp(5rem, 8vw, 8rem);
  align-items: flex-end;
  color: #171a17;
  background:
    radial-gradient(ellipse at 74% 28%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(151deg, transparent 0 48%, rgba(38, 65, 50, 0.15) 48.2% 48.5%, transparent 48.7%),
    linear-gradient(164deg, transparent 0 63%, rgba(197, 75, 42, 0.34) 63.2% 63.4%, transparent 63.6%),
    #e9e7df;
}

.route-contact .hero--contact::before {
  z-index: 1;
  top: 17%;
  right: 7vw;
  bottom: 10%;
  left: auto;
  width: min(43rem, 48vw);
  height: auto;
  border: 1px solid rgba(23, 26, 23, 0.14);
  border-radius: 56% 44% 64% 36% / 42% 55% 45% 58%;
  background: transparent;
  transform: rotate(-7deg);
}

.route-contact .hero--contact::after {
  z-index: 1;
  right: 11vw;
  bottom: 17%;
  width: min(34rem, 39vw);
  height: min(20rem, 36vh);
  border: 1px solid rgba(23, 26, 23, 0.1);
  border-radius: 48% 52% 37% 63% / 52% 45% 55% 48%;
  background: transparent;
  transform: rotate(10deg);
}

.route-contact .hero--contact .hero__copy {
  width: min(61rem, 68vw);
  max-width: none;
}

.route-contact .hero--contact h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 8vw, 9rem);
}

.route-contact .hero__signature--contact {
  right: 9vw;
  bottom: 19%;
  width: min(26rem, 30vw);
  gap: 0.75rem;
}

.route-contact .hero__signature--contact i {
  height: 1px;
}

.route-contact .hero__signature--contact i:nth-child(1) { width: 100%; }
.route-contact .hero__signature--contact i:nth-child(2) { width: 52%; margin-left: auto; background: var(--route-accent); }
.route-contact .hero__signature--contact i:nth-child(3) { width: 18%; margin-left: auto; }

.route-contact .section--contact-prepare {
  color: #eeece5;
  background: #111714;
}

.route-contact .section--contact-prepare > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-contact .briefing-prep {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.route-contact .briefing-prep > div,
.route-contact .briefing-prep > div:last-child {
  min-height: 24rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.route-contact .briefing-prep > div:last-child {
  padding-top: 7rem;
}

.route-contact .briefing-prep h3 {
  margin-bottom: 3rem;
  color: var(--v15-sand);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.route-contact .briefing-prep li {
  padding: 1rem 0;
  border-top: 1px solid rgba(238, 236, 229, 0.2);
}

.route-contact .section--contact-form {
  color: #171a17;
  background: #eceae3;
}

.route-contact .section--contact-form > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-contact .section--contact-form .section-heading {
  position: static;
}

.route-contact .form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(19rem, 0.84fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.route-contact .request-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.route-contact .form-context,
.route-contact .summary-panel {
  position: static;
  padding: clamp(2rem, 4vw, 4rem);
  border: 0;
  border-top: 1px solid rgba(23, 26, 23, 0.3);
  background: #d7d3c8;
}

.route-contact .summary-panel {
  color: #eeece5;
  background: #1d2520;
}

.route-contact .form-field {
  margin-bottom: 2.8rem;
}

.route-contact .form-field label {
  display: block;
  margin-bottom: 0.75rem;
  color: #474c46;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.route-contact .form-field input,
.route-contact .form-field select,
.route-contact .form-field textarea {
  min-height: 3.5rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 26, 23, 0.38);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.route-contact .form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.route-contact .form-field input:focus,
.route-contact .form-field select:focus,
.route-contact .form-field textarea:focus {
  border-bottom-color: var(--route-accent);
}

.route-contact .section--contact-channel {
  color: #efede6;
  background: #252c27;
}

.route-contact .section--contact-channel > .shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.route-contact .section--contact-channel .contact-blocked {
  max-width: 50rem;
  margin-left: auto;
  padding: 0 0 0 clamp(2rem, 5vw, 5rem);
  border: 0;
  border-left: 1px solid rgba(239, 237, 230, 0.24);
}

/* Legal readers share type discipline, not a repeated visual template. */
.page-legal .legal-reader-nav {
  border-color: rgba(23, 26, 23, 0.14);
  background: color-mix(in srgb, var(--v15-paper-bright) 93%, transparent);
  backdrop-filter: blur(12px);
}

.page-legal .hero--legal {
  width: 100%;
  max-width: none;
  min-height: 72svh;
  margin: 0;
  padding: calc(var(--header-height) + 8rem) clamp(3rem, 8vw, 9rem) clamp(5rem, 8vw, 8rem);
}

.page-legal .hero--legal .hero__copy {
  align-self: end;
  max-width: 72rem;
}

.page-legal .hero--legal h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.page-legal .section--legal > .shell {
  width: min(calc(100% - 8rem), 78rem);
}

.page-legal .section--legal .section-heading ~ * {
  width: min(100%, 58rem);
  margin-left: auto;
}

.route-privacy {
  --route-accent: #436e72;
}

.route-privacy .hero--legal {
  color: #152020;
  background:
    radial-gradient(ellipse at 76% 33%, rgba(255, 255, 255, 0.88), transparent 25%),
    linear-gradient(145deg, #dce6e4 0 58%, #c8d6d4 58.2% 100%);
}

.route-privacy .hero--legal::before {
  z-index: 1;
  inset: 20% 7vw 12% auto;
  width: min(35rem, 40vw);
  height: auto;
  border: 1px solid rgba(21, 32, 32, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 24%, rgba(21, 32, 32, 0.12) 24.2% 24.4%, transparent 24.6%),
    linear-gradient(90deg, transparent 62%, rgba(67, 110, 114, 0.48) 62.2% 62.4%, transparent 62.6%);
}

.route-privacy .hero--legal::after {
  display: none;
}

.route-privacy .hero__signature--legal {
  right: 10vw;
  bottom: 19%;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
}

.route-privacy .hero__signature--legal i {
  width: 1px;
  height: 8rem;
  background: rgba(21, 32, 32, 0.38);
}

.route-privacy .hero__signature--legal i:nth-child(2) { height: 13rem; background: var(--route-accent); }
.route-privacy .hero__signature--legal i:nth-child(3) { height: 5rem; }

.route-privacy .section--privacy-data {
  color: #eaf0ee;
  background: #172220;
}

.route-privacy .section--privacy-data > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.route-privacy .policy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
}

.route-privacy .policy-grid article,
.route-privacy .policy-grid article:nth-child(n) {
  grid-column: auto;
  min-height: 18rem;
  padding: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(234, 240, 238, 0.18);
  background: transparent;
  transform: none;
}

.route-privacy .policy-grid article:first-child {
  grid-row: span 2;
  min-height: 36rem;
  padding-right: clamp(2rem, 5vw, 5rem);
}

.route-privacy .policy-grid h3 {
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.route-privacy .policy-grid p {
  color: rgba(234, 240, 238, 0.62);
}

.route-privacy .section--privacy-fields {
  background: #e3e8e5;
  color: #17201e;
}

.route-privacy .grouped-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0 5rem;
}

.route-privacy .grouped-list > div {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(23, 32, 30, 0.25);
}

.route-privacy .grouped-list > div:last-child {
  grid-column: 1 / -1;
  margin-left: 22%;
}

.route-privacy .section--privacy-rights {
  color: #eff2ef;
  background: #39504a;
}

.route-privacy .section--privacy-updates {
  background: #edf0ec;
}

.route-terms {
  --route-accent: #8e3d28;
}

.route-terms .hero--legal {
  color: #171a17;
  background:
    linear-gradient(90deg, #e7e0d3 0 61%, #d2c9ba 61.2% 100%);
}

.route-terms .hero--legal::before {
  z-index: 1;
  inset: 18% 6vw 11% auto;
  width: min(34rem, 38vw);
  height: auto;
  border: 1px solid rgba(23, 26, 23, 0.2);
  border-radius: 0;
  background:
    linear-gradient(135deg, transparent 0 83%, rgba(255, 255, 255, 0.62) 83.2% 100%);
  box-shadow: none;
}

.route-terms .hero--legal::after {
  z-index: 2;
  right: 9vw;
  bottom: 17%;
  width: min(26rem, 29vw);
  height: 1px;
  background: var(--route-accent);
}

.route-terms .hero--legal .hero__copy {
  width: min(60rem, 67vw);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.route-terms .hero--legal .hero__copy::before,
.route-terms .hero--legal .hero__copy::after {
  display: none;
}

.route-terms .hero--legal h1,
.route-terms .hero--legal .hero__intro {
  color: #171a17;
}

.route-terms .hero--legal .button--secondary {
  border-color: rgba(23, 26, 23, 0.46);
  color: #171a17;
}

.route-terms .section--terms-process {
  color: #171a17;
  background: #eeeae1;
}

.route-terms .number-list--wide {
  display: block;
  max-width: 58rem;
  margin-left: auto;
  border-left: 1px solid rgba(23, 26, 23, 0.28);
  counter-reset: service;
}

.route-terms .number-list--wide li,
.route-terms .number-list--wide li:nth-child(n) {
  display: grid;
  grid-template-columns: 4rem 1fr;
  min-height: 9rem;
  margin: 0;
  padding: 2rem 0 2rem 3rem;
  border: 0;
  border-bottom: 1px solid rgba(23, 26, 23, 0.18);
  transform: none;
}

.route-terms .section--terms-responsibility {
  color: #eeeae1;
  background: #1c231f;
}

.route-terms .responsibility-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1px;
  background: rgba(238, 234, 225, 0.2);
}

.route-terms .responsibility-grid article {
  min-height: 35rem;
  padding: clamp(2rem, 5vw, 5rem);
  border: 0;
  background: #1c231f;
}

.route-terms .responsibility-grid article:first-child {
  padding-top: 10rem;
  background: #29332c;
}

.route-terms .section--terms-boundary {
  color: #171a17;
  background: #d6cfc2;
}

.route-terms .boundary-notes--three {
  display: block;
  max-width: 55rem;
  margin-left: auto;
}

.route-terms .boundary-notes--three p {
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(23, 26, 23, 0.25);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
}

.route-terms .section--terms-acceptance {
  background: #efede6;
}

.route-terms .section--terms-review {
  color: #efede6;
  background: #343b35;
}

.route-refunds {
  --route-accent: #c45532;
  color: #eeeae2;
  background: #111614;
}

.route-refunds .hero--legal {
  min-height: 82svh;
  color: #eeeae2;
  background:
    radial-gradient(ellipse at 74% 35%, rgba(110, 94, 73, 0.32), transparent 27%),
    linear-gradient(135deg, #111614 0 62%, #252920 62.2% 100%);
}

.route-refunds .hero--legal::before {
  z-index: 1;
  inset: 16% 7vw 10% auto;
  width: min(34rem, 39vw);
  height: auto;
  border: 1px solid rgba(238, 234, 226, 0.16);
  border-radius: 50%;
  background: transparent;
}

.route-refunds .hero--legal::after {
  z-index: 2;
  right: 8vw;
  bottom: 21%;
  width: min(29rem, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--route-accent));
}

.route-refunds .section--refund-principles {
  color: #171a17;
  background: #dedbd2;
}

.route-refunds .refund-timeline {
  position: relative;
  display: block;
  max-width: 62rem;
  margin-left: auto;
  padding-left: clamp(3rem, 7vw, 7rem);
}

.route-refunds .refund-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--route-accent), rgba(23, 26, 23, 0.22));
  content: "";
}

.route-refunds .refund-timeline article,
.route-refunds .refund-timeline article:nth-child(n) {
  position: relative;
  min-height: 15rem;
  margin: 0;
  padding: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(23, 26, 23, 0.22);
  background: transparent;
  transform: none;
}

.route-refunds .refund-timeline article::before {
  position: absolute;
  top: 3rem;
  left: calc(-1 * clamp(3rem, 7vw, 7rem) - 0.33rem);
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--route-accent);
  content: "";
}

.route-refunds .refund-timeline h3 {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
}

.route-refunds .section--refund-request {
  color: #efede6;
  background: #202721;
}

.route-refunds .section--refund-request .grouped-list {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
}

.route-refunds .section--refund-request .grouped-list > div {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(239, 237, 230, 0.2);
}

.route-refunds .section--refund-request .grouped-list > div:last-child {
  grid-column: 1 / -1;
  margin-left: 25%;
}

.route-refunds .section--refund-channel {
  color: #171a17;
  background: #d2cbbb;
}

.route-ip,
.route-ip main {
  --route-accent: #d05a37;
  color: #eeeae3;
  background: #080c0b;
}

.route-ip .hero--legal {
  min-height: 88svh;
  color: #eeeae3;
  background:
    linear-gradient(121deg, #080c0b 0 56%, #17201b 56.2% 100%);
}

.route-ip .hero--legal::before {
  z-index: 1;
  inset: 15% 6vw 11% auto;
  width: min(38rem, 43vw);
  height: auto;
  border: 1px solid rgba(238, 234, 227, 0.14);
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 32%, rgba(238, 234, 227, 0.14) 32.2% 32.4%, transparent 32.6%),
    linear-gradient(0deg, transparent 68%, rgba(208, 90, 55, 0.56) 68.2% 68.4%, transparent 68.6%);
}

.route-ip .hero--legal::after {
  display: none;
}

.route-ip .hero__signature--legal {
  top: 20%;
  right: 8vw;
  width: min(34rem, 38vw);
  height: min(29rem, 49vh);
}

.route-ip .hero__signature--legal i {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(238, 234, 227, 0.5);
  background: transparent;
}

.route-ip .hero__signature--legal i:nth-child(1) { top: 10%; left: 12%; }
.route-ip .hero__signature--legal i:nth-child(2) { top: 47%; left: 59%; border-color: var(--route-accent); }
.route-ip .hero__signature--legal i:nth-child(3) { top: 82%; left: 88%; }

.route-ip .section--ip-boundary {
  color: #eeeae3;
  background: #111714;
}

.route-ip .policy-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1px;
  background: rgba(238, 234, 227, 0.16);
}

.route-ip .policy-grid article,
.route-ip .policy-grid article:first-child,
.route-ip .policy-grid article:nth-child(n) {
  min-height: 19rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 0;
  background: #111714;
  color: #eeeae3;
}

.route-ip .policy-grid article:first-child {
  grid-row: span 2;
  min-height: 38rem;
  padding-top: 12rem;
  background: #202922;
}

.route-ip .policy-grid h3 {
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.route-ip .policy-grid p {
  color: rgba(238, 234, 227, 0.62);
}

.route-ip .section--ip-software {
  color: #171a17;
  background: #d8d1c3;
}

.route-ip .section--ip-software .plain-callout {
  max-width: 60rem;
  margin-left: auto;
  padding-left: clamp(2rem, 6vw, 6rem);
  border-left: 1px solid rgba(23, 26, 23, 0.28);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  line-height: 1.55;
}

.route-ip .section--ip-notice {
  color: #efede6;
  background: #263029;
}

/* Remaining route event states: each page enters according to its subject. */
.js .route-progress [data-motion-section] .status-item,
.js .route-progress [data-motion-section] .gate-grid p {
  opacity: 0.44;
  transform: translateX(-1.75rem);
  transition: opacity 520ms ease, transform 820ms var(--v15-ease-out);
}

.js .route-progress [data-motion-section].is-revealed .status-item,
.js .route-progress [data-motion-section].is-revealed .gate-grid p {
  opacity: 1;
  transform: none;
}

.js .route-progress [data-motion-section].is-revealed .status-item:nth-child(2n),
.js .route-progress [data-motion-section].is-revealed .gate-grid p:nth-child(2n) {
  transition-delay: 100ms;
}

.js .route-qualifications [data-motion-section] .qualification-ledger,
.js .route-qualifications [data-motion-section] .number-list,
.js .route-contact [data-motion-section] .briefing-prep,
.js .route-contact [data-motion-section] .form-layout {
  opacity: 0.45;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 820ms var(--v15-ease-out);
}

.js .route-qualifications [data-motion-section].is-revealed .qualification-ledger,
.js .route-qualifications [data-motion-section].is-revealed .number-list,
.js .route-contact [data-motion-section].is-revealed .briefing-prep,
.js .route-contact [data-motion-section].is-revealed .form-layout {
  opacity: 1;
  transform: none;
}

.js .page-legal [data-motion-section] .policy-grid,
.js .page-legal [data-motion-section] .grouped-list,
.js .page-legal [data-motion-section] .number-list,
.js .page-legal [data-motion-section] .responsibility-grid,
.js .page-legal [data-motion-section] .boundary-notes,
.js .page-legal [data-motion-section] .refund-timeline,
.js .page-legal [data-motion-section] .plain-callout,
.js .page-legal [data-motion-section] .disclosure {
  opacity: 0.5;
  transform: translateY(1.25rem);
  transition: opacity 580ms ease, transform 820ms var(--v15-ease-out);
}

.js .page-legal [data-motion-section].is-revealed .policy-grid,
.js .page-legal [data-motion-section].is-revealed .grouped-list,
.js .page-legal [data-motion-section].is-revealed .number-list,
.js .page-legal [data-motion-section].is-revealed .responsibility-grid,
.js .page-legal [data-motion-section].is-revealed .boundary-notes,
.js .page-legal [data-motion-section].is-revealed .refund-timeline,
.js .page-legal [data-motion-section].is-revealed .plain-callout,
.js .page-legal [data-motion-section].is-revealed .disclosure {
  opacity: 1;
  transform: none;
}

/* Motion states differ by route; nothing is pinned or scrubbed. */
.js body:not(.page-home) [data-route-hero] [data-hero-copy] {
  opacity: 0.62;
  transform: translate3d(0, 1.75rem, 0);
}

.js body:not(.page-home) [data-route-hero] [data-hero-media] {
  opacity: 0.72;
  transform: scale(1.035);
}

.js body:not(.page-home) [data-route-hero].is-open [data-hero-copy],
.js body:not(.page-home) [data-route-hero].is-open [data-hero-media] {
  opacity: 1;
  transform: none;
}

.js .route-product [data-motion-section] .fit-grid article,
.js .route-product [data-motion-section] .delivery-grid > *,
.js .route-product [data-motion-section] .price-layout > * {
  opacity: 0.48;
  transform: translateX(-2rem);
  transition: opacity 520ms ease, transform 820ms var(--v15-ease-out);
}

.js .route-product [data-motion-section].is-revealed .fit-grid article,
.js .route-product [data-motion-section].is-revealed .delivery-grid > *,
.js .route-product [data-motion-section].is-revealed .price-layout > * {
  opacity: 1;
  transform: none;
}

.js .route-product [data-motion-section].is-revealed .fit-grid article:nth-child(2),
.js .route-product [data-motion-section].is-revealed .delivery-grid > :nth-child(2),
.js .route-product [data-motion-section].is-revealed .price-layout > :nth-child(2) {
  transition-delay: 110ms;
}

.js .route-services [data-motion-section] .capability-grid article,
.js .route-services [data-motion-section] .boundary-notes p,
.js .route-services [data-motion-section] .record-band span {
  opacity: 0.42;
  transform: translateX(1.5rem);
  transition: opacity 520ms ease, transform 780ms var(--v15-ease-out), background-color 420ms ease;
}

.js .route-services [data-motion-section].is-revealed .capability-grid article,
.js .route-services [data-motion-section].is-revealed .boundary-notes p,
.js .route-services [data-motion-section].is-revealed .record-band span {
  opacity: 1;
  transform: none;
}

.js .route-services [data-motion-section].is-revealed .capability-grid article:nth-child(2),
.js .route-services [data-motion-section].is-revealed .boundary-notes p:nth-child(2),
.js .route-services [data-motion-section].is-revealed .record-band span:nth-child(2) { transition-delay: 80ms; }
.js .route-services [data-motion-section].is-revealed .capability-grid article:nth-child(3),
.js .route-services [data-motion-section].is-revealed .boundary-notes p:nth-child(3),
.js .route-services [data-motion-section].is-revealed .record-band span:nth-child(3) { transition-delay: 150ms; }
.js .route-services [data-motion-section].is-revealed .capability-grid article:nth-child(4),
.js .route-services [data-motion-section].is-revealed .record-band span:nth-child(4) { transition-delay: 220ms; }

.js .route-cases [data-motion-section] .case-status-grid,
.js .route-cases [data-motion-section] .demo-flow,
.js .route-cases [data-motion-section] .authorization-grid {
  opacity: 0.5;
  transform: scale(0.975);
  transform-origin: center center;
  transition: opacity 620ms ease, transform 960ms var(--v15-ease-out);
}

.js .route-cases [data-motion-section].is-revealed .case-status-grid,
.js .route-cases [data-motion-section].is-revealed .demo-flow,
.js .route-cases [data-motion-section].is-revealed .authorization-grid {
  opacity: 1;
  transform: none;
}

body:not(.page-home) [data-motion-section].is-past .section-heading {
  opacity: 0.72;
  transform: translateY(-0.5rem);
}

body:not(.page-home) [data-motion-section] .section-heading {
  transition: opacity 420ms ease, transform 620ms var(--v15-ease-out);
}

@media (max-width: 980px) {
  body:not(.page-home) .page-hero h1 {
    font-size: clamp(3.35rem, 10vw, 6.4rem);
  }

  .route-product .section--product-fit > .shell,
  .route-product .section--product-delivery > .shell,
  .route-product .section--product-pricing > .shell,
  .route-services .section--service-capabilities > .shell,
  .route-services .section--service-boundary > .shell,
  .route-services .section--service-pricing > .shell,
  .route-cases .section--cases-status > .shell,
  .route-cases .section--cases-authorization > .shell,
  .route-progress .section--progress-method > .shell,
  .route-progress .section--progress-gates > .shell,
  .route-qualifications .section--qualifications-register > .shell,
  .route-qualifications .section--qualifications-boundary > .shell,
  .route-qualifications .section--qualifications-check > .shell,
  .route-contact .section--contact-prepare > .shell,
  .route-contact .section--contact-form > .shell,
  .route-contact .section--contact-channel > .shell,
  .route-privacy .section--privacy-data > .shell {
    grid-template-columns: 1fr;
  }

  .route-product .section--product-fit .section-heading {
    border-top: 0;
  }

  .route-services .record-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .route-cases .hero--cases .hero__media {
    left: 28%;
  }

  .route-progress .section--progress-status .section-heading,
  .qualification-group__records,
  .route-contact .briefing-prep,
  .route-contact .form-layout,
  .route-privacy .policy-grid,
  .route-privacy .grouped-list,
  .route-terms .responsibility-grid,
  .route-refunds .section--refund-request .grouped-list,
  .route-ip .policy-grid {
    grid-template-columns: 1fr;
  }

  .route-privacy .policy-grid article:first-child,
  .route-ip .policy-grid article:first-child {
    grid-row: auto;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .route-privacy .grouped-list > div:last-child,
  .route-refunds .section--refund-request .grouped-list > div:last-child {
    grid-column: 1;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  body:not(.page-home) .section {
    padding-block: clamp(5.5rem, 24vw, 8rem);
  }

  body:not(.page-home) .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  body:not(.page-home) .page-hero .button-row {
    width: 100%;
  }

  body:not(.page-home) .page-hero .button {
    flex: 1 1 9rem;
  }

  .hero__media-focus,
  .page-hero .concept-figure figcaption {
    display: none;
  }

  .route-product .hero--product,
  .route-services .hero--services,
  .route-cases .hero--cases,
  .route-progress .hero--progress,
  .route-qualifications .hero--qualifications,
  .route-contact .hero--contact,
  .page-legal .hero--legal {
    display: flex;
    min-height: 100svh;
    padding: calc(var(--header-height) + 3.5rem) 1.25rem 3.5rem;
    align-items: flex-end;
  }

  .route-product .hero--product .hero__copy,
  .route-services .hero--services .hero__copy,
  .route-cases .hero--cases .hero__copy,
  .route-progress .hero--progress .hero__copy,
  .route-qualifications .hero--qualifications .hero__copy,
  .route-contact .hero--contact .hero__copy,
  .page-legal .hero--legal .hero__copy {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .route-product .hero--product h1,
  .route-services .hero--services h1,
  .route-cases .hero--cases h1,
  .route-progress .hero--progress h1,
  .route-qualifications .hero--qualifications h1,
  .route-contact .hero--contact h1,
  .page-legal .hero--legal h1 {
    max-width: 8.5ch;
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .route-product .hero--product::before,
  .route-services .hero--services::before,
  .route-cases .hero--cases::before,
  .route-progress .hero--progress::before {
    background: linear-gradient(to top, rgba(6, 9, 8, 0.99) 0 43%, rgba(6, 9, 8, 0.46) 72%, rgba(6, 9, 8, 0.2));
  }

  .route-services .hero--services .hero__media,
  .route-cases .hero--cases .hero__media,
  .route-progress .hero--progress .hero__media {
    inset: 0;
  }

  .route-product .hero--product::after,
  .route-services .hero--services::after,
  .route-cases .hero--cases::after,
  .route-progress .hero--progress::after,
  .route-qualifications .hero--qualifications::before,
  .route-contact .hero--contact::before,
  .route-contact .hero--contact::after,
  .page-legal .hero--legal::before,
  .page-legal .hero--legal::after,
  .hero__signature {
    display: none;
  }

  .route-qualifications .hero--qualifications,
  .route-contact .hero--contact,
  .route-privacy .hero--legal,
  .route-terms .hero--legal {
    min-height: 86svh;
    color: #171a17;
  }

  .route-qualifications .hero--qualifications {
    background: linear-gradient(160deg, #edeae1, #d5d0c4);
  }

  .route-contact .hero--contact {
    background: linear-gradient(155deg, #f2f0e9 0 62%, #d9d8cf 62.2%);
  }

  .route-privacy .hero--legal {
    background: linear-gradient(155deg, #e9f0ee, #c8d6d4);
  }

  .route-terms .hero--legal {
    background: linear-gradient(155deg, #ece6da, #d0c6b7);
  }

  .route-refunds .hero--legal,
  .route-ip .hero--legal {
    min-height: 92svh;
    color: #eeeae3;
  }

  .route-product .fit-grid,
  .route-cases .case-status-grid,
  .route-cases .demo-flow,
  .route-cases .authorization-grid,
  .route-services .boundary-notes,
  .route-progress .status-definition-grid,
  .route-progress .gate-grid,
  .qualification-group__records,
  .route-contact .briefing-prep,
  .route-contact .form-layout,
  .route-privacy .policy-grid,
  .route-privacy .grouped-list,
  .route-terms .responsibility-grid,
  .route-refunds .section--refund-request .grouped-list,
  .route-ip .policy-grid {
    grid-template-columns: 1fr;
  }

  .route-progress .status-item,
  .route-progress .status-item:nth-child(n) {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-left: 0;
    gap: 2rem;
  }

  .route-progress .status-definition-grid article,
  .route-progress .status-definition-grid article:nth-child(n) {
    min-height: 11rem;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 237, 231, 0.16);
  }

  .route-progress .status-definition-grid p {
    margin-top: 2rem;
  }

  .route-progress .gate-grid p:nth-child(n) {
    transform: none;
  }

  .qualification-group summary {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .qualification-group summary small {
    grid-column: 1 / -1;
  }

  .route-contact .briefing-prep > div,
  .route-contact .briefing-prep > div:last-child {
    min-height: auto;
    padding-top: 0;
  }

  .page-legal .section--legal > .shell {
    width: calc(100% - 2.5rem);
  }

  .route-terms .number-list--wide li,
  .route-terms .number-list--wide li:nth-child(n) {
    grid-template-columns: 2.5rem 1fr;
    padding-left: 1.5rem;
  }

  .route-terms .responsibility-grid article,
  .route-terms .responsibility-grid article:first-child {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .route-refunds .refund-timeline {
    padding-left: 2.5rem;
  }

  .route-refunds .refund-timeline article::before {
    left: -2.82rem;
  }

  .route-product .fit-grid article,
  .route-product .fit-grid article:nth-child(n),
  .route-cases .case-status-grid article,
  .route-cases .case-status-grid article:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
  }

  .route-product .fit-grid article h3,
  .route-cases .case-status-grid h3 {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .route-services .capability-grid article,
  .route-services .capability-grid article:nth-child(n) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .route-services .record-band {
    grid-template-columns: 1fr 1fr;
  }

  .route-services .record-band span {
    min-height: 6rem;
    writing-mode: horizontal-tb;
  }

  .route-cases .demo-flow {
    display: block;
    overflow: visible;
  }

  .route-cases .demo-flow article,
  .route-cases .demo-flow article:nth-child(n) {
    min-height: auto;
    padding: 3rem 0;
    border-top: 1px solid rgba(238, 236, 230, 0.18);
    border-left: 0;
    background: transparent;
  }
}

@media (update: none) {
  .js body:not(.page-home) [data-route-hero] [data-hero-copy],
  .js body:not(.page-home) [data-route-hero] [data-hero-media],
  .js body:not(.page-home) [data-motion-section] *,
  body:not(.page-home) [data-motion-section] .section-heading {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__media-focus {
    display: none;
  }
}


/* source: catalog.css */
/* V16 product and service catalogue layer.
   Keeps the V15 approved baseline recoverable and changes only these two routes. */

:root {
  --v16-market-paper: #e9e5dc;
  --v16-market-paper-deep: #d7d0c3;
  --v16-market-ink: #171b18;
  --v16-market-night: #0b100e;
  --v16-market-moss: #26352d;
  --v16-market-rust: #cf4d2c;
  --v16-market-sand: #c4b28f;
  --v16-market-rule: rgba(23, 27, 24, 0.22);
}

.concept-figure--position-58 img { object-position: 58% center; }
.concept-figure--position-62 img { object-position: 62% center; }
.concept-figure--position-68 img { object-position: 68% center; }

/* New photography keeps media craft and software work in one believable frame. */
.route-product .hero--product .concept-figure img {
  object-position: 58% center;
  filter: saturate(0.7) contrast(1.04) brightness(0.75);
}

.route-product .hero--product::before {
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.98) 0%, rgba(8, 12, 10, 0.92) 31%, rgba(8, 12, 10, 0.42) 58%, rgba(8, 12, 10, 0.08) 86%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.22), transparent 48%, rgba(5, 8, 7, 0.76));
}

.route-product .hero--product::after {
  right: 6.5vw;
  bottom: 12%;
  width: min(35rem, 38vw);
  height: min(17rem, 28vh);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-right-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(207, 77, 44, 0.74) 68.2% 68.5%, transparent 68.7%),
    linear-gradient(180deg, transparent 0 54%, rgba(255, 255, 255, 0.24) 54.2% 54.5%, transparent 54.7%);
}

.route-product .hero--product h1 {
  max-width: 9.4ch;
}

.route-services .hero--services .hero__media {
  inset: 0;
}

.route-services .hero--services .concept-figure img {
  object-position: 56% center;
  filter: saturate(0.54) contrast(1.08) brightness(0.66);
}

.route-services .hero--services::before {
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.98) 0%, rgba(8, 12, 11, 0.93) 35%, rgba(8, 12, 11, 0.36) 66%, rgba(8, 12, 11, 0.12)),
    linear-gradient(180deg, rgba(5, 8, 7, 0.32), transparent 55%, rgba(5, 8, 7, 0.78));
}

.route-services .hero--services h1 {
  max-width: 8.8ch;
  font-size: clamp(3.7rem, 6.7vw, 7.7rem);
}

/* Catalogue shell: one featured object plus a changing shelf, not a dashboard grid. */
.route-product .section--product-catalog,
.route-services .section--service-catalog {
  color: var(--v16-market-ink);
  background: var(--v16-market-paper);
}

.route-services .section--service-catalog {
  background: #ddd5c8;
}

.route-product .section--product-catalog > .shell,
.route-services .section--service-catalog > .shell {
  display: block;
}

.section--catalog .section-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.section--catalog .section-heading h2 {
  max-width: none;
}

.section--catalog .section-lead {
  max-width: 32rem;
  margin: 0 0 0.7rem auto;
}

.catalog-explorer {
  border-top: 1px solid var(--v16-market-rule);
}

.catalog-toolbar {
  display: flex;
  min-height: 6.5rem;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--v16-market-rule);
}

.catalog-filters {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.2rem);
}

.catalog-filters button {
  position: relative;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  opacity: 0.52;
  transition: color 240ms ease, opacity 240ms ease, transform 220ms var(--v15-ease-out);
}

.catalog-filters button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--v16-market-rust);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--v15-ease-out);
}

.catalog-filters button[aria-pressed="true"] {
  opacity: 1;
}

.catalog-filters button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.catalog-filters button.is-pressed {
  transform: translateY(2px);
}

.catalog-count {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  opacity: 0.58;
}

.catalog-count span {
  display: inline-block;
  min-width: 1.4ch;
  color: var(--v16-market-rust);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.catalog-note {
  max-width: 52rem;
  margin: 1.6rem 0 4rem;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.75;
  opacity: 0.54;
}

.catalog-list {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(18rem, 0.72fr);
  grid-auto-flow: row;
  gap: 1px;
  background: var(--v16-market-rule);
}

.catalog-item {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: #f0ede6;
  isolation: isolate;
}

.catalog-item[hidden] {
  display: none !important;
}

.catalog-item--featured {
  grid-row: span 3;
  min-height: 66rem;
  color: #f1eee6;
  background: #111713;
}

.route-product .catalog-item--featured {
  grid-row: span 2;
  min-height: 44rem;
}

.catalog-explorer[data-visible-count="1"] .catalog-list {
  grid-template-columns: minmax(0, 1fr);
}

.catalog-explorer[data-visible-count="1"] .catalog-item,
.catalog-explorer[data-visible-count="1"] .catalog-item--featured {
  grid-row: auto;
  min-height: 32rem;
}

.catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item,
.catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item--featured {
  grid-row: auto;
  min-height: 36rem;
}

.catalog-item__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  padding: clamp(2rem, 4vw, 4rem);
  flex-direction: column;
}

.catalog-item--featured .catalog-item__content {
  width: min(68%, 42rem);
  justify-content: flex-end;
}

.catalog-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 5rem);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.catalog-item__status {
  padding: 0.45rem 0.6rem;
  border: 1px solid currentColor;
  font-size: 0.66rem;
  opacity: 0.62;
}

.catalog-item--available .catalog-item__status {
  color: var(--v16-market-rust);
  opacity: 1;
}

.catalog-item__category {
  margin: auto 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  opacity: 0.48;
}

.catalog-item h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.1vw, 3.4rem);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.catalog-item--featured h3 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 1.02;
}

.catalog-item__summary {
  max-width: 37rem;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.85;
  opacity: 0.68;
}

.catalog-item__highlights {
  display: flex;
  margin: 0 0 2.5rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  list-style: none;
}

.catalog-item__highlights li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  opacity: 0.58;
}

.catalog-item__highlights li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.34rem;
  height: 1px;
  background: var(--v16-market-rust);
  content: "";
}

.catalog-item__link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.65rem 0;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  transition: color 240ms ease, transform 240ms var(--v15-ease-out);
}

.catalog-item__link i {
  color: var(--v16-market-rust);
  font-style: normal;
  transition: transform 340ms var(--v15-ease-out);
}

.catalog-item__link.is-pressed {
  transform: translateY(2px);
}

.catalog-item__visual {
  position: absolute;
  z-index: 1;
  inset: auto 1.5rem 1.5rem 45%;
  height: 8.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(23, 27, 24, 0.2);
  opacity: 0.42;
}

.catalog-item--featured .catalog-item__visual {
  inset: 0 0 0 46%;
  height: auto;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, transparent, rgba(207, 77, 44, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
  opacity: 1;
}

.catalog-item__visual i,
.catalog-item__visual span {
  position: absolute;
  display: block;
}

.catalog-item__visual i {
  right: 8%;
  left: 8%;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
  transition: transform 640ms var(--v15-ease-out), opacity 320ms ease;
}

.catalog-item__visual i:nth-child(1) { top: 24%; }
.catalog-item__visual i:nth-child(2) { top: 52%; transform: translateX(18%); }
.catalog-item__visual i:nth-child(3) { top: 77%; transform: translateX(-12%); }

.catalog-item__visual span {
  right: 12%;
  bottom: 13%;
  width: 28%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  opacity: 0.34;
  transform: rotate(12deg);
  transition: transform 760ms var(--v15-ease-out);
}

.catalog-item__visual--quotation {
  color: var(--v16-market-sand);
  background:
    linear-gradient(146deg, transparent 0 42%, rgba(207, 77, 44, 0.38) 42.3% 42.7%, transparent 43%),
    linear-gradient(20deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 62.3% 62.6%, transparent 63%);
}

.catalog-item__visual--custom,
.catalog-item__visual--software {
  color: #35483d;
  background: linear-gradient(90deg, rgba(38, 53, 45, 0.06), transparent);
}

.catalog-item__visual--app span {
  width: 20%;
  aspect-ratio: 0.58;
  transform: rotate(0);
}

.catalog-item__visual--workflow,
.catalog-item__visual--local-ai {
  color: #76654c;
}

.catalog-item__visual--local-ai i:nth-child(1) { transform: translateX(-20%); }
.catalog-item__visual--local-ai i:nth-child(2) { transform: translateX(14%); }
.catalog-item__visual--local-ai i:nth-child(3) { transform: translateX(-6%); }

.catalog-item__visual--media span {
  width: 34%;
  aspect-ratio: 1.55;
  transform: rotate(-5deg);
}

.catalog-empty {
  padding: 5rem 0;
  text-align: center;
}

.catalog-empty p {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 2rem;
}

.catalog-empty span {
  opacity: 0.56;
}

/* Services remain conversational: three steps with unequal rhythm instead of three cards. */
.route-services .section--service-start {
  color: var(--v16-market-ink);
  background: #eeeae1;
}

.route-services .section--service-start > .shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.service-start-path {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-start-path li {
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--v16-market-rule);
}

.service-start-path li:last-child {
  border-bottom: 1px solid var(--v16-market-rule);
}

.service-start-path strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  font-weight: 520;
}

.service-start-path span {
  max-width: 34rem;
  line-height: 1.8;
  opacity: 0.64;
}

/* Catalogue motion is event-driven and can be interrupted by another filter click. */
.js .section--catalog [data-motion-section] {
  opacity: 1;
}

.js .section--catalog .catalog-item {
  opacity: 0.54;
  transform: translateY(1.25rem);
  transition: opacity 520ms ease, transform 760ms var(--v15-ease-out);
}

.js .section--catalog.is-revealed .catalog-item {
  opacity: 1;
  transform: none;
}

.js .section--catalog.is-revealed .catalog-item:nth-child(2) { transition-delay: 70ms; }
.js .section--catalog.is-revealed .catalog-item:nth-child(3) { transition-delay: 130ms; }
.js .section--catalog.is-revealed .catalog-item:nth-child(4) { transition-delay: 190ms; }

@media (hover: hover) and (pointer: fine) {
  .catalog-filters button:hover {
    opacity: 1;
  }

  .catalog-item:hover .catalog-item__visual i {
    opacity: 0.7;
    transform: translateX(3%);
  }

  .catalog-item:hover .catalog-item__visual i:nth-child(2) {
    transform: translateX(10%);
  }

  .catalog-item:hover .catalog-item__visual span {
    transform: rotate(3deg) scale(1.04);
  }

  .catalog-item:hover .catalog-item__link i,
  .catalog-item__link:focus-visible i {
    transform: translate(0.22rem, -0.22rem);
  }
}

html[data-theme="dark"] .route-product .section--product-catalog,
html[data-theme="dark"] .route-services .section--service-catalog,
html[data-theme="dark"] .route-services .section--service-start {
  color: #edeae2;
  background: #131a16;
}

html[data-theme="dark"] .catalog-explorer,
html[data-theme="dark"] .catalog-toolbar,
html[data-theme="dark"] .service-start-path li {
  border-color: rgba(237, 234, 226, 0.2);
}

html[data-theme="dark"] .catalog-list {
  background: rgba(237, 234, 226, 0.18);
}

html[data-theme="dark"] .catalog-item {
  color: #edeae2;
  background: #1b241f;
}

html[data-theme="dark"] .catalog-item--featured {
  background: #090d0b;
}

@media (max-width: 980px) {
  .section--catalog .section-heading,
  .route-services .section--service-start > .shell {
    grid-template-columns: 1fr;
  }

  .section--catalog .section-lead {
    margin-left: 0;
  }

  .catalog-item--featured .catalog-item__content {
    width: min(78%, 42rem);
  }
}

@media (max-width: 720px) {
  .route-product .hero--product .concept-figure img {
    object-position: 67% center;
    filter: saturate(0.68) contrast(1.05) brightness(0.62);
  }

  .route-services .hero--services .concept-figure img {
    object-position: 57% center;
    filter: saturate(0.5) contrast(1.08) brightness(0.56);
  }

  .route-product .hero--product::before,
  .route-services .hero--services::before {
    background: linear-gradient(to top, rgba(6, 9, 8, 0.99) 0 46%, rgba(6, 9, 8, 0.5) 73%, rgba(6, 9, 8, 0.18));
  }

  .route-product .hero--product h1,
  .route-services .hero--services h1 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .catalog-toolbar {
    display: block;
    min-height: 0;
    padding: 1rem 0;
  }

  .catalog-filters {
    margin: 0 -1.25rem;
    padding: 0 1.25rem 0.75rem;
    gap: 1.5rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .catalog-filters button {
    flex: 0 0 auto;
  }

  .catalog-count {
    margin-top: 0.65rem;
  }

  .catalog-note {
    margin-bottom: 2.5rem;
  }

  .catalog-list {
    display: block;
    background: transparent;
  }

  .catalog-item,
  .catalog-item--featured {
    min-height: 27rem;
    margin-bottom: 1px;
    border-bottom: 1px solid var(--v16-market-rule);
  }

  .catalog-item--featured {
    min-height: 42rem;
  }

  .route-product .catalog-item--featured,
  .catalog-explorer[data-visible-count="1"] .catalog-item,
  .catalog-explorer[data-visible-count="1"] .catalog-item--featured,
  .catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item,
  .catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item--featured {
    grid-row: auto;
    min-height: 42rem;
  }

  .catalog-item__content,
  .catalog-item--featured .catalog-item__content {
    width: 100%;
    min-height: inherit;
    padding: 2rem 1.4rem;
  }

  .catalog-item__meta {
    margin-bottom: 3rem;
  }

  .catalog-item--featured h3 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .catalog-item__visual,
  .catalog-item--featured .catalog-item__visual {
    inset: auto 1.4rem 1.4rem 42%;
    height: 8rem;
    border-top: 1px solid currentColor;
    border-left: 0;
    opacity: 0.24;
  }

  .catalog-item--featured .catalog-item__visual {
    inset: 0 0 43% 42%;
    height: auto;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.72;
  }

  .service-start-path li {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 390px) {
  .catalog-item__highlights {
    gap: 0.55rem 0.9rem;
  }

  .catalog-item__status {
    max-width: 8.5rem;
    text-align: right;
  }
}

@media (update: none) {
  .catalog-filters button,
  .catalog-filters button::after,
  .catalog-item,
  .catalog-item__link,
  .catalog-item__link i,
  .catalog-item__visual i,
  .catalog-item__visual span {
    transition: none !important;
  }

  .js .section--catalog .catalog-item {
    opacity: 1;
    transform: none;
  }
}

/* Structured product, service and case catalogues read content/public-content.json. */
.catalog-list {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
}

.catalog-item,
.catalog-item--featured,
.route-product .catalog-item--featured,
.catalog-explorer[data-visible-count="1"] .catalog-item,
.catalog-explorer[data-visible-count="1"] .catalog-item--featured,
.catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item,
.catalog-explorer[data-active-filter]:not([data-active-filter="all"]):not([data-visible-count="1"]) .catalog-item--featured {
  display: flex;
  grid-row: auto;
  grid-column: span 6;
  min-height: 38rem;
  flex-direction: column;
  color: var(--v16-market-ink);
  background: #f0ede6;
}

.catalog-item--featured,
.catalog-item:nth-child(4n + 4) {
  grid-column: span 7;
}

.catalog-item:nth-child(4n + 2),
.catalog-item:nth-child(4n + 3) {
  grid-column: span 5;
}

.catalog-item:nth-child(5) {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  grid-column: 1 / -1;
  min-height: 31rem;
}

.catalog-item__media {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  background: #151a17;
}

.catalog-item--featured .catalog-item__media {
  min-height: 25rem;
}

.catalog-item__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 7, 0.45));
  content: "";
  pointer-events: none;
}

.catalog-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.86);
  transition: filter 700ms ease, transform 950ms var(--v15-ease-out);
}

.catalog-item__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1rem;
  padding: 0.35rem 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 10, 9, 0.5);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  backdrop-filter: blur(0.35rem);
}

.catalog-item__content,
.catalog-item--featured .catalog-item__content {
  display: flex;
  width: 100%;
  min-height: 18rem;
  padding: clamp(1.75rem, 3vw, 3.1rem);
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
}

.catalog-item__meta {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.catalog-item__meta > span:first-child {
  opacity: 0.52;
}

.catalog-item h3,
.catalog-item--featured h3 {
  max-width: 13ch;
  margin-top: auto;
  font-size: clamp(2.2rem, 3.8vw, 4.6rem);
  line-height: 1.06;
}

.catalog-item:not(.catalog-item--featured) h3 {
  font-size: clamp(1.9rem, 2.7vw, 3.1rem);
}

.catalog-item__summary {
  max-width: 34rem;
  margin: 1.2rem 0 2rem;
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.62;
}

.catalog-item__link {
  margin-top: 0;
}

.catalog-explorer[data-visible-count="1"] .catalog-list {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.catalog-explorer[data-visible-count="1"] .catalog-item {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  grid-column: 1 / -1;
  min-height: 32rem;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-item:hover .catalog-item__media img {
    filter: saturate(0.9) contrast(1.07) brightness(0.94);
    transform: scale(1.025);
  }
}

html[data-theme="dark"] .catalog-item,
html[data-theme="dark"] .catalog-item--featured {
  color: #edeae2;
  background: #151d19;
}

@media (max-width: 900px) {
  .catalog-item,
  .catalog-item--featured,
  .catalog-item:nth-child(4n + 2),
  .catalog-item:nth-child(4n + 3),
  .catalog-item:nth-child(4n + 4),
  .catalog-item:nth-child(5),
  .catalog-explorer[data-visible-count="1"] .catalog-item {
    display: flex;
    grid-column: 1 / -1;
    min-height: 0;
  }

  .catalog-item__media,
  .catalog-item--featured .catalog-item__media {
    min-height: 22rem;
  }

  .catalog-item__content,
  .catalog-item--featured .catalog-item__content {
    min-height: 20rem;
  }
}

@media (max-width: 720px) {
  .catalog-item,
  .catalog-item--featured,
  .route-product .catalog-item--featured,
  .catalog-explorer[data-visible-count="1"] .catalog-item,
  .catalog-explorer[data-visible-count="1"] .catalog-item--featured {
    min-height: 0;
  }

  .catalog-item__media,
  .catalog-item--featured .catalog-item__media {
    inset: auto;
    min-height: 17rem;
    height: 17rem;
    border: 0;
    opacity: 1;
  }

  .catalog-item__content,
  .catalog-item--featured .catalog-item__content {
    min-height: 21rem;
    padding: 1.5rem 1.35rem 1.75rem;
  }

  .catalog-item__meta {
    margin-bottom: 2.75rem;
  }

  .catalog-item h3,
  .catalog-item--featured h3,
  .catalog-item:not(.catalog-item--featured) h3 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }
}

@media (update: none) {
  .catalog-item__media img {
    transition: none !important;
  }
}


/* source: motion-foundation.css */
/* Senfan V18 — one navigation frame, ten route-specific motion languages. */

:root {
  --header-height: calc(5rem + env(safe-area-inset-top, 0px));
  --v18-shell: 82rem;
  --v18-gutter: clamp(1.25rem, 4vw, 4rem);
  --v18-ember: #c94722;
  --v18-out: cubic-bezier(0.22, 1, 0.36, 1);
  --v18-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scrollbar-gutter: stable;
}

/* The header is a persistent spatial anchor across every document. */
.site-header {
  height: var(--header-height);
  view-transition-name: sf-header;
  transform: translateY(0);
  transition:
    transform 420ms var(--v18-out),
    background-color 360ms var(--v18-out),
    color 360ms var(--v18-out),
    border-color 360ms var(--v18-out),
    box-shadow 360ms var(--v18-out);
}

.site-header.is-hidden {
  transform: translateY(-102%);
}

.site-header:focus-within {
  transform: translateY(0);
}

.site-header--overlay {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(9, 14, 10, 0.42), rgba(9, 14, 10, 0));
  color: #f2efe8;
}

.site-header--overlay.is-solid,
.site-header--overlay.is-paper {
  border-bottom-color: rgba(23, 27, 23, 0.2);
  background: rgba(238, 231, 218, 0.97);
  color: #171b17;
  box-shadow: 0 12px 34px rgba(8, 11, 9, 0.08);
}

.site-header__inner {
  width: min(calc(100% - (2 * var(--v18-gutter))), var(--v18-shell));
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header .wordmark {
  width: fit-content;
  min-height: 0;
  display: inline;
  font-family: var(--font-sans, "Noto Sans SC", "Microsoft YaHei UI", system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 720;
  line-height: 1.75;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.site-header .wordmark > small {
  display: none;
}

.site-header .wordmark::after {
  width: 1.25rem;
  height: 2px;
  display: block;
  margin-top: 0.28rem;
  background: var(--v18-ember);
  content: "";
}

.site-header .desktop-nav {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 1.7vw, 2rem);
}

.site-header .desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-family: var(--font-sans, "Noto Sans SC", "Microsoft YaHei UI", system-ui, sans-serif);
  font-size: clamp(0.75rem, 0.82vw, 0.88rem);
  font-weight: 540;
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
}

.site-header .desktop-nav a::after {
  right: 0;
  bottom: 0.6rem;
  left: 0;
  height: 2px;
  background: var(--v18-ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--v18-out);
}

.site-header .desktop-nav a:hover::after,
.site-header .desktop-nav a:focus-visible::after,
.site-header .desktop-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
}

.site-header .header-actions {
  gap: 0;
}

.site-header .menu-toggle {
  width: 52px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.mobile-menu__cta {
  margin-top: 2rem;
  padding-inline: 1.25rem;
  border: 1px solid currentColor;
}

.site-footer .theme-toggle--footer {
  width: fit-content;
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

::view-transition-group(sf-header) {
  z-index: 1000;
  animation-duration: 300ms;
  animation-timing-function: var(--v18-out);
}

::view-transition-old(root) {
  animation: v18-document-old 190ms var(--v18-in-out) both;
}

::view-transition-new(root) {
  animation: v18-document-new 440ms var(--v18-out) both;
}

@keyframes v18-document-old {
  to { opacity: 0.32; filter: saturate(0.72); }
}

@keyframes v18-document-new {
  from { opacity: 0.28; filter: saturate(0.74); }
  to { opacity: 1; filter: saturate(1); }
}

/* Document exit: quick, directional and interruptible. Header stays still. */
body:not(.page-home) main {
  transform-origin: 50% 24%;
  transition: opacity 190ms var(--v18-in-out), transform 190ms var(--v18-in-out), filter 190ms ease, clip-path 190ms var(--v18-in-out);
}

body.is-route-leaving main {
  pointer-events: none;
}

.route-product.is-route-leaving main { opacity: 0.28; transform: translateX(-1.1rem); }
.route-services.is-route-leaving main { opacity: 0.28; transform: translateX(1.1rem); }
.route-cases.is-route-leaving main { opacity: 0.18; transform: scale(0.992); filter: brightness(0.7); }
.route-progress.is-route-leaving main { opacity: 0.2; clip-path: inset(0 0 0 100%); }
.route-qualifications.is-route-leaving main { opacity: 0.26; transform: perspective(900px) rotateX(-1.2deg); }
.route-contact.is-route-leaving main { opacity: 0.24; transform: translateY(0.7rem); }
.route-privacy.is-route-leaving main { opacity: 0.24; clip-path: inset(0 0 0 18%); }
.route-terms.is-route-leaving main { opacity: 0.22; transform: translateY(-0.45rem); }
.route-refunds.is-route-leaving main { opacity: 0.2; transform: translateY(0.55rem) scale(0.995); }
.route-ip.is-route-leaving main { opacity: 0.18; clip-path: inset(1.5rem); }

html[data-route-direction="back"] body.is-route-leaving main {
  transform: translateX(1rem);
}

/* Hero entrances. The first meaningful content remains readable immediately. */
.js body:not(.page-home) [data-route-hero] [data-hero-copy],
.js body:not(.page-home) [data-route-hero] [data-hero-media],
.js body:not(.page-home) [data-route-hero] .hero__signature {
  transition:
    opacity 620ms ease,
    transform 960ms var(--v18-out),
    clip-path 960ms var(--v18-out),
    filter 960ms var(--v18-out);
}

.js .route-product [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.22;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-3rem);
}

.js .route-product [data-route-hero]:not(.is-open) [data-hero-media] {
  opacity: 0.58;
  clip-path: inset(0 0 0 28%);
  filter: blur(8px) saturate(0.7);
  transform: scale(1.065);
}

.js .route-services [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.22;
  clip-path: inset(0 0 0 100%);
  transform: translateX(3rem);
}

.js .route-services [data-route-hero]:not(.is-open) [data-hero-media] {
  opacity: 0.55;
  filter: brightness(0.5) contrast(1.2);
  transform: translateX(-2rem) scale(1.045);
}

.js .route-cases [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.18;
  clip-path: inset(16% 20%);
  transform: scale(0.955);
}

.js .route-cases [data-route-hero]:not(.is-open) [data-hero-media] {
  opacity: 0.3;
  clip-path: circle(9% at 62% 50%);
  filter: brightness(0.5);
  transform: scale(1.08);
}

.js .route-progress [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.3;
  clip-path: inset(0 0 82% 0);
  transform: translateY(-1.2rem);
}

.js .route-progress [data-route-hero]:not(.is-open) [data-hero-media] {
  opacity: 0.3;
  clip-path: inset(52% 0 48% 0);
  filter: grayscale(1) contrast(1.3);
}

.js .route-qualifications [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.26;
  clip-path: inset(0 0 100% 0);
  transform: perspective(900px) rotateX(-4deg) translateY(-1rem);
  transform-origin: top left;
}

.js .route-contact [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.25;
  transform: translateY(2.4rem);
  filter: blur(5px);
}

.js .route-privacy [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.28;
  clip-path: inset(0 0 0 100%);
  transform: translateX(1.8rem);
}

.js .route-terms [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.3;
  clip-path: inset(100% 0 0 0);
  transform: translateY(1.5rem);
}

.js .route-refunds [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.24;
  transform: translateY(-1.2rem) scale(0.985);
  filter: blur(4px);
}

.js .route-ip [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 0.2;
  clip-path: inset(1.4rem 48% 1.4rem 48%);
  transform: scale(0.98);
}

.js body:not(.page-home) [data-route-hero].is-open [data-hero-copy],
.js body:not(.page-home) [data-route-hero].is-open [data-hero-media],
.js body:not(.page-home) [data-route-hero].is-open .hero__signature {
  opacity: 1;
  clip-path: inset(0);
  filter: none;
  transform: none;
}

.route-product [data-route-hero].is-hero-emphasis [data-hero-copy] { transform: translateX(1rem); }
.route-services [data-route-hero].is-hero-emphasis [data-hero-copy] { transform: translateX(-1rem); }
.route-cases [data-route-hero].is-hero-emphasis [data-hero-media] { filter: brightness(1.12) contrast(1.06); transform: scale(1.018); }
.route-progress [data-route-hero].is-hero-emphasis .hero__signature { transform: scaleX(1.16); }
.route-qualifications [data-route-hero].is-hero-emphasis [data-hero-copy] { transform: perspective(900px) rotateX(1deg); }
.route-contact [data-route-hero].is-hero-emphasis [data-hero-copy] { filter: drop-shadow(0 1rem 2rem rgba(20, 26, 22, 0.2)); transform: translateY(-0.55rem); }
.route-privacy [data-route-hero].is-hero-emphasis [data-hero-copy] { transform: translateX(0.75rem); }
.route-terms [data-route-hero].is-hero-emphasis [data-hero-copy] { letter-spacing: 0.012em; }
.route-refunds [data-route-hero].is-hero-emphasis [data-hero-copy] { transform: scale(1.012); }
.route-ip [data-route-hero].is-hero-emphasis .hero__signature { transform: rotate(1.2deg) scale(1.04); }

/* Shared scene states only establish continuity; the subjects below move differently. */
body:not(.page-home) [data-motion-section] .section-heading {
  transition: opacity 420ms ease, transform 680ms var(--v18-out), filter 680ms var(--v18-out);
}

body:not(.page-home) [data-motion-section].is-next .section-heading {
  opacity: 0.68;
}

body:not(.page-home) [data-motion-section].is-current .section-heading {
  opacity: 1;
  filter: none;
  transform: none;
}

body:not(.page-home) [data-motion-section].is-past .section-heading {
  opacity: 0.62;
}

/* Product — horizontal editorial shelves and lens refocus. */
.js .route-product .section--catalog:not(.is-revealed) .catalog-toolbar,
.js .route-product .section--catalog:not(.is-revealed) .catalog-item {
  opacity: 0.32;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-2.25rem);
}

.route-product .catalog-toolbar,
.route-product .catalog-item {
  transition: opacity 520ms ease, transform 860ms var(--v18-out), clip-path 860ms var(--v18-out);
}

.route-product .section--catalog.is-revealed .catalog-toolbar,
.route-product .section--catalog.is-revealed .catalog-item {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

.route-product .section--catalog.is-revealed .catalog-item:nth-child(2n) {
  transition-delay: 85ms;
}

.route-product .catalog-item__media img {
  transform: scale(1.02);
  transition: transform 820ms var(--v18-out), filter 520ms ease;
}

.route-product .catalog-item:hover .catalog-item__media img,
.route-product .catalog-item:focus-within .catalog-item__media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.065) translateX(0.4%);
}

/* Services — alternating workshop exposures, never a repeated product shelf. */
.js .route-services .section--catalog:not(.is-revealed) .catalog-toolbar {
  opacity: 0.3;
  transform: translateX(2rem);
}

.js .route-services .section--catalog:not(.is-revealed) .catalog-item:nth-child(odd) {
  opacity: 0.28;
  clip-path: inset(0 0 0 100%);
  transform: translateX(2.5rem) skewX(-1deg);
}

.js .route-services .section--catalog:not(.is-revealed) .catalog-item:nth-child(even) {
  opacity: 0.28;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-2rem) skewX(1deg);
}

.route-services .catalog-toolbar,
.route-services .catalog-item {
  transition: opacity 520ms ease, transform 820ms var(--v18-out), clip-path 820ms var(--v18-out), background-color 420ms ease;
}

.route-services .section--catalog.is-revealed .catalog-toolbar,
.route-services .section--catalog.is-revealed .catalog-item {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

.route-services .catalog-item__media img {
  filter: saturate(0.82) contrast(1.04);
  transition: filter 620ms ease, transform 920ms var(--v18-out);
}

.route-services .catalog-item:hover .catalog-item__media img,
.route-services .catalog-item:focus-within .catalog-item__media img {
  filter: saturate(1.12) contrast(1.02);
  transform: scale(1.045) translateY(-0.45%);
}

/* Cases — screening-room aperture. */
.js .route-cases [data-motion-section]:not(.is-revealed) .case-status-grid,
.js .route-cases [data-motion-section]:not(.is-revealed) .demo-flow,
.js .route-cases [data-motion-section]:not(.is-revealed) .authorization-grid {
  opacity: 0.28;
  clip-path: circle(15% at 50% 50%);
  transform: scale(0.965);
}

.route-cases .case-status-grid,
.route-cases .demo-flow,
.route-cases .authorization-grid {
  transition: opacity 620ms ease, transform 1040ms var(--v18-out), clip-path 1040ms var(--v18-out), filter 520ms ease;
}

.route-cases [data-motion-section].is-revealed .case-status-grid,
.route-cases [data-motion-section].is-revealed .demo-flow,
.route-cases [data-motion-section].is-revealed .authorization-grid {
  opacity: 1;
  clip-path: circle(78% at 50% 50%);
  transform: none;
}

.route-cases [data-motion-section].is-current .demo-flow {
  filter: contrast(1.035);
}

/* Progress — evidence scan, horizontal trace and state acknowledgement. */
.route-progress .section--progress-status::after,
.route-progress .section--progress-gates::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--route-accent), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.08);
  transition: opacity 420ms ease, transform 820ms var(--v18-out);
}

.route-progress .section--progress-status,
.route-progress .section--progress-gates {
  position: relative;
}

.route-progress [data-motion-section].is-current::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.js .route-progress [data-motion-section]:not(.is-revealed) .status-item,
.js .route-progress [data-motion-section]:not(.is-revealed) .status-definition-grid article,
.js .route-progress [data-motion-section]:not(.is-revealed) .gate-grid p {
  opacity: 0.32;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-1.6rem);
}

.route-progress .status-item,
.route-progress .status-definition-grid article,
.route-progress .gate-grid p {
  transition: opacity 430ms ease, transform 760ms var(--v18-out), clip-path 760ms var(--v18-out);
}

.route-progress [data-motion-section].is-revealed .status-item,
.route-progress [data-motion-section].is-revealed .status-definition-grid article,
.route-progress [data-motion-section].is-revealed .gate-grid p {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

.route-progress [data-motion-section].is-revealed :is(.status-item, .status-definition-grid article, .gate-grid p):nth-child(2n) { transition-delay: 90ms; }

/* Qualifications — document unfolding and verified-open states. */
.js .route-qualifications [data-motion-section]:not(.is-revealed) .qualification-ledger,
.js .route-qualifications [data-motion-section]:not(.is-revealed) .plain-callout,
.js .route-qualifications [data-motion-section]:not(.is-revealed) .number-list {
  opacity: 0.32;
  clip-path: inset(0 0 100% 0);
  transform: perspective(900px) rotateX(-3deg) translateY(-1rem);
  transform-origin: top center;
}

.route-qualifications .qualification-ledger,
.route-qualifications .plain-callout,
.route-qualifications .number-list {
  transition: opacity 560ms ease, transform 920ms var(--v18-out), clip-path 920ms var(--v18-out);
}

.route-qualifications [data-motion-section].is-revealed :is(.qualification-ledger, .plain-callout, .number-list) {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

.route-qualifications .qualification-group summary {
  transition: padding-left 300ms var(--v18-out), background-color 300ms ease;
}

.route-qualifications .qualification-group[open] summary {
  padding-left: clamp(1rem, 2.4vw, 2rem);
}

/* Contact — dialogue hand-off, input focus and local result opening. */
.js .route-contact [data-motion-section]:not(.is-revealed) .briefing-prep > div:first-child,
.js .route-contact [data-motion-section]:not(.is-revealed) .request-form {
  opacity: 0.28;
  transform: translateX(-2rem);
}

.js .route-contact [data-motion-section]:not(.is-revealed) .briefing-prep > div:last-child,
.js .route-contact [data-motion-section]:not(.is-revealed) .form-context {
  opacity: 0.28;
  transform: translateX(2rem);
}

.route-contact .briefing-prep > div,
.route-contact .request-form,
.route-contact .form-context {
  transition: opacity 520ms ease, transform 840ms var(--v18-out);
}

.route-contact [data-motion-section].is-revealed :is(.briefing-prep > div, .request-form, .form-context) {
  opacity: 1;
  transform: none;
}

.route-contact .form-field {
  position: relative;
}

.route-contact .form-field::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--route-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--v18-out);
}

.route-contact .form-field:focus-within::after {
  transform: scaleX(1);
}

.route-contact .request-form.is-error {
  filter: saturate(1.12);
}

.route-contact [data-copy-summary].is-success {
  border-color: #57755d;
  background: #57755d;
  color: #fff;
}

/* Privacy — quiet lateral veil. */
.js .route-privacy [data-motion-section]:not(.is-revealed) .policy-grid,
.js .route-privacy [data-motion-section]:not(.is-revealed) .grouped-list,
.js .route-privacy [data-motion-section]:not(.is-revealed) .contact-blocked,
.js .route-privacy [data-motion-section]:not(.is-revealed) .disclosure {
  opacity: 0.38;
  clip-path: inset(0 0 0 22%);
  transform: translateX(1.3rem);
}

.route-privacy :is(.policy-grid, .grouped-list, .contact-blocked, .disclosure) {
  transition: opacity 600ms ease, transform 920ms var(--v18-out), clip-path 920ms var(--v18-out);
}

.route-privacy [data-motion-section].is-revealed :is(.policy-grid, .grouped-list, .contact-blocked, .disclosure) {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

/* Terms — contract line progresses down the page. */
.route-terms .number-list--wide::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: var(--route-accent);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1100ms var(--v18-out);
}

.route-terms .number-list--wide {
  position: relative;
}

.route-terms [data-motion-section].is-revealed .number-list--wide::before {
  transform: scaleY(1);
}

.js .route-terms [data-motion-section]:not(.is-revealed) .number-list li,
.js .route-terms [data-motion-section]:not(.is-revealed) .responsibility-grid article,
.js .route-terms [data-motion-section]:not(.is-revealed) .boundary-notes p,
.js .route-terms [data-motion-section]:not(.is-revealed) .disclosure {
  opacity: 0.32;
  transform: translateY(1.4rem);
}

.route-terms :is(.number-list li, .responsibility-grid article, .boundary-notes p, .disclosure) {
  transition: opacity 520ms ease, transform 780ms var(--v18-out), clip-path 780ms var(--v18-out);
}

.route-terms [data-motion-section].is-revealed :is(.number-list li, .responsibility-grid article, .boundary-notes p, .disclosure) {
  opacity: 1;
  transform: none;
}

.route-terms [data-motion-section].is-revealed :is(.number-list li, .boundary-notes p):nth-child(2n) { transition-delay: 85ms; }

/* Refunds — timeline grows and each milestone pulses once. */
.route-refunds .refund-timeline::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1200ms var(--v18-out);
}

.route-refunds [data-motion-section].is-revealed .refund-timeline::before {
  transform: scaleY(1);
}

.js .route-refunds [data-motion-section]:not(.is-revealed) .refund-timeline article,
.js .route-refunds [data-motion-section]:not(.is-revealed) .grouped-list > div,
.js .route-refunds [data-motion-section]:not(.is-revealed) .contact-blocked {
  opacity: 0.28;
  transform: translateY(2rem) scale(0.99);
}

.route-refunds :is(.refund-timeline article, .grouped-list > div, .contact-blocked) {
  transition: opacity 560ms ease, transform 900ms var(--v18-out);
}

.route-refunds [data-motion-section].is-revealed :is(.refund-timeline article, .grouped-list > div, .contact-blocked) {
  opacity: 1;
  transform: none;
}

.route-refunds [data-motion-section].is-current .refund-timeline article::before {
  animation: v18-refund-pulse 900ms var(--v18-out) both;
}

@keyframes v18-refund-pulse {
  35% { box-shadow: 0 0 0 0.7rem color-mix(in srgb, var(--route-accent) 18%, transparent); }
  100% { box-shadow: 0 0 0 1.25rem transparent; }
}

/* Intellectual property — registration frame and assembling rights tiles. */
.js .route-ip [data-motion-section]:not(.is-revealed) .policy-grid article:nth-child(odd),
.js .route-ip [data-motion-section]:not(.is-revealed) .plain-callout,
.js .route-ip [data-motion-section]:not(.is-revealed) .contact-blocked {
  opacity: 0.24;
  clip-path: inset(1.25rem 52% 1.25rem 48%);
  transform: translateX(-1rem);
}

.js .route-ip [data-motion-section]:not(.is-revealed) .policy-grid article:nth-child(even) {
  opacity: 0.24;
  clip-path: inset(1.25rem 48% 1.25rem 52%);
  transform: translateX(1rem);
}

.route-ip :is(.policy-grid article, .plain-callout, .contact-blocked) {
  transition: opacity 560ms ease, transform 920ms var(--v18-out), clip-path 920ms var(--v18-out);
}

.route-ip [data-motion-section].is-revealed :is(.policy-grid article, .plain-callout, .contact-blocked) {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

/* Open and pressed feedback never blocks the underlying control. */
.disclosure summary::after,
.qualification-group summary::after {
  transition: transform 360ms var(--v18-out), color 240ms ease;
}

.disclosure.is-open summary::after,
.qualification-group.is-open summary::after,
.qualification-group[open] summary::after {
  transform: rotate(45deg);
}

@media (max-width: 1120px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .site-header .desktop-nav {
    display: none;
  }

  .site-header .menu-toggle {
    display: grid;
    align-content: center;
    gap: 0.16rem;
  }

  .site-header .menu-toggle > span {
    display: inline;
    font-size: 0.8rem;
  }

  .site-header .menu-toggle i,
  .site-header .menu-toggle i::after {
    width: 1.5rem;
    height: 1px;
    display: block;
    margin-left: auto;
    background: currentColor;
    content: "";
    transition: transform 220ms var(--v18-out);
  }

  .site-header .menu-toggle i::before {
    display: none;
  }

  .site-header .menu-toggle i::after {
    transform: translateY(0.38rem);
  }

  .site-header .menu-toggle[aria-expanded="true"] i {
    background: currentColor;
    transform: translateY(0.2rem) rotate(45deg);
  }

  .site-header .menu-toggle[aria-expanded="true"] i::after {
    top: auto;
    transform: rotate(-90deg);
  }

  .mobile-menu {
    top: var(--header-height);
    bottom: 0;
    height: calc(100dvh - var(--header-height));
    padding: 1.5rem max(var(--v18-gutter), env(safe-area-inset-right, 0px)) calc(3rem + env(safe-area-inset-bottom, 0px)) max(var(--v18-gutter), env(safe-area-inset-left, 0px));
    background: #eee7da;
    color: #171b17;
  }

  .mobile-menu a {
    min-height: 3.8rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(23, 27, 23, 0.2);
    font-family: var(--font-sans, "Noto Sans SC", "Microsoft YaHei UI", system-ui, sans-serif);
    font-size: 1.12rem;
    letter-spacing: 0;
  }

  .mobile-menu a[aria-current="page"]::after {
    color: #9d3217;
    font-size: 0.74rem;
    content: "当前";
  }

  .mobile-menu:not([hidden]) {
    animation: v18-menu-in 420ms var(--v18-out) both;
  }

  .mobile-menu:not([hidden]) a {
    animation: v18-menu-link-in 420ms var(--v18-out) both;
  }

  .mobile-menu:not([hidden]) a:nth-child(2) { animation-delay: 35ms; }
  .mobile-menu:not([hidden]) a:nth-child(3) { animation-delay: 70ms; }
  .mobile-menu:not([hidden]) a:nth-child(4) { animation-delay: 105ms; }
  .mobile-menu:not([hidden]) a:nth-child(5) { animation-delay: 140ms; }
  .mobile-menu:not([hidden]) a:nth-child(6) { animation-delay: 175ms; }
  .mobile-menu:not([hidden]) a:nth-child(7) { animation-delay: 210ms; }
  .mobile-menu:not([hidden]) a:nth-child(8) { animation-delay: 245ms; }

  .mobile-menu.is-closing {
    animation: v18-menu-out 240ms var(--v18-in-out) both;
  }

  .mobile-menu.is-closing a {
    animation: none;
    opacity: 0.44;
  }
}

@keyframes v18-menu-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes v18-menu-out {
  from { opacity: 1; clip-path: inset(0); }
  to { opacity: 0; clip-path: inset(0 0 100% 0); }
}

@keyframes v18-menu-link-in {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: min(calc(100% - 2.5rem), var(--v18-shell));
  }

  body:not(.page-home) [data-motion-section].is-next .section-heading,
  body:not(.page-home) [data-motion-section].is-past .section-heading {
    opacity: 0.82;
  }

  .route-cases [data-motion-section].is-revealed .case-status-grid,
  .route-cases [data-motion-section].is-revealed .demo-flow,
  .route-cases [data-motion-section].is-revealed .authorization-grid {
    clip-path: inset(0);
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: calc(4.25rem + env(safe-area-inset-top, 0px));
    --v18-gutter: clamp(1.15rem, 5vw, 1.6rem);
  }

  .site-header__inner {
    width: min(calc(100% - (2 * var(--v18-gutter))), var(--v18-shell));
  }

  .site-header .wordmark {
    font-size: 1.22rem;
  }
}

@media (update: none) {
  .site-header,
  .site-header *,
  body:not(.page-home) main,
  body:not(.page-home) [data-route-hero] *,
  body:not(.page-home) [data-motion-section] *,
  body:not(.page-home) [data-motion-section]::after,
  .refund-timeline::before,
  .refund-timeline article::before,
  .number-list--wide::before {
    animation: none !important;
    transition: none !important;
  }

  body:not(.page-home) [data-route-hero] *,
  body:not(.page-home) [data-motion-section] * {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }

  .site-header.is-hidden {
    transform: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-group(sf-header) {
    animation-duration: 1ms !important;
  }
}


/* source: visual-refinement.css */
/* Senfan V19 — editorial refinement pass.
   This layer deliberately changes composition, not business facts or routes. */

:root {
  --v19-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v19-ink: #171a17;
  --v19-paper: #ece9e1;
}

/* Qualification register — a living verification ledger, never a card grid. */
.route-qualifications .qualification-ledger {
  counter-reset: qualification-group;
}

.route-qualifications .qualification-group {
  counter-increment: qualification-group;
}

.route-qualifications .qualification-group summary {
  position: relative;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(10rem, auto);
  min-height: clamp(7.5rem, 11vw, 10rem);
  padding: 1.75rem 0;
  isolation: isolate;
  transition: padding 460ms var(--v19-ease-out), color 240ms ease, background-color 300ms ease;
}

.route-qualifications .qualification-group summary::before {
  align-self: start;
  color: rgba(239, 237, 230, 0.42);
  content: "0" counter(qualification-group);
  font: 500 0.68rem/1 var(--font-sans);
  grid-column: 1;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.route-qualifications .qualification-group summary > span:first-child {
  grid-column: 1;
  transition: transform 460ms var(--v19-ease-out), letter-spacing 460ms var(--v19-ease-out);
}

.route-qualifications .qualification-group summary > .status {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.route-qualifications .qualification-group summary small {
  align-self: center;
  color: rgba(239, 237, 230, 0.62);
  cursor: pointer;
  grid-column: 3;
  grid-row: 1 / span 2;
  letter-spacing: 0.08em;
  text-align: right;
}

/* V18's generic plus rotation must not rotate this full-width progress rule. */
.route-qualifications .qualification-group summary::after,
.route-qualifications .qualification-group.is-open summary::after,
.route-qualifications .qualification-group[open] summary::after {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 1.25rem;
  transform: scaleX(0.075) rotate(0deg);
  transform-origin: left center;
  transition: transform 720ms var(--v19-ease-out);
}

.route-qualifications .qualification-group.is-open summary::after,
.route-qualifications .qualification-group[open] summary::after {
  transform: scaleX(1) rotate(0deg);
}

.route-qualifications .qualification-group summary:hover,
.route-qualifications .qualification-group summary:focus-visible {
  background: linear-gradient(90deg, rgba(239, 237, 230, 0.055), transparent 68%);
  outline: 0;
  padding-inline: clamp(0.75rem, 1.8vw, 1.5rem);
}

.route-qualifications .qualification-group summary:hover > span:first-child,
.route-qualifications .qualification-group summary:focus-visible > span:first-child {
  letter-spacing: 0.015em;
  transform: translateX(0.35rem);
}

.route-qualifications .qualification-group__records {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 0 clamp(3rem, 8vw, 8rem);
  padding: 1rem clamp(0rem, 2vw, 1.5rem) clamp(4rem, 8vw, 7rem);
}

.route-qualifications .qualification-group__records article {
  min-height: 16rem;
  padding: clamp(2.4rem, 4vw, 4rem) 0;
}

.route-qualifications .qualification-group__records article:nth-child(even) {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.route-qualifications .qualification-group__records h3 {
  max-width: 13ch;
}

/* Contact — light arriving across a work surface, with a quiet human focal zone. */
.route-contact .hero--contact {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 79% 43%, rgba(255, 255, 255, 0.86) 0 7%, rgba(255, 255, 255, 0.26) 25%, transparent 48%),
    linear-gradient(104deg, #ece9e0 0 56%, #dfe2da 56.2% 100%);
}

.route-contact .hero--contact::before {
  z-index: 0;
  inset: -18% -8% -18% auto;
  width: min(46rem, 52vw);
  height: auto;
  border: 0;
  border-left: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: 0;
  background:
    linear-gradient(143deg, transparent 0 40%, rgba(255, 255, 255, 0.58) 40.2% 57%, transparent 57.2%),
    repeating-linear-gradient(90deg, transparent 0 5.8rem, rgba(23, 26, 23, 0.05) 5.85rem 5.9rem);
  box-shadow: none;
  filter: none;
  opacity: 0.88;
  transform: none;
}

.route-contact .hero--contact::after {
  z-index: 1;
  right: clamp(2rem, 9vw, 9rem);
  bottom: 16%;
  width: min(32rem, 38vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 85, 50, 0.9), transparent);
  opacity: 0.68;
  transform: rotate(-6deg);
}

.route-contact .hero--contact .hero__copy {
  z-index: 2;
  width: min(58rem, 66vw);
}

.route-contact .hero--contact h1 {
  max-width: 8ch;
  text-wrap: balance;
}

.route-contact .hero__signature--contact {
  z-index: 2;
  opacity: 0.72;
}

/* Privacy — an editorial data path instead of a matrix of grey cards. */
.route-privacy .section--privacy-data .section-heading {
  position: static;
}

.route-privacy .section--privacy-data .policy-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 3vw, 3rem);
  counter-reset: privacy-item;
}

.route-privacy .section--privacy-data .policy-grid article,
.route-privacy .section--privacy-data .policy-grid article:first-child,
.route-privacy .section--privacy-data .policy-grid article:nth-child(2n),
.route-privacy .section--privacy-data .policy-grid article:nth-child(n) {
  position: relative;
  min-height: 0;
  padding: clamp(2.25rem, 4vw, 4rem) 0 clamp(3rem, 6vw, 6rem);
  transform: none;
  border: 0;
  border-top: 1px solid rgba(23, 32, 34, 0.24);
  background: transparent;
  counter-increment: privacy-item;
}

.route-privacy .section--privacy-data .policy-grid article::before {
  position: absolute;
  top: 1rem;
  right: 0;
  color: rgba(23, 32, 34, 0.42);
  content: "0" counter(privacy-item);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.route-privacy .section--privacy-data .policy-grid article:nth-child(1) {
  grid-column: 1 / 10;
  min-height: clamp(22rem, 32vw, 31rem);
  padding-right: clamp(2rem, 12vw, 12rem);
}

.route-privacy .section--privacy-data .policy-grid article:nth-child(2) {
  grid-column: 7 / 13;
}

.route-privacy .section--privacy-data .policy-grid article:nth-child(3) {
  grid-column: 1 / 6;
}

.route-privacy .section--privacy-data .policy-grid article:nth-child(4) {
  grid-column: 4 / 11;
}

.route-privacy .section--privacy-data .policy-grid h3 {
  max-width: 12ch;
  margin-bottom: clamp(2rem, 5vw, 5rem);
  font-size: clamp(1.9rem, 3.7vw, 4rem);
  line-height: 1.12;
}

.route-privacy .section--privacy-data .policy-grid article:first-child h3 {
  font-size: clamp(3rem, 6vw, 6.7rem);
}

.route-privacy .section--privacy-fields .grouped-list {
  display: block;
  max-width: 70rem;
  margin-left: auto;
}

.route-privacy .section--privacy-fields .grouped-list > div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.72fr) minmax(0, 1.28fr);
  min-height: 0;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border: 0;
  border-top: 1px solid rgba(23, 32, 34, 0.23);
}

.route-privacy .section--privacy-fields .grouped-list h3,
.route-privacy .section--privacy-fields .grouped-list p {
  margin: 0;
}

/* Terms — a negotiated sequence with alternating breathing room. */
.route-terms .section--terms-process .number-list--wide {
  display: block;
  max-width: 66rem;
  margin-left: auto;
  padding-left: 0;
}

.route-terms .section--terms-process .number-list--wide li,
.route-terms .section--terms-process .number-list--wide li:nth-child(n) {
  display: grid;
  grid-template-columns: clamp(3.5rem, 7vw, 7rem) minmax(0, 1fr);
  width: 88%;
  min-height: clamp(9rem, 16vw, 14rem);
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border: 0;
  border-top: 1px solid rgba(24, 26, 24, 0.24);
  background: transparent;
}

.route-terms .section--terms-process .number-list--wide li:nth-child(even) {
  margin-left: 12%;
}

.route-terms .section--terms-process .number-list--wide li::before {
  color: rgba(194, 79, 49, 0.82);
  font: 500 clamp(0.75rem, 1vw, 0.9rem)/1 var(--font-sans);
  letter-spacing: 0.16em;
}

.route-terms .section--terms-process .number-list--wide li > * {
  align-self: start;
}

/* Refunds — one continuous decision route, without a singled-out filled card. */
.route-refunds .section--refund-principles .refund-timeline {
  display: block;
  grid-template-columns: none;
  gap: 0;
  max-width: 68rem;
  margin-left: auto;
  padding-left: clamp(3rem, 7vw, 7rem);
}

.route-refunds .section--refund-principles .refund-timeline article,
.route-refunds .section--refund-principles .refund-timeline article:nth-child(2n),
.route-refunds .section--refund-principles .refund-timeline article:nth-child(n) {
  width: 86%;
  min-height: clamp(12rem, 20vw, 18rem);
  margin: 0;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  transform: none;
  border: 0;
  border-top: 1px solid rgba(28, 30, 28, 0.23);
  background: transparent;
}

.route-refunds .section--refund-principles .refund-timeline article:nth-child(even) {
  margin-left: 14%;
}

.route-refunds .section--refund-principles .refund-timeline article:nth-child(2) {
  background: transparent;
}

/* Intellectual property — ownership points arranged as a provenance field. */
.route-ip .section--ip-boundary .policy-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 8rem) clamp(1.5rem, 3vw, 3rem);
  border-top: 0;
  background: transparent;
  counter-reset: ip-item;
}

.route-ip .section--ip-boundary .policy-grid article,
.route-ip .section--ip-boundary .policy-grid article:first-child,
.route-ip .section--ip-boundary .policy-grid article:nth-child(2n),
.route-ip .section--ip-boundary .policy-grid article:nth-child(n) {
  position: relative;
  min-height: clamp(17rem, 27vw, 25rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  transform: none;
  border: 0;
  border-top: 1px solid rgba(235, 233, 226, 0.19);
  background: transparent;
  color: #eeeae3;
  counter-increment: ip-item;
}

.route-ip .section--ip-boundary .policy-grid article::before {
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: rgba(235, 233, 226, 0.4);
  content: "0" counter(ip-item);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.route-ip .section--ip-boundary .policy-grid article:nth-child(1) {
  grid-column: 1 / 6;
  min-height: clamp(24rem, 39vw, 36rem);
}

.route-ip .section--ip-boundary .policy-grid article:nth-child(2) {
  grid-column: 7 / 13;
  margin-top: clamp(5rem, 10vw, 10rem);
}

.route-ip .section--ip-boundary .policy-grid article:nth-child(3) {
  grid-column: 3 / 8;
}

.route-ip .section--ip-boundary .policy-grid article:nth-child(4) {
  grid-column: 8 / 13;
  margin-top: clamp(2rem, 6vw, 6rem);
}

.route-ip .section--ip-boundary .policy-grid h3 {
  max-width: 11ch;
  margin-bottom: clamp(2.5rem, 6vw, 6rem);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.1;
}

/* Keyboard and pointer feedback stays visible without decorative overlays. */
.qualification-group summary:focus-visible,
.page-legal .legal-reader-nav a:focus-visible {
  outline: 2px solid var(--route-accent, #c45532);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .route-contact .hero--contact .hero__copy {
    width: min(100%, 46rem);
  }

  .route-contact .hero--contact::before {
    width: 52vw;
    opacity: 0.58;
  }

  .route-privacy .section--privacy-data .policy-grid article:nth-child(n),
  .route-ip .section--ip-boundary .policy-grid article:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .route-privacy .section--privacy-data .policy-grid article:nth-child(2),
  .route-ip .section--ip-boundary .policy-grid article:nth-child(even) {
    margin-left: 14%;
  }

  .route-privacy .section--privacy-data .policy-grid article:nth-child(odd),
  .route-ip .section--ip-boundary .policy-grid article:nth-child(odd) {
    margin-right: 14%;
  }
}

@media (max-width: 720px) {
  .route-qualifications .qualification-group summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    gap: 0.75rem 1rem;
    padding: 1.7rem 0;
  }

  .route-qualifications .qualification-group summary::before {
    grid-column: 1;
  }

  .route-qualifications .qualification-group summary > span:first-child {
    grid-column: 1 / -1;
    font-size: clamp(1.6rem, 8.5vw, 2.25rem);
  }

  .route-qualifications .qualification-group summary > .status {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .route-qualifications .qualification-group summary small {
    grid-column: 2;
    grid-row: auto;
    font-size: 0.68rem;
  }

  .route-qualifications .qualification-group__records {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 3rem;
  }

  .route-qualifications .qualification-group__records article,
  .route-qualifications .qualification-group__records article:nth-child(even) {
    min-height: 0;
    margin-top: 0;
    padding: 2.5rem 0;
  }

  .route-contact .hero--contact {
    background:
      radial-gradient(ellipse at 86% 30%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12) 38%, transparent 55%),
      linear-gradient(108deg, #ece9e0 0 72%, #dfe2da 72.2% 100%);
  }

  .route-contact .hero--contact::before {
    inset: 0 -36% 0 auto;
    width: 85vw;
    opacity: 0.42;
  }

  .route-contact .hero--contact::after {
    right: 8vw;
    bottom: 13%;
    width: 52vw;
  }

  .route-contact .hero--contact .hero__copy {
    width: 100%;
  }

  .route-privacy .section--privacy-data .policy-grid,
  .route-ip .section--ip-boundary .policy-grid {
    display: block;
  }

  .route-privacy .section--privacy-data .policy-grid article,
  .route-privacy .section--privacy-data .policy-grid article:first-child,
  .route-privacy .section--privacy-data .policy-grid article:nth-child(n),
  .route-ip .section--ip-boundary .policy-grid article,
  .route-ip .section--ip-boundary .policy-grid article:first-child,
  .route-ip .section--ip-boundary .policy-grid article:nth-child(n) {
    min-height: 0;
    margin: 0;
    padding: 2.4rem 0 4.5rem;
  }

  .route-privacy .section--privacy-data .policy-grid article:first-child h3,
  .route-privacy .section--privacy-data .policy-grid h3,
  .route-ip .section--ip-boundary .policy-grid h3 {
    max-width: 10ch;
    margin-bottom: 2.5rem;
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .route-privacy .section--privacy-fields .grouped-list > div {
    display: block;
    padding: 2.5rem 0 3.5rem;
  }

  .route-privacy .section--privacy-fields .grouped-list h3 {
    margin-bottom: 1.25rem;
  }

  .route-terms .section--terms-process .number-list--wide li,
  .route-terms .section--terms-process .number-list--wide li:nth-child(n),
  .route-refunds .section--refund-principles .refund-timeline article,
  .route-refunds .section--refund-principles .refund-timeline article:nth-child(n) {
    width: 100%;
    min-height: 0;
    margin-left: 0;
  }

  .route-refunds .section--refund-principles .refund-timeline {
    padding-left: 2.25rem;
  }
}

@media (update: none) {
  .route-qualifications .qualification-group summary,
  .route-qualifications .qualification-group summary::after,
  .route-qualifications .qualification-group summary > span:first-child {
    transition: none;
  }
}


/* source: transitions.css */
/* Senfan V20 — route-specific section seams.
   Every transition is owned by the incoming section, so scrolling stays native
   and content remains available before, during and after the decorative motion. */

:root {
  --v20-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v20-seam-height: clamp(4.5rem, 8vw, 8rem);
}

.section > .shell,
.final-cta > .shell {
  position: relative;
  z-index: 2;
}

.section-seam {
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 0;
  left: 0;
  height: var(--v20-seam-height);
  overflow: hidden;
  pointer-events: none;
}

.section-seam i {
  position: absolute;
  display: block;
  pointer-events: none;
  transform-origin: left center;
  transition:
    opacity 480ms ease,
    transform 960ms var(--v20-out);
}

.page-home .section-seam {
  display: none;
}

.js body:not(.page-home) [data-motion-section]:not(.is-revealed) > .section-seam i {
  opacity: 0.32;
}

.js body:not(.page-home) [data-motion-section]:not(.is-revealed) > .section-seam i:first-child {
  transform: translateY(-12%) scaleX(0.78);
}

body:not(.page-home) [data-motion-section].is-revealed > .section-seam i {
  opacity: 1;
  transform: none;
}

/* Product — a film splice becomes an editorial shelf. */
.route-product .section-seam {
  --seam-from: #0b100e;
  --seam-accent: #d25430;
}

.route-product .section-seam i:nth-child(1) {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(255, 255, 255, 0.055) 67% 67.12%, transparent 67.12%),
    var(--seam-from);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 74% 18%, 69% 74%, 0 42%);
}

.route-product .section-seam i:nth-child(2) {
  top: 0;
  right: 8vw;
  width: min(22rem, 31vw);
  height: 74%;
  border-right: 1px solid color-mix(in srgb, var(--seam-accent) 82%, transparent);
  transform-origin: top;
}

.route-product .section-seam i:nth-child(3) {
  top: 42%;
  right: 0;
  width: 36vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--seam-accent));
}

.route-product .final-cta .section-seam {
  --seam-from: #e8e5dc;
}

.route-product .final-cta .section-seam i:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% 24%, 62% 24%, 57% 78%, 0 52%);
}

/* Services — a soft studio exposure opens between workshop scenes. */
.route-services .section-seam {
  --seam-from: #080c0b;
  --seam-light: rgba(214, 187, 128, 0.26);
}

.route-services .section-seam i:nth-child(1) {
  inset: 0;
  background:
    radial-gradient(ellipse at 77% -20%, var(--seam-light), transparent 48%),
    linear-gradient(180deg, var(--seam-from) 0 12%, color-mix(in srgb, var(--seam-from) 72%, transparent) 44%, transparent 100%);
  clip-path: ellipse(92% 80% at 50% 0%);
}

.route-services .section-seam i:nth-child(2) {
  top: 0;
  left: 14%;
  width: 1px;
  height: 74%;
  background: linear-gradient(var(--seam-light), transparent);
}

.route-services .section-seam i:nth-child(3) {
  top: 0;
  right: 13%;
  width: min(18rem, 24vw);
  height: 78%;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.09), transparent 68%);
  filter: blur(0.2rem);
}

.route-services .final-cta .section-seam {
  --seam-from: #ddd5c8;
  --seam-light: rgba(208, 183, 127, 0.3);
}

/* Cases — screening-room shutter and frame line. */
.route-cases .section-seam {
  --seam-from: #070a09;
  --seam-accent: #c65231;
}

.route-cases .section-seam i:nth-child(1) {
  inset: 0;
  background: var(--seam-from);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 68% 20%, 63% 62%, 37% 62%, 32% 20%, 0 20%);
}

.route-cases .section-seam i:nth-child(2) {
  top: 23%;
  right: 5vw;
  left: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 236, 230, 0.34) 14% 86%, transparent);
}

.route-cases .section-seam i:nth-child(3) {
  top: 15%;
  left: 50%;
  width: clamp(0.45rem, 0.8vw, 0.7rem);
  aspect-ratio: 1;
  border: 1px solid var(--seam-accent);
  transform: translateX(-50%) rotate(45deg);
}

.route-cases .section--cases-demo .section-seam {
  --seam-from: #d7d5cd;
}

.route-cases .section--cases-authorization .section-seam {
  --seam-from: #090d0b;
}

.route-cases .final-cta .section-seam {
  --seam-from: #252b26;
}

/* Progress — one status line crosses the boundary and resolves into ticks. */
.route-progress .section-seam {
  --seam-from: #0b100e;
  --seam-accent: #ca5532;
}

.route-progress .section-seam i:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 56%;
  background: linear-gradient(to bottom, var(--seam-from), color-mix(in srgb, var(--seam-from) 62%, transparent), transparent);
}

.route-progress .section-seam i:nth-child(2) {
  top: 34%;
  right: 7vw;
  left: 7vw;
  height: 1px;
  background: linear-gradient(90deg, var(--seam-accent), rgba(23, 26, 24, 0.24) 36%, transparent 92%);
}

.route-progress .section-seam i:nth-child(3) {
  top: calc(34% - 0.28rem);
  left: 7vw;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--seam-accent);
  box-shadow: 29vw 0 0 -0.11rem rgba(202, 85, 50, 0.7), 58vw 0 0 -0.16rem rgba(23, 26, 24, 0.4);
}

.route-progress .section--progress-method .section-seam {
  --seam-from: #e9e8e2;
}

.route-progress .section--progress-gates .section-seam {
  --seam-from: #121916;
}

.route-progress .final-cta .section-seam {
  --seam-from: #d7d2c4;
}

/* Qualifications — one paper sheet folds into the next verification layer. */
.route-qualifications .section-seam {
  --seam-from: #e8e5dc;
  --seam-fold: rgba(255, 255, 255, 0.46);
  --seam-accent: #c75431;
}

.route-qualifications .section-seam i:nth-child(1) {
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 60%, var(--seam-fold) 60.2% 70%, transparent 70.2%),
    var(--seam-from);
  clip-path: polygon(0 0, 100% 0, 100% 11%, 70% 11%, 62% 86%, 0 42%);
}

.route-qualifications .section-seam i:nth-child(2) {
  top: 0;
  left: 62%;
  width: 1px;
  height: 78%;
  background: linear-gradient(var(--seam-accent), transparent);
  transform: rotate(7deg);
  transform-origin: top;
}

.route-qualifications .section-seam i:nth-child(3) {
  top: 35%;
  left: 7vw;
  width: min(14rem, 24vw);
  height: 1px;
  background: linear-gradient(90deg, var(--seam-accent), transparent);
}

.route-qualifications .section--qualifications-boundary .section-seam {
  --seam-from: #111714;
  --seam-fold: rgba(239, 237, 230, 0.08);
}

.route-qualifications .section--qualifications-check .section-seam {
  --seam-from: #d7d3c8;
  --seam-fold: rgba(255, 255, 255, 0.42);
}

.route-qualifications .final-cta .section-seam {
  --seam-from: #202822;
  --seam-fold: rgba(239, 237, 230, 0.07);
}

/* Contact — two conversation fields overlap before the next step starts. */
.route-contact .section-seam {
  --seam-from: #ece9e0;
  --seam-accent: #c44f2e;
}

.route-contact .section-seam i:nth-child(1) {
  top: -58%;
  left: -7%;
  width: 72%;
  height: 122%;
  border-radius: 0 0 58% 42%;
  background: var(--seam-from);
  transform: rotate(1.4deg);
}

.route-contact .section-seam i:nth-child(2) {
  top: -68%;
  right: -9%;
  width: 58%;
  height: 118%;
  border-radius: 0 0 36% 64%;
  background: color-mix(in srgb, var(--seam-from) 78%, transparent);
  transform: rotate(-2deg);
}

.route-contact .section-seam i:nth-child(3) {
  top: 43%;
  left: 48%;
  width: min(22rem, 32vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--seam-accent), transparent);
  transform: rotate(-4deg);
}

.route-contact .section--contact-form .section-seam {
  --seam-from: #111714;
}

.route-contact .section--contact-channel .section-seam {
  --seam-from: #eceae3;
}

/* Privacy — a translucent data veil slides between light and dark fields. */
.route-privacy .section-seam {
  --seam-from: #dce8e7;
  --seam-accent: #4d7b78;
}

.route-privacy .section-seam i:nth-child(1) {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 9.8%, rgba(23, 32, 32, 0.065) 9.9% 10%),
    linear-gradient(180deg, var(--seam-from) 0 12%, color-mix(in srgb, var(--seam-from) 76%, transparent) 58%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 24%, 78% 24%, 65% 82%, 0 50%);
}

.route-privacy .section-seam i:nth-child(2) {
  top: 0;
  left: 65%;
  width: 1px;
  height: 77%;
  background: linear-gradient(var(--seam-accent), transparent);
  transform: rotate(11deg);
  transform-origin: top;
}

.route-privacy .section-seam i:nth-child(3) {
  top: 27%;
  right: 5vw;
  width: 22vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--seam-accent) 76%, transparent));
}

.route-privacy .section--privacy-fields .section-seam {
  --seam-from: #172220;
  --seam-accent: #7aa6a0;
}

.route-privacy .section--privacy-rights .section-seam {
  --seam-from: #e3e8e5;
}

.route-privacy .section--privacy-updates .section-seam {
  --seam-from: #39504a;
  --seam-accent: #9bc0b8;
}

/* Terms — page corners turn without pretending to be a literal document. */
.route-terms .section-seam {
  --seam-from: #e8e2d7;
  --seam-accent: #c34f31;
}

.route-terms .section-seam i:nth-child(1) {
  inset: 0;
  background: var(--seam-from);
  clip-path: polygon(0 0, 100% 0, 100% 17%, 83% 17%, 78% 62%, 18% 62%, 12% 34%, 0 34%);
}

.route-terms .section-seam i:nth-child(2) {
  top: 16%;
  right: 10vw;
  width: clamp(3.4rem, 7vw, 6rem);
  aspect-ratio: 1;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.44) 0 49%, transparent 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.route-terms .section-seam i:nth-child(3) {
  top: 44%;
  left: 8vw;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, var(--seam-accent), transparent);
}

.route-terms .section--terms-responsibility .section-seam {
  --seam-from: #eeeae1;
}

.route-terms .section--terms-boundary .section-seam {
  --seam-from: #1c231f;
}

.route-terms .section--terms-acceptance .section-seam {
  --seam-from: #d6cfc2;
}

.route-terms .section--terms-review .section-seam {
  --seam-from: #efede6;
}

/* Refunds — a decision loop crosses the boundary, then opens again. */
.route-refunds .section-seam {
  --seam-from: #111614;
  --seam-accent: #c45532;
}

.route-refunds .section-seam i:nth-child(1) {
  inset: 0;
  background: linear-gradient(to bottom, var(--seam-from) 0 11%, color-mix(in srgb, var(--seam-from) 70%, transparent) 54%, transparent 100%);
  clip-path: ellipse(83% 73% at 50% 0);
}

.route-refunds .section-seam i:nth-child(2) {
  top: -64%;
  right: 8vw;
  width: min(28rem, 38vw);
  aspect-ratio: 1.8;
  border: 1px solid color-mix(in srgb, var(--seam-accent) 62%, transparent);
  border-radius: 50%;
}

.route-refunds .section-seam i:nth-child(3) {
  top: 42%;
  right: calc(8vw + min(27rem, 37vw));
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--seam-accent);
}

.route-refunds .section--refund-request .section-seam {
  --seam-from: #dedbd2;
}

.route-refunds .section--refund-channel .section-seam {
  --seam-from: #202721;
}

/* Intellectual property — crop marks assemble into a rights frame. */
.route-ip .section-seam {
  --seam-from: #080c0b;
  --seam-accent: #d05a37;
}

.route-ip .section-seam i:nth-child(1) {
  inset: 0;
  background: var(--seam-from);
  clip-path: polygon(0 0, 100% 0, 100% 13%, 71% 13%, 66% 66%, 34% 66%, 29% 28%, 0 28%);
}

.route-ip .section-seam i:nth-child(2) {
  top: 18%;
  right: 8vw;
  width: min(27rem, 36vw);
  height: 48%;
  border-top: 1px solid rgba(238, 234, 227, 0.28);
  border-right: 1px solid var(--seam-accent);
}

.route-ip .section-seam i:nth-child(3) {
  top: 31%;
  right: calc(8vw + min(26.6rem, 35.5vw));
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid var(--seam-accent);
}

.route-ip .section--ip-software .section-seam {
  --seam-from: #111714;
}

.route-ip .section--ip-notice .section-seam {
  --seam-from: #d8d1c3;
}

/* Footer hand-off: each route keeps its final material for one last breath. */
body:not(.page-home) .site-footer {
  position: relative;
  isolation: isolate;
}

body:not(.page-home) .site-footer::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(3.5rem, 6vw, 6rem);
  background: linear-gradient(180deg, var(--footer-seam, #0b0e0c), color-mix(in srgb, var(--footer-seam, #0b0e0c) 54%, transparent), transparent);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 76% 18%, 69% 68%, 31% 68%, 23% 32%, 0 32%);
  content: "";
  pointer-events: none;
}

body:not(.page-home) .site-footer > * {
  position: relative;
  z-index: 1;
}

.route-product { --footer-seam: #0b100e; }
.route-services { --footer-seam: #090d0b; }
.route-cases { --footer-seam: #d0cdc4; }
.route-progress { --footer-seam: #0b100e; }
.route-qualifications { --footer-seam: #e8e5dc; }
.route-contact { --footer-seam: #252c27; }
.route-privacy { --footer-seam: #edf0ec; }
.route-terms { --footer-seam: #343b35; }
.route-refunds { --footer-seam: #d2cbbb; }
.route-ip { --footer-seam: #263029; }

@media (max-width: 720px) {
  :root {
    --v20-seam-height: clamp(3.5rem, 18vw, 5rem);
  }

  .section-seam i:nth-child(2),
  .section-seam i:nth-child(3) {
    opacity: 0.68;
  }

  .route-product .section-seam i:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 78% 20%, 68% 70%, 0 44%);
  }

  .route-services .section-seam i:nth-child(1) {
    clip-path: ellipse(118% 78% at 50% 0%);
  }

  .route-cases .section-seam i:nth-child(1),
  .route-ip .section-seam i:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 22%, 72% 22%, 66% 58%, 34% 58%, 28% 22%, 0 22%);
  }

  .route-contact .section-seam i:nth-child(1) {
    width: 84%;
  }

  .route-contact .section-seam i:nth-child(2) {
    width: 72%;
  }

  .route-privacy .section-seam i:nth-child(1),
  .route-qualifications .section-seam i:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 18%, 78% 18%, 65% 72%, 0 46%);
  }

  .route-terms .section-seam i:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 84% 20%, 76% 58%, 20% 58%, 12% 34%, 0 34%);
  }

  body:not(.page-home) .site-footer::before {
    height: 3.75rem;
  }
}

@media (update: none) {
  .section-seam i {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* source: motion-scenes.css */
/* Senfan V21 — reversible scene relays and differentiated interaction feedback.
   Native scrolling remains untouched. The active chapter changes a route-owned
   visual object and can be revisited in either scroll direction. */

:root {
  --v21-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v21-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --v21-ember: #d25430;
}

/* Page changes keep their direction without cutting the document into a mask. */
::view-transition-old(root) {
  animation: v21-document-fade-out 220ms var(--v21-in-out) both;
}

::view-transition-new(root) {
  animation: v21-document-fade-in 460ms var(--v21-out) both;
}

@keyframes v21-document-fade-out {
  to { opacity: .24; transform: translateY(-.35rem) scale(.998); }
}

@keyframes v21-document-fade-in {
  from { opacity: .18; transform: translateY(.5rem) scale(.998); }
  to { opacity: 1; transform: none; }
}

body:not(.page-home) main {
  transition: opacity 220ms var(--v21-in-out), transform 260ms var(--v21-in-out), clip-path 0ms 260ms;
}

body:not(.page-home).is-route-leaving main,
html[data-route-direction="back"] body:not(.page-home).is-route-leaving main {
  opacity: .18;
  clip-path: none;
  filter: none;
  transform: translateY(-.35rem) scale(.998);
}

/* Typography should arrive as a continuous tonal change, never as a hard mask. */
.js body:not(.page-home) [data-route-hero] [data-hero-copy],
.js body:not(.page-home) [data-route-hero] [data-hero-copy] > *,
.js body:not(.page-home) [data-motion-section] .section-heading > * {
  clip-path: none !important;
}

.js body:not(.page-home) [data-route-hero] [data-hero-copy] > * {
  transition:
    opacity 720ms ease,
    transform 880ms var(--v21-out);
}

.js body:not(.page-home) [data-route-hero]:not(.is-open) [data-hero-copy] {
  opacity: 1 !important;
  clip-path: none !important;
  filter: none !important;
  transform: none !important;
}

.js body:not(.page-home) [data-route-hero]:not(.is-open) [data-hero-copy] > * {
  opacity: 0.14;
  filter: none !important;
  transform: translateY(1.05rem);
}

.js body:not(.page-home) [data-route-hero]:not(.is-open) [data-hero-copy] > :nth-child(2) {
  transform: translateY(1.35rem);
}

.js body:not(.page-home) [data-route-hero]:not(.is-open) [data-hero-copy] > :nth-child(3) {
  transform: translateY(.9rem);
}

.js body:not(.page-home) [data-route-hero].is-open [data-hero-copy] > * {
  opacity: 1;
  filter: none;
  transform: none;
}

.js body:not(.page-home) .legal-reader-nav {
  opacity: .08;
  transform: translateY(-.45rem);
  transition: opacity 560ms ease, transform 720ms var(--v21-out);
}

.js body:not(.page-home).is-route-ready .legal-reader-nav {
  opacity: 1;
  transform: none;
}

.js body:not(.page-home) [data-motion-section] .section-heading > * {
  transition:
    opacity 640ms ease,
    transform 820ms var(--v21-out);
}

.js body:not(.page-home) [data-motion-section][data-scene-phase="next"] .section-heading > * {
  opacity: 0.24;
  filter: none !important;
  transform: translateY(1.2rem);
}

.js body:not(.page-home) [data-motion-section][data-scene-phase="current"] .section-heading > *,
.js body:not(.page-home) [data-motion-section][data-scene-phase="past"] .section-heading > * {
  opacity: 1;
  filter: none;
  transform: none;
}

.js body:not(.page-home) [data-motion-section][data-scene-phase="current"] .section-heading > :nth-child(2) {
  transition-delay: 70ms;
}

/* Retire the remaining lateral and mask-based entrances that made type look cut off. */
.js .route-product .section--catalog:not(.is-revealed) .catalog-toolbar,
.js .route-product .section--catalog:not(.is-revealed) .catalog-item,
.js .route-services .section--catalog:not(.is-revealed) .catalog-toolbar,
.js .route-services .section--catalog:not(.is-revealed) .catalog-item,
.js .route-cases [data-motion-section]:not(.is-revealed) :is(.case-status-grid, .demo-flow, .authorization-grid),
.js .route-progress [data-motion-section]:not(.is-revealed) :is(.status-item, .status-definition-grid article, .gate-grid p),
.js .route-qualifications [data-motion-section]:not(.is-revealed) :is(.qualification-ledger, .plain-callout, .number-list),
.js .route-contact [data-motion-section]:not(.is-revealed) :is(.briefing-prep > div, .request-form, .form-context),
.js .route-privacy [data-motion-section]:not(.is-revealed) :is(.policy-grid, .grouped-list, .contact-blocked, .disclosure),
.js .route-terms [data-motion-section]:not(.is-revealed) :is(.number-list li, .responsibility-grid article, .boundary-notes p, .disclosure),
.js .route-refunds [data-motion-section]:not(.is-revealed) :is(.refund-timeline article, .grouped-list > div, .contact-blocked),
.js .route-ip [data-motion-section]:not(.is-revealed) :is(.policy-grid article, .plain-callout, .contact-blocked) {
  opacity: .12;
  clip-path: none;
  filter: none;
  transform: translateY(1rem) scale(.994);
}

.route-product :is(.catalog-toolbar, .catalog-item),
.route-services :is(.catalog-toolbar, .catalog-item),
.route-cases :is(.case-status-grid, .demo-flow, .authorization-grid),
.route-progress :is(.status-item, .status-definition-grid article, .gate-grid p),
.route-qualifications :is(.qualification-ledger, .plain-callout, .number-list),
.route-contact :is(.briefing-prep > div, .request-form, .form-context),
.route-privacy :is(.policy-grid, .grouped-list, .contact-blocked, .disclosure),
.route-terms :is(.number-list li, .responsibility-grid article, .boundary-notes p, .disclosure),
.route-refunds :is(.refund-timeline article, .grouped-list > div, .contact-blocked),
.route-ip :is(.policy-grid article, .plain-callout, .contact-blocked) {
  transition:
    opacity 620ms ease,
    transform 840ms var(--v21-out),
    background-color 420ms ease;
}

body:not(.page-home) [data-motion-section].is-revealed :is(
  .catalog-toolbar,
  .catalog-item,
  .case-status-grid,
  .demo-flow,
  .authorization-grid,
  .status-item,
  .status-definition-grid article,
  .gate-grid p,
  .qualification-ledger,
  .plain-callout,
  .number-list,
  .briefing-prep > div,
  .request-form,
  .form-context,
  .policy-grid,
  .policy-grid article,
  .grouped-list,
  .grouped-list > div,
  .contact-blocked,
  .disclosure,
  .responsibility-grid article,
  .boundary-notes p,
  .refund-timeline article
) {
  opacity: 1;
  clip-path: none;
  filter: none;
  transform: none;
}

body:not(.page-home) [data-motion-section] {
  --relay-opacity: 0.32;
  --relay-shift-x: 0px;
  --relay-shift-y: -0.7rem;
  --relay-scale-x: 0.72;
}

body:not(.page-home) [data-motion-section][data-scene-phase="current"] {
  --relay-opacity: 1;
  --relay-shift-x: 0px;
  --relay-shift-y: 0px;
  --relay-scale-x: 1;
}

body:not(.page-home) [data-motion-section][data-scene-phase="past"] {
  --relay-opacity: 0.64;
  --relay-shift-x: 1.2rem;
  --relay-shift-y: 0.2rem;
  --relay-scale-x: 0.9;
}

body:not(.page-home) [data-motion-section] > .section-seam i {
  opacity: var(--relay-opacity);
  translate: var(--relay-shift-x) var(--relay-shift-y);
  scale: var(--relay-scale-x) 1;
  transition:
    opacity 460ms ease,
    translate 820ms var(--v21-out),
    scale 820ms var(--v21-out),
    transform 960ms var(--v20-out);
}

/* The production home now participates in the reversible scene system. */
.page-home [data-motion-section] .section-heading,
.page-home [data-motion-section] .section-heading > * {
  transition:
    opacity 620ms ease,
    transform 820ms var(--v21-out);
}

.page-home [data-motion-section][data-scene-phase="next"] .section-heading {
  opacity: 0.18;
  filter: none;
  transform: translateY(1.25rem);
}

.page-home [data-motion-section][data-scene-phase="current"] .section-heading,
.page-home [data-motion-section][data-scene-phase="past"] .section-heading {
  opacity: 1;
  filter: none;
  transform: none;
}

.page-home [data-motion-section] > .shell::after {
  position: absolute;
  top: -1.1rem;
  left: 0;
  width: clamp(2.8rem, 7vw, 6rem);
  height: 1px;
  background: linear-gradient(90deg, var(--v21-ember), transparent);
  content: "";
  opacity: .18;
  pointer-events: none;
  transform: scaleX(.22);
  transform-origin: left;
  transition: opacity 520ms ease, transform 820ms var(--v21-out);
}

.page-home [data-motion-section].is-scene-active > .shell::after {
  opacity: .72;
  transform: scaleX(1);
}

.page-home .final-cta[data-motion-section] > .shell::after {
  top: 0;
}

/* 404 is a complete page state, not an unstyled exception. */
.js [data-not-found-scene] > * {
  transition: opacity 680ms ease, transform 820ms var(--v21-out);
}

.js [data-not-found-scene]:not(.is-open) > * {
  opacity: .04;
  filter: none;
  transform: translateY(1.1rem);
}

.js [data-not-found-scene]:not(.is-open) > :nth-child(2) { transform: translateY(1.45rem); }
.js [data-not-found-scene]:not(.is-open) > :nth-child(3) { transform: translateY(.9rem); }
.js [data-not-found-scene].is-open > * { opacity: 1; filter: none; transform: none; }
.js [data-not-found-scene] > :nth-child(2) { transition-delay: 70ms; }
.js [data-not-found-scene] > :nth-child(3) { transition-delay: 130ms; }
.js [data-not-found-scene] > :nth-child(4) { transition-delay: 190ms; }

/* The footer closes the story with one restrained arrival instead of appearing abruptly. */
.js [data-footer-scene] :is(.footer-intro, .footer-grid > div:not(.footer-intro), .footer-bottom) {
  transition: opacity 680ms ease, transform 820ms var(--v21-out);
}

.js [data-footer-scene]:not(.is-visible) :is(.footer-intro, .footer-grid > div:not(.footer-intro), .footer-bottom) {
  opacity: .08;
  transform: translateY(1rem);
}

.js [data-footer-scene].is-visible :is(.footer-intro, .footer-grid > div:not(.footer-intro), .footer-bottom) {
  opacity: 1;
  transform: none;
}

.js [data-footer-scene] .footer-grid > div:nth-child(2) { transition-delay: 55ms; }
.js [data-footer-scene] .footer-grid > div:nth-child(3) { transition-delay: 110ms; }
.js [data-footer-scene] .footer-grid > div:nth-child(4) { transition-delay: 165ms; }
.js [data-footer-scene] .footer-bottom { transition-delay: 205ms; }

body:not(.page-home) [data-motion-section] > .section-seam::after {
  position: absolute;
  display: block;
  content: "";
  pointer-events: none;
  transition:
    opacity 380ms ease,
    transform 860ms var(--v21-out),
    translate 860ms var(--v21-out),
    scale 860ms var(--v21-out);
}

body:not(.page-home) [data-motion-section] > .shell::before {
  position: absolute;
  z-index: 4;
  display: block;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  transform-origin: left center;
  transition:
    opacity 420ms ease,
    transform 780ms var(--v21-out),
    translate 780ms var(--v21-out),
    scale 780ms var(--v21-out);
}

body:not(.page-home) [data-motion-section].is-scene-active > .shell::before {
  opacity: 0.82;
}

body:not(.page-home) [data-motion-section][data-scene-direction="reverse"] > .shell::before,
body:not(.page-home) [data-motion-section][data-scene-direction="reverse"] > .section-seam::after {
  transform-origin: right center;
}

/* Product: an editorial shelf travels from the incoming splice into the catalog. */
.route-product [data-motion-section] > .section-seam::after {
  top: 44%;
  left: 7vw;
  width: min(34rem, 52vw);
  height: 1px;
  background: linear-gradient(90deg, var(--v21-ember) 0 12%, rgba(238, 236, 230, 0.4) 12% 100%);
  opacity: 0.24;
  transform: scaleX(0.12);
  transform-origin: left;
}

.route-product [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.86;
  transform: scaleX(1);
}

.route-product [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.36;
  transform: scaleX(0.42);
  translate: 52vw 0;
}

.route-product [data-motion-section] > .shell::before {
  top: -1.1rem;
  left: 0;
  width: clamp(3.5rem, 7vw, 6.5rem);
  height: 0.34rem;
  border-right: 1.1rem solid var(--v21-ember);
  border-left: 2.1rem solid currentColor;
  transform: scaleX(0.28);
}

.route-product [data-motion-section].is-scene-active > .shell::before {
  transform: scaleX(1);
}

/* Services: a light slit crosses the workshop, then resolves into a warm exposure bar. */
.route-services [data-motion-section] > .section-seam::after {
  top: -28%;
  right: 15vw;
  width: 1px;
  height: 142%;
  background: linear-gradient(180deg, transparent, #f2b96d 38% 62%, transparent);
  opacity: 0;
  transform: rotate(15deg) scaleY(0.3);
}

.route-services [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.76;
  transform: rotate(15deg) scaleY(1);
  translate: -18vw 0;
}

.route-services [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.18;
  transform: rotate(15deg) scaleY(0.62);
  translate: -48vw 0;
}

.route-services [data-motion-section] > .shell::before {
  top: -1.2rem;
  right: 0;
  width: clamp(2.5rem, 5vw, 5rem);
  height: 0.4rem;
  background: linear-gradient(90deg, rgba(242, 185, 109, 0.12), #e5a04a);
  transform: translateX(1.25rem) scaleX(0.35);
  transform-origin: right;
}

.route-services [data-motion-section].is-scene-active > .shell::before {
  transform: translateX(0) scaleX(1);
}

/* Cases: an aperture opens on review material and closes after the scene. */
.route-cases [data-motion-section] > .section-seam::after {
  top: -36%;
  left: 50%;
  width: clamp(5.5rem, 11vw, 9rem);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 38, 33, 0.7);
  border-radius: 50%;
  opacity: 0.16;
  transform: translateX(-50%) scale(0.26);
}

.route-cases [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.7;
  transform: translateX(-50%) scale(1);
}

.route-cases [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0;
  transform: translateX(-50%) scale(1.5);
}

.route-cases [data-motion-section] > .shell::before {
  top: -1.45rem;
  left: 50%;
  width: 1.55rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%) scale(0.42);
}

.route-cases [data-motion-section].is-scene-active > .shell::before {
  transform: translateX(-50%) scale(1);
}

/* Progress: a verification scan crosses each evidence chapter. */
.route-progress [data-motion-section] > .section-seam::after {
  top: 54%;
  left: 5vw;
  width: 90vw;
  height: 2px;
  background: repeating-linear-gradient(90deg, #5cb788 0 0.5rem, transparent 0.5rem 1.1rem);
  opacity: 0.16;
  transform: scaleX(0.08);
  transform-origin: left;
}

.route-progress [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.66;
  transform: scaleX(1);
}

.route-progress [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.24;
  transform: scaleX(0.16);
  transform-origin: right;
}

.route-progress [data-motion-section] > .shell::before {
  top: -1.3rem;
  left: 0;
  width: 4.6rem;
  height: 1px;
  background: currentColor;
  box-shadow: 1.25rem 0 0 #5cb788, 2.5rem 0 0 rgba(92, 183, 136, 0.4);
  transform: translateX(-1rem) scaleX(0.32);
}

.route-progress [data-motion-section].is-scene-active > .shell::before {
  transform: translateX(0) scaleX(1);
}

/* Qualifications: a paper fold transfers into the next verification record. */
.route-qualifications [data-motion-section] > .section-seam::after {
  top: 4%;
  left: 13vw;
  width: min(24rem, 42vw);
  height: 74%;
  border-top: 1px solid rgba(34, 41, 35, 0.42);
  border-right: 1px solid rgba(34, 41, 35, 0.22);
  opacity: 0.18;
  transform: skewX(-28deg) scaleX(0.18);
  transform-origin: left top;
}

.route-qualifications [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.62;
  transform: skewX(-28deg) scaleX(1);
}

.route-qualifications [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.2;
  transform: skewX(-28deg) scaleX(0.5);
  translate: 38vw 0;
}

.route-qualifications [data-motion-section] > .shell::before {
  top: -1.5rem;
  left: 0;
  width: 2rem;
  height: 1.3rem;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: skewX(-18deg) scale(0.55);
}

.route-qualifications [data-motion-section].is-scene-active > .shell::before {
  transform: skewX(-18deg) scale(1);
}

/* Contact: two voices travel toward a shared handoff point. */
.route-contact [data-motion-section] > .section-seam::after {
  top: 48%;
  left: 50%;
  width: min(46rem, 76vw);
  height: 2.8rem;
  background:
    linear-gradient(90deg, rgba(207, 89, 49, 0.74), transparent 42%) left center / 48% 1px no-repeat,
    linear-gradient(270deg, rgba(236, 228, 210, 0.56), transparent 42%) right center / 48% 1px no-repeat;
  opacity: 0.18;
  transform: translate(-50%, -50%) scaleX(0.3);
}

.route-contact [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.86;
  transform: translate(-50%, -50%) scaleX(1);
}

.route-contact [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.3;
  transform: translate(-50%, -50%) scaleX(0.56);
}

.route-contact [data-motion-section] > .shell::before {
  top: -1.45rem;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid var(--v21-ember);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.22);
}

.route-contact [data-motion-section].is-scene-active > .shell::before {
  transform: translateX(-50%) scale(1);
  box-shadow: 0 0 0 0.45rem rgba(210, 84, 48, 0.1);
}

/* Privacy: a translucent veil narrows into a clear data boundary. */
.route-privacy [data-motion-section] > .section-seam::after {
  inset: 0 auto 0 18vw;
  width: min(18rem, 28vw);
  background: linear-gradient(90deg, transparent, rgba(107, 132, 114, 0.24), transparent);
  opacity: 0.18;
  transform: translateX(-15vw) scaleX(0.5);
}

.route-privacy [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.72;
  transform: translateX(42vw) scaleX(1);
}

.route-privacy [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.1;
  transform: translateX(70vw) scaleX(0.24);
}

.route-privacy [data-motion-section] > .shell::before {
  top: -1.7rem;
  left: 0;
  width: 1px;
  height: 2.6rem;
  background: currentColor;
  transform: scaleY(0.22);
  transform-origin: center top;
}

.route-privacy [data-motion-section].is-scene-active > .shell::before {
  transform: scaleY(1);
}

/* Terms: one contract line is handed from clause to clause. */
.route-terms [data-motion-section] > .section-seam::after {
  top: 0;
  left: 22vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(242, 239, 229, 0), rgba(242, 239, 229, 0.7), rgba(242, 239, 229, 0));
  opacity: 0.18;
  transform: scaleY(0.1);
  transform-origin: top;
}

.route-terms [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.68;
  transform: scaleY(1);
  translate: 31vw 0;
}

.route-terms [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.18;
  transform: scaleY(0.34);
  translate: 62vw 0;
}

.route-terms [data-motion-section] > .shell::before {
  top: -1.5rem;
  left: 0;
  width: clamp(3rem, 8vw, 7rem);
  height: 1px;
  background: currentColor;
  transform: scaleX(0.18);
}

.route-terms [data-motion-section].is-scene-active > .shell::before {
  transform: scaleX(1);
}

/* Refunds: a decision point travels along a reversible timeline. */
.route-refunds [data-motion-section] > .section-seam::after {
  top: 38%;
  left: 18vw;
  width: clamp(2.8rem, 5vw, 4.5rem);
  aspect-ratio: 1;
  border: 1px solid rgba(126, 87, 49, 0.58);
  border-radius: 50%;
  opacity: 0.14;
  transform: scale(0.2);
}

.route-refunds [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.72;
  transform: scale(1);
  translate: 44vw -18%;
}

.route-refunds [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0;
  transform: scale(1.55);
  translate: 64vw -18%;
}

.route-refunds [data-motion-section] > .shell::before {
  top: -1.4rem;
  left: 0;
  width: 0.7rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: scale(0.28);
}

.route-refunds [data-motion-section].is-scene-active > .shell::before {
  transform: scale(1);
}

/* IP: registration crop marks align, then release into the next rights boundary. */
.route-ip [data-motion-section] > .section-seam::after {
  top: 18%;
  right: 14vw;
  width: clamp(4rem, 8vw, 7rem);
  aspect-ratio: 1.35;
  border-top: 1px solid rgba(232, 238, 231, 0.68);
  border-left: 1px solid rgba(232, 238, 231, 0.68);
  opacity: 0.16;
  transform: translate(1.4rem, -0.7rem) scale(0.42);
}

.route-ip [data-motion-section][data-scene-phase="current"] > .section-seam::after {
  opacity: 0.76;
  transform: translate(0, 0) scale(1);
}

.route-ip [data-motion-section][data-scene-phase="past"] > .section-seam::after {
  opacity: 0.2;
  transform: translate(-38vw, 0.5rem) scale(0.72);
}

.route-ip [data-motion-section] > .shell::before {
  top: -1.55rem;
  right: 0;
  width: 1.4rem;
  height: 1.1rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translate(0.6rem, -0.4rem) scale(0.45);
  transform-origin: right bottom;
}

.route-ip [data-motion-section].is-scene-active > .shell::before {
  transform: translate(0, 0) scale(1);
}

/* Actions communicate different outcomes instead of sharing one generic press. */
body:not(.page-home) [data-motion-kind="anchor"] .button__arrow,
body:not(.page-home) a[data-motion-kind="anchor"] i {
  transition: translate 280ms var(--v21-out);
}

body:not(.page-home) [data-motion-kind="anchor"]:hover .button__arrow,
body:not(.page-home) [data-motion-kind="anchor"]:focus-visible .button__arrow,
body:not(.page-home) a[data-motion-kind="anchor"]:hover i,
body:not(.page-home) a[data-motion-kind="anchor"]:focus-visible i {
  translate: 0 0.25rem;
}

body:not(.page-home) [data-motion-kind="route"]::before {
  transform: translateX(-104%);
}

body:not(.page-home) [data-motion-kind="route"]:hover::before,
body:not(.page-home) [data-motion-kind="route"]:focus-visible::before {
  transform: translateX(0);
}

body:not(.page-home) [data-motion-kind="contact"] {
  box-shadow: 0 0 0 0 rgba(210, 84, 48, 0);
  transition: box-shadow 420ms var(--v21-out), color 240ms ease, border-color 240ms ease, transform 360ms var(--v21-out);
}

body:not(.page-home) [data-motion-kind="contact"]:hover,
body:not(.page-home) [data-motion-kind="contact"]:focus-visible {
  box-shadow: 0 0 0 0.34rem rgba(210, 84, 48, 0.12);
}

[data-motion-kind="filter"][aria-pressed="true"] {
  text-decoration-color: var(--v21-ember);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
}

[data-motion-kind="disclosure"] {
  transform-origin: center top;
}

@media (max-width: 720px) {
  html { scrollbar-gutter: auto; }

  body:not(.page-home) [data-motion-section] > .section-seam::after {
    max-width: 82vw;
  }

  body:not(.page-home) [data-motion-section] > .shell::before {
    top: -1rem;
  }

  .route-services [data-motion-section] > .section-seam::after,
  .route-terms [data-motion-section] > .section-seam::after {
    right: auto;
    left: 58%;
  }

  .route-cases [data-motion-section] > .section-seam::after {
    left: 62%;
  }

  .route-contact [data-motion-section] > .section-seam::after {
    width: 78vw;
  }

  .route-privacy [data-motion-section] > .section-seam::after {
    width: 34vw;
  }

  .hero__media-focus {
    top: calc(var(--header-height) + 0.75rem);
    right: 1rem;
    bottom: auto;
    display: inline-flex;
    min-height: 44px;
    padding: 0.3rem 0.5rem 0.3rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(9, 14, 10, 0.38);
    backdrop-filter: blur(10px);
  }

  .page-hero.is-media-focused .hero__copy {
    opacity: 0.82;
    transform: none;
  }

  .page-hero.is-media-focused .hero__media {
    transform: scale(1.012);
  }
}

@media (update: none) {
  body:not(.page-home) [data-motion-section] > .section-seam::after,
  body:not(.page-home) [data-motion-section] > .shell::before,
  body:not(.page-home) [data-motion-section] > .section-seam i,
  body:not(.page-home) [data-motion-kind] {
    translate: none !important;
    scale: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  body:not(.page-home) [data-motion-section] > .section-seam::after,
  body:not(.page-home) [data-motion-section] > .shell::before {
    opacity: 0.3 !important;
  }

  .hero__media-focus {
    display: none !important;
  }

  .js [data-route-hero] [data-hero-copy],
  .js [data-route-hero] [data-hero-copy] > *,
  .js [data-motion-section] .section-heading,
  .js [data-motion-section] .section-heading > *,
  .page-home [data-motion-section] > .shell::after,
  .js [data-not-found-scene] > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .js body:not(.page-home) .legal-reader-nav {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .js [data-footer-scene] * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* source: route-families.css */
/* Senfan V22 — route families, editorial pacing and calmer mobile reading.
   This layer deliberately keeps native scrolling and gives each route a
   different spatial character without changing its factual content. */

:root {
  --v22-ink: #171a17;
  --v22-paper: #efeee8;
  --v22-night: #080d0b;
  --v22-ember: #d25430;
  --v22-out: cubic-bezier(.16, 1, .3, 1);
  --v22-soft: cubic-bezier(.22, .72, .22, 1);
}

body:not(.page-home) main {
  overflow: clip;
}

body:not(.page-home) .page-hero {
  min-height: auto;
}

body:not(.page-home) .page-hero h1 {
  margin-bottom: clamp(1.35rem, 2.6vw, 2.35rem);
  text-wrap: balance;
}

body:not(.page-home) .page-hero .hero__intro {
  max-width: 38rem;
  line-height: 1.75;
}

/* Route family A — product and service catalogues begin like living indexes. */
.route-product .hero--product {
  min-height: clamp(42rem, 84svh, 54rem);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vh, 7rem));
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
}

.route-product .hero--product .hero__copy {
  width: min(52rem, 68vw);
}

body:not(.page-home).route-product .hero--product h1 {
  max-width: 10.5ch;
  font-family: var(--font-sans);
  font-size: clamp(3.4rem, 6.35vw, 6.8rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.06em;
}

.route-product .hero--product::after {
  bottom: 10%;
  height: min(12rem, 20vh);
}

.route-services .hero--services {
  min-height: clamp(44rem, 88svh, 58rem);
  grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.1fr);
  padding-top: calc(var(--header-height) + clamp(3rem, 7vh, 6rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.route-services .hero--services .hero__copy {
  align-self: center;
  width: min(49rem, 58vw);
  margin-top: 4vh;
}

body:not(.page-home).route-services .hero--services h1 {
  max-width: 9ch;
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 6.15vw, 6.6rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -.055em;
}

.route-services .hero--services .hero__media {
  left: 42%;
}

/* Route family B — cases feel cinematic; progress reads like a live record. */
.route-cases .hero--cases {
  min-height: clamp(46rem, 92svh, 61rem);
  grid-template-columns: minmax(18rem, .62fr) minmax(0, 1.38fr);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vh, 7rem));
  padding-bottom: clamp(3.25rem, 6vh, 5rem);
}

.route-cases .hero--cases .hero__copy {
  width: min(45rem, 54vw);
  padding-bottom: clamp(1rem, 3vh, 2.5rem);
}

body:not(.page-home).route-cases .hero--cases h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.6vw, 6.1rem);
  line-height: 1.02;
}

.route-cases .hero--cases .hero__media {
  inset: 10% 3vw 7% 42%;
}

.route-cases .hero--cases::before {
  background:
    linear-gradient(90deg, #070a09 0 28%, rgba(7, 10, 9, .84) 40%, rgba(7, 10, 9, .08) 70%),
    linear-gradient(180deg, rgba(7, 10, 9, .18), transparent 45%, rgba(7, 10, 9, .86));
}

.route-progress .hero--progress {
  min-height: clamp(40rem, 78svh, 50rem);
  padding-top: calc(var(--header-height) + clamp(3.5rem, 7vh, 6rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.route-progress .hero--progress .hero__copy {
  width: min(56rem, 67vw);
}

body:not(.page-home).route-progress .hero--progress h1 {
  max-width: 12ch;
  font-family: var(--font-sans);
  font-size: clamp(3.1rem, 5.45vw, 5.9rem);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -.055em;
}

/* Route family C — trust and contact open sooner and let the page answer. */
.route-qualifications .hero--qualifications {
  min-height: clamp(35rem, 66svh, 44rem);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vh, 7rem));
  padding-bottom: clamp(3.25rem, 6vh, 5rem);
}

.route-qualifications .hero--qualifications .hero__copy {
  width: min(58rem, 70vw);
}

body:not(.page-home).route-qualifications .hero--qualifications h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 5.7vw, 6rem);
  line-height: 1.01;
}

.route-contact .hero--contact {
  min-height: clamp(38rem, 72svh, 48rem);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vh, 7rem));
  padding-bottom: clamp(3.25rem, 6vh, 5rem);
}

.route-contact .hero--contact .hero__copy {
  width: min(63rem, 74vw);
}

body:not(.page-home).route-contact .hero--contact h1 {
  max-width: 12ch;
  font-family: var(--font-sans);
  font-size: clamp(3.45rem, 6vw, 6.4rem);
  font-weight: 620;
  line-height: .98;
  letter-spacing: -.06em;
}

/* Route family D — policy pages are readers, not campaign landing pages. */
.page-legal .legal-reader-nav {
  height: 50px;
  background: color-mix(in srgb, var(--v15-paper-bright) 97%, transparent);
  backdrop-filter: none;
}

.page-legal .legal-reader-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
}

.page-legal .legal-reader-nav a[aria-current="page"]::after {
  bottom: 0;
}

.page-legal .hero--legal {
  min-height: clamp(27rem, 48svh, 36rem);
  padding: calc(var(--header-height) + 6.75rem) clamp(3rem, 8vw, 9rem) clamp(3.75rem, 7vh, 5.5rem);
}

.page-legal .hero--legal .hero__copy {
  max-width: 62rem;
}

body:not(.page-home).page-legal .hero--legal h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.page-legal .hero--legal .hero__intro {
  max-width: 46rem;
  font-size: 1rem;
}

.page-legal [data-motion-section] > .section-seam,
.route-qualifications [data-motion-section] > .section-seam {
  opacity: .38;
}

.page-legal [data-motion-section] > .section-seam::after,
.page-legal [data-motion-section] > .shell::before {
  display: none;
}

/* Chapter spacing follows the content density of each family. */
.route-product .section--catalog,
.route-services .section--catalog {
  padding-block: clamp(7rem, 12vw, 11rem);
}

.route-cases .section,
.route-progress .section {
  padding-block: clamp(6rem, 10vw, 9rem);
}

.route-qualifications .section,
.route-contact .section {
  padding-block: clamp(5.5rem, 9vw, 8rem);
}

.page-legal .section--legal {
  padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.page-legal .section--legal > .shell {
  width: min(calc(100% - 8rem), 74rem);
}

.page-legal .section--legal .section-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.page-legal .section--legal .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

/* Only the cinematic case page keeps an explicit image-focus control. */
body:not(.route-cases) .hero__media-focus {
  display: none;
}

.route-cases .hero__media-focus {
  background: rgba(7, 10, 9, .72);
  backdrop-filter: none;
}

/* Arrival timing belongs to each route instead of a global preset. */
.js .route-product [data-route-hero] [data-hero-copy] > * {
  transition-duration: 620ms, 760ms;
  transition-timing-function: ease, var(--v22-out);
}

.js .route-services [data-route-hero] [data-hero-copy] > * {
  transition-duration: 820ms, 1040ms;
  transition-timing-function: ease, cubic-bezier(.18, .74, .16, 1);
}

.js .route-cases [data-route-hero]:not(.is-open) [data-hero-copy] > * {
  opacity: .08;
  transform: translateY(.6rem) scale(.985);
}

.js .route-cases [data-route-hero] [data-hero-copy] > * {
  transition-duration: 960ms, 1180ms;
  transition-timing-function: ease, cubic-bezier(.12, .78, .18, 1);
}

.js .route-progress [data-route-hero] [data-hero-copy] > * {
  transition-duration: 440ms, 560ms;
}

.js .route-qualifications [data-route-hero] [data-hero-copy] > *,
.js .route-contact [data-route-hero] [data-hero-copy] > * {
  transition-duration: 560ms, 760ms;
}

.js .page-legal [data-route-hero]:not(.is-open) [data-hero-copy] > * {
  opacity: .34;
  transform: translateY(.35rem);
}

.js .page-legal [data-route-hero] [data-hero-copy] > * {
  transition-duration: 320ms, 460ms;
}

/* More generous and dependable touch targets. */
.site-header .wordmark,
.site-footer a,
.consent-row {
  min-height: 44px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
}

.catalog-filters button {
  min-height: 48px;
  padding-inline: .2rem;
}

.consent-row {
  align-items: center;
  padding-block: .25rem;
}

.consent-row input {
  width: 24px;
  height: 24px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .route-product .hero--product,
  .route-services .hero--services,
  .route-cases .hero--cases,
  .route-progress .hero--progress,
  .route-qualifications .hero--qualifications,
  .route-contact .hero--contact,
  .page-legal .hero--legal {
    grid-template-columns: 1fr;
  }

  .page-legal .section--legal > .shell {
    width: min(calc(100% - 3rem), 74rem);
  }
}

@media (max-width: 720px) {
  body:not(.page-home) .page-hero {
    align-items: end;
    padding-inline: 1.35rem;
  }

  .route-product .hero--product {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 3rem;
  }

  .route-services .hero--services {
    min-height: 88svh;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 3.25rem;
  }

  .route-cases .hero--cases {
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 3rem;
  }

  .route-progress .hero--progress {
    min-height: 76svh;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 2.75rem;
  }

  .route-qualifications .hero--qualifications {
    min-height: 70svh;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 2.75rem;
  }

  .route-contact .hero--contact {
    min-height: 74svh;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 2.75rem;
  }

  .page-legal .hero--legal {
    min-height: 52svh;
    padding-top: calc(var(--header-height) + 5.5rem);
    padding-bottom: 2.75rem;
  }

  .route-product .hero--product .hero__copy,
  .route-services .hero--services .hero__copy,
  .route-cases .hero--cases .hero__copy,
  .route-progress .hero--progress .hero__copy,
  .route-qualifications .hero--qualifications .hero__copy,
  .route-contact .hero--contact .hero__copy,
  .page-legal .hero--legal .hero__copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  body:not(.page-home).route-product .hero--product h1,
  body:not(.page-home).route-services .hero--services h1,
  body:not(.page-home).route-cases .hero--cases h1,
  body:not(.page-home).route-progress .hero--progress h1,
  body:not(.page-home).route-qualifications .hero--qualifications h1,
  body:not(.page-home).route-contact .hero--contact h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 13vw, 4.25rem);
    line-height: 1;
  }

  body:not(.page-home).page-legal .hero--legal h1 {
    max-width: 13ch;
    font-size: clamp(2.6rem, 11.5vw, 3.8rem);
    line-height: 1.04;
  }

  .route-cases .hero--cases .hero__media {
    inset: 0;
  }

  .hero__media-focus {
    top: calc(var(--header-height) + .75rem);
    right: 1rem;
    min-height: 44px;
    background: rgba(7, 10, 9, .76);
    backdrop-filter: none;
  }

  .route-product .section--catalog,
  .route-services .section--catalog,
  .route-cases .section,
  .route-progress .section,
  .route-qualifications .section,
  .route-contact .section,
  .page-legal .section--legal {
    padding-block: clamp(4.5rem, 18vw, 6rem);
  }

  .page-legal .section--legal > .shell {
    width: min(calc(100% - 2.5rem), 74rem);
  }

  .page-legal .section--legal .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .page-legal .page-hero .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    width: 100%;
  }

  .page-legal .page-hero .button {
    width: 100%;
    padding-inline: .8rem;
    font-size: .84rem;
  }

  .site-footer a {
    min-height: 46px;
  }
}

@media (update: none) {
  .js body:not(.page-home) [data-route-hero] [data-hero-copy] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* source: narrative-order.css */
/* Senfan V23 — approved image-first copy hierarchy.
   Public claims lead; pending facts remain visible as quiet operational status. */

.availability-note,
.legal-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(1.25rem, 2.8vw, 2rem);
  color: var(--color-text, #1b1d19);
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}

.availability-note strong,
.legal-status strong {
  font-size: .76rem;
  font-weight: 620;
  letter-spacing: .14em;
}

.availability-note > span,
.legal-status > span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  color: color-mix(in srgb, currentColor 64%, transparent);
  font-size: .82rem;
  line-height: 1.55;
  text-align: right;
}

.catalog-item:first-child .catalog-item__media img {
  object-position: center 48%;
}

.page-product .catalog-note,
.page-services .catalog-note {
  max-width: 34rem;
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: .58;
}

.page-contact .section--contact-form .section-heading,
.page-legal .section--legal .section-heading {
  align-items: end;
}

@media (max-width: 720px) {
  .availability-note,
  .legal-status {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }

  .availability-note > span,
  .legal-status > span {
    justify-content: flex-start;
    text-align: left;
  }
}
