:root {
  --brand-red: #d60018;
  --brand-red-dark: #ab0014;
  --brand-red-soft: #fff1f2;
  --ink: #0a0a0b;
  --ink-soft: #55555b;
  --line: #dedee1;
  --paper: #ffffff;
  --paper-warm: #f7f5f2;
  --night: #111114;
  --content: min(1380px, calc(100vw - 80px));
  --reading: 760px;
  --space-1: clamp(0.75rem, 0.6rem + 0.5vw, 1.1rem);
  --space-2: clamp(1.25rem, 1rem + 0.8vw, 2rem);
  --space-3: clamp(2rem, 1.4rem + 2vw, 4rem);
  --space-4: clamp(3.5rem, 2.2rem + 4vw, 7.5rem);
  --space-5: clamp(5rem, 3rem + 7vw, 11rem);
  color-scheme: light;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.4rem, 6.5vw, 7.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 5.2rem);
}

h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: var(--content);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: clamp(178px, 16vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 2rem);
  font-size: 0.94rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--brand-red);
  color: var(--brand-red);
}

.site-nav .admin-link {
  margin-left: clamp(0.3rem, 1vw, 1rem);
  padding-left: clamp(1rem, 1.5vw, 1.75rem);
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 550;
}

.nav-toggle {
  min-width: 52px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  width: 25px;
  height: 2px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  min-height: calc(100svh - 95px);
  max-width: 1740px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.93fr) minmax(620px, 1.07fr);
  overflow: hidden;
  background: #fff;
}

.hero-copy {
  z-index: 2;
  padding: clamp(4.5rem, 7vh, 7rem) 0 3.25rem max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow,
.section-kicker {
  margin-bottom: 1.5rem;
  color: var(--brand-red);
  font-size: clamp(0.8rem, 0.72rem + 0.25vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  margin: 0 0.4rem;
}

.hero-copy h1 {
  max-width: 8.7ch;
  margin-bottom: 1.35rem;
  font-size: clamp(4rem, 6.1vw, 7rem);
  font-weight: 900;
}

.hero-lede {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1rem + 0.65vw, 1.55rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vh, 4.5rem);
}

.button {
  min-height: 52px;
  padding: 0.8rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

.button--outline {
  border-color: var(--brand-red);
  background: #fff;
  color: var(--brand-red);
}

.button--outline:hover {
  background: var(--brand-red-soft);
}

.proof-metrics {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.75rem;
}

.proof-metrics div {
  padding-right: 1.3rem;
}

.proof-metrics div + div {
  padding-left: 1.8rem;
  border-left: 1px solid var(--line);
}

.proof-metrics dt {
  color: var(--brand-red);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.proof-metrics dd {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.partner-line {
  width: min(100%, 650px);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.partner-line span:nth-child(2) {
  font-size: 1rem;
  font-weight: 780;
}

.partner-symbol {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  color: var(--brand-red);
  font-size: 1.15rem;
}

.hero-visual {
  min-height: 760px;
  margin-left: -8rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(145deg, #f5142d 0%, var(--brand-red) 45%, #a90013 100%);
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 42%);
}

.growth-orbit {
  position: absolute;
  inset: 8% 1% 3% 17%;
  aspect-ratio: 1 / 0.9;
}

.digital-globe {
  position: absolute;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  top: 21%;
  left: 10%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.88), rgba(255,255,255,0.17) 32%, transparent 52%),
    repeating-radial-gradient(circle at center, transparent 0 46px, rgba(255,255,255,0.16) 47px 48px),
    rgba(255, 255, 255, 0.1);
}

.digital-globe::before,
.digital-globe::after {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.digital-globe::before {
  transform: scaleX(0.52);
}

.digital-globe::after {
  transform: scaleY(0.52);
}

.digital-globe span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.digital-globe span:nth-child(1) { top: 29%; left: 25%; }
.digital-globe span:nth-child(2) { top: 44%; right: 17%; }
.digital-globe span:nth-child(3) { bottom: 21%; left: 46%; }

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.orbit--one { width: 89%; height: 44%; top: 27%; left: 0; }
.orbit--two { width: 75%; height: 70%; top: 16%; left: 8%; transform: rotate(26deg); }
.orbit--three { width: 95%; height: 54%; top: 34%; left: -1%; transform: rotate(10deg); }

.network-node {
  position: absolute;
  z-index: 3;
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.node--one { top: 19%; left: 4%; color: var(--brand-red); }
.node--two { bottom: 22%; left: 11%; }
.node--three { top: 31%; right: 2%; }
.node--four { width: 76px; bottom: 23%; right: 7%; background: var(--brand-red); color: #fff; }

.data-panel,
.destination-frame {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(35, 5, 9, 0.58);
  color: #fff;
  backdrop-filter: blur(10px);
}

.data-panel {
  top: 4%;
  right: 1%;
  width: 190px;
  padding: 1rem;
  display: grid;
}

.data-panel small,
.data-panel span { opacity: 0.78; }
.data-panel strong { font-size: 2.35rem; line-height: 1.1; }
.data-panel b { height: 52px; margin-top: 0.8rem; background: linear-gradient(154deg, transparent 0 10%, #ff9caa 11% 13%, transparent 14% 32%, #fff 33% 35%, transparent 36% 55%, #ff9caa 56% 58%, transparent 59%); }

.destination-frame {
  width: 150px;
  aspect-ratio: 0.78;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(10,10,11,0.8)),
    linear-gradient(140deg, #5f7b8a, #ddd 45%, #232b36 46% 65%, #aa6a3d);
}

.destination-frame span { font-size: 0.75rem; }
.destination-frame strong { line-height: 1.05; }
.destination-frame--one { top: 4%; left: 24%; transform: rotate(1.5deg); }
.destination-frame--two { right: 16%; bottom: 4%; width: 136px; transform: rotate(2deg); background: linear-gradient(180deg, transparent, rgba(10,10,11,0.82)), linear-gradient(145deg, #7eaed0, #eef4f4 40%, #0e7e96 41% 62%, #eee2b3 63%); }

.growth-chart {
  position: absolute;
  right: -2%;
  bottom: -3%;
  width: 52%;
  height: 25%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  border-bottom: 2px solid rgba(255,255,255,0.45);
  transform: skewY(-22deg);
  opacity: 0.68;
}

.growth-chart i {
  width: 7%;
  height: 20%;
  background: rgba(255,255,255,0.28);
}

.growth-chart i:nth-child(2) { height: 30%; }
.growth-chart i:nth-child(3) { height: 43%; }
.growth-chart i:nth-child(4) { height: 59%; }
.growth-chart i:nth-child(5) { height: 75%; }
.growth-chart i:nth-child(6) { height: 96%; }

.section {
  width: var(--content);
  margin: 0 auto;
  padding-block: var(--space-5);
  display: grid;
  grid-template-columns: minmax(90px, 0.2fr) minmax(0, 1.8fr);
  border-top: 1px solid var(--line);
}

.section__rail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.section-heading {
  margin-bottom: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading--row h2 {
  max-width: 18ch;
}

.lede {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.3rem);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  color: var(--brand-red);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  color: #fff;
}

.solution-steps {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  list-style: none;
}

.solution-steps li {
  min-height: 240px;
  padding: 1.5rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.solution-steps li:not(:nth-child(3n + 1)) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.solution-steps span,
.solution-steps h3 {
  color: var(--brand-red);
}

.solution-steps span {
  font-size: 0.75rem;
  font-weight: 800;
}

.solution-steps h3 {
  margin: 2.5rem 0 0.8rem;
  font-size: 2rem;
}

.solution-steps p {
  max-width: 17rem;
  color: var(--ink-soft);
}

.case-feature {
  width: 100%;
  padding: var(--space-5) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.section--dark {
  background: var(--night);
  color: #fff;
}

.case-feature__intro h2 {
  margin-bottom: 2rem;
}

.case-feature__intro p:not(.section-kicker) {
  max-width: 670px;
  color: #bcbcc2;
  font-size: 1.06rem;
}

.case-feature__system {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  border-top: 1px solid #444449;
}

.case-feature__system span {
  min-height: 92px;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #444449;
  color: #e9e9eb;
}

.case-feature__system span:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid #444449;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.product-showcase h2 {
  max-width: 11ch;
}

.product-window {
  overflow: hidden;
  border: 1px solid #cfcfd3;
  border-radius: 8px;
  background: #f8f8f9;
  aspect-ratio: 1.25 / 0.82;
}

.product-window__bar {
  min-height: 48px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid #d9d9dc;
  background: #fff;
}

.product-window__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7b7bd;
}

.product-window__bar i:first-child { background: var(--brand-red); }
.product-window__bar span { margin-left: auto; color: var(--ink-soft); font-size: 0.68rem; letter-spacing: 0.12em; }

.product-window__body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
}

.product-window__body aside {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #d9d9dc;
  background: #fff;
}

.product-window__body aside b { margin-bottom: 2rem; }
.product-window__body aside span { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.75rem; }

.product-window__body > div {
  padding: 2rem;
}

.product-window__body small { color: var(--brand-red); font-weight: 800; letter-spacing: 0.14em; }
.product-window__body h3 { margin: 1rem 0; }
.product-window__body p { color: var(--ink-soft); }
.product-action-demo { min-height: 44px; padding: 0 1rem; display: inline-flex; align-items: center; background: var(--brand-red); color: #fff; }

.quotation-lines {
  margin: 2rem 0;
}

.quotation-lines i {
  width: 100%;
  height: 10px;
  margin: 0.65rem 0;
  display: block;
  background: #e5e5e7;
}

.quotation-lines i:nth-child(2) { width: 82%; }
.quotation-lines i:nth-child(3) { width: 66%; }

.marketing-strip {
  padding: var(--space-4) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  background: var(--brand-red);
  color: #fff;
}

.marketing-strip .section-kicker { color: #fff; opacity: 0.8; }
.marketing-strip h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 5.5rem); }
.marketing-strip ul { grid-column: 1; padding: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.45); list-style: none; font-weight: 750; }
.marketing-strip > .text-link { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: #fff; }

.article-list {
  border-top: 1px solid var(--ink);
}

.article-list article {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 1fr auto;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.article-list article > div {
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.article-list h3 { margin: 0; }
.article-list h3 a:hover { color: var(--brand-red); }
.article-list p { margin: 0; color: var(--ink-soft); }

.conversion-section {
  padding: var(--space-5) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper-warm);
}

.conversion-section__intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.conversion-section__intro h2 {
  font-size: clamp(2.6rem, 4.5vw, 5.4rem);
}

.conversion-section__intro > p:not(.section-kicker) {
  max-width: 36rem;
  color: var(--ink-soft);
}

.conversion-section address {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.5rem;
  font-style: normal;
}

.conversion-section address a {
  width: fit-content;
  color: var(--brand-red);
  font-size: 1.1rem;
  font-weight: 750;
}

.conversion-section address span {
  max-width: 30rem;
  color: var(--ink-soft);
}

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

.form-field {
  min-width: 0;
}

.form-field--wide,
.form-actions,
.form-consent {
  grid-column: 1 / -1;
}

.form-field label,
.form-consent label {
  margin-bottom: 0.45rem;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--brand-red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid #9b9ba0;
  border-radius: 0;
  background: transparent;
  outline: 3px solid transparent;
  outline-offset: 2px;
}

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

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline-color: var(--brand-red);
  border-bottom: 2px solid var(--brand-red);
}

.form-field [aria-invalid="true"] {
  border-bottom-color: var(--brand-red);
  background: var(--brand-red-soft);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.form-consent input {
  width: 24px;
  height: 24px;
  margin-top: 0.15rem;
  accent-color: var(--brand-red);
}

.form-consent label {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 500;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-actions button[disabled] {
  cursor: wait;
  opacity: 0.55;
}

.lead-status {
  margin: 0;
  min-height: 1.6em;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.lead-status[data-state="success"] { color: #126b31; }
.lead-status[data-state="error"] { color: var(--brand-red-dark); }

.breadcrumb {
  width: var(--content);
  margin: 0 auto;
  padding-top: 1.25rem;
}

.breadcrumb ol {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.breadcrumb li + li::before {
  margin-right: 0.5rem;
  color: #a0a0a5;
  content: "/";
}

.breadcrumb a:hover {
  color: var(--brand-red);
}

.breadcrumb a,
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.page-hero {
  width: var(--content);
  min-height: clamp(470px, 63vh, 680px);
  margin: 0 auto;
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 0.25fr 1.75fr;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.page-hero__index {
  align-self: start;
  color: var(--brand-red);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0.16;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
}

.page-hero__lede {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1rem + 0.55vw, 1.45rem);
}

.cms-copy {
  padding-block: var(--space-3);
}

.cms-copy .prose {
  max-width: var(--reading);
  font-size: 1.12rem;
}

.cms-copy .prose p:last-child {
  margin-bottom: 0;
}

.capability-list,
.product-lines,
.case-story,
.practice-map,
.global-network,
.measurement-section,
.insight-index,
.about-statement,
.timeline,
.careers,
.contact-layout,
.article-page {
  width: var(--content);
  margin: 0 auto;
}

.capability-list,
.product-lines {
  padding-block: var(--space-4);
}

.capability-list article {
  min-height: 215px;
  padding: 2.25rem 0;
  display: grid;
  grid-template-columns: 0.18fr 0.42fr 0.9fr 0.6fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.capability-list article > span {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.capability-list h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: clamp(2rem, 3vw, 3.7rem);
}

.capability-list p {
  margin: 0;
  font-size: 1.08rem;
}

.capability-list small {
  color: var(--ink-soft);
}

.inline-cta {
  padding: var(--space-3) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}

.inline-cta h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.5rem);
}

.product-lines article {
  min-height: 270px;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 0.4fr 0.7fr 0.9fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.product-lines article > div {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-lines article span {
  color: var(--brand-red);
  font-size: 1.3rem;
  font-weight: 800;
}

.product-lines article small {
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}

.product-lines h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.9rem);
}

.product-lines p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.technology-principles {
  padding: var(--space-4) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
}

.section--red {
  background: var(--brand-red);
  color: #fff;
}

.technology-principles .section-kicker { color: #fff; opacity: 0.8; }
.technology-principles h2 { margin-bottom: var(--space-3); }
.technology-principles > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.5); }
.technology-principles > div p { padding: 1.5rem 2rem 0 0; }
.technology-principles > div p + p { padding-left: 2rem; border-left: 1px solid rgba(255,255,255,0.35); }
.technology-principles strong { display: block; margin-bottom: 0.8rem; font-size: 1.2rem; }

.case-story {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.case-story__statement h2 {
  max-width: 14ch;
}

.case-story__statement > p:last-child {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.case-numbers {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.case-numbers div {
  min-height: 150px;
  padding: 1.5rem 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.case-numbers dt {
  color: var(--brand-red);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.case-numbers dd {
  max-width: 12rem;
  margin: 0;
  color: var(--ink-soft);
}

.practice-map {
  padding-bottom: var(--space-5);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

.practice-map ol {
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.practice-map li {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 0.18fr 0.5fr 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.practice-map li > span { color: var(--brand-red); font-size: 0.8rem; font-weight: 800; }
.practice-map li > strong { font-size: 1.08rem; }
.practice-map li > p { margin: 0; color: var(--ink-soft); }

.global-network {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.global-network__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--brand-red);
  clip-path: polygon(0 0, 100% 12%, 92% 100%, 8% 91%);
}

.global-network__visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.22;
}

.network-rings {
  position: absolute;
  inset: 16%;
  display: grid;
  place-items: center;
}

.network-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
}

.network-rings i:nth-child(2) { transform: scaleX(0.45); }
.network-rings i:nth-child(3) { transform: scaleY(0.45); }
.network-rings span { z-index: 1; color: #fff; font-size: clamp(1.8rem, 4vw, 4rem); font-weight: 900; line-height: 0.92; text-align: center; }

.global-network__copy h2 { max-width: 10ch; }
.global-network__copy > p:not(.section-kicker) { color: var(--ink-soft); font-size: 1.08rem; }
.global-network__copy ul { margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.global-network__copy li { padding: 1.2rem 0; display: flex; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); }
.global-network__copy li span { color: var(--ink-soft); text-align: right; }

.platform-marquee {
  min-height: 145px;
  padding: 1rem max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: var(--brand-red);
  font-size: clamp(1.5rem, 3.5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.measurement-section {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.measurement-section h2 { max-width: 12ch; }
.measurement-section ol { padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.measurement-section li { min-height: 92px; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid var(--line); font-size: 1.1rem; font-weight: 650; }
.measurement-section li span { color: var(--brand-red); font-size: 0.78rem; }

.insight-index {
  padding-block: var(--space-4);
}

.insight-index__filter {
  min-height: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 2rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.insight-index__filter span[aria-current="true"] {
  color: var(--brand-red);
  font-weight: 750;
}

.article-list--index article {
  min-height: 210px;
}

.about-statement {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
}

.about-statement h2 { max-width: 14ch; }
.about-statement > div { align-self: end; color: var(--ink-soft); font-size: 1.08rem; }

.timeline {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 5rem;
  border-top: 1px solid var(--ink);
}

.timeline ol { padding: 0; list-style: none; }
.timeline li { min-height: 145px; padding: 1.5rem 0; display: grid; grid-template-columns: 0.35fr 1fr; gap: 2rem; border-bottom: 1px solid var(--line); }
.timeline time { color: var(--brand-red); font-size: 1.55rem; font-weight: 800; }
.timeline h3 { margin-bottom: 0.7rem; }
.timeline p { margin: 0; color: var(--ink-soft); }

.careers {
  margin-bottom: var(--space-5);
  padding: var(--space-3);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  background: var(--paper-warm);
}

.careers h2 { margin-bottom: 1rem; }
.careers p:not(.section-kicker) { max-width: 700px; margin: 0; color: var(--ink-soft); }

.contact-layout {
  padding-block: var(--space-4) var(--space-5);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-details h2 { margin-bottom: 3rem; }
.contact-details address { font-style: normal; border-top: 1px solid var(--ink); }
.contact-details address div { padding: 1.25rem 0; display: grid; grid-template-columns: 0.25fr 0.75fr; gap: 1rem; border-bottom: 1px solid var(--line); }
.contact-details address span { color: var(--ink-soft); font-size: 0.78rem; }
.contact-details address a { color: var(--brand-red); font-weight: 750; }
.contact-details address p { margin: 0; }
.contact-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.9rem; }

.article-page {
  padding: var(--space-4) 0 var(--space-5);
}

.article-page > header {
  max-width: 1100px;
  margin: 0 auto var(--space-4);
  text-align: center;
}

.article-page > header h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.article-page__description {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.4rem);
}

.article-page > header > div {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.article-page__layout {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 5rem;
  border-top: 1px solid var(--ink);
  padding-top: var(--space-3);
}

.article-page aside {
  position: sticky;
  top: 8rem;
  align-self: start;
  display: grid;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.article-page aside span { margin-bottom: 0.75rem; color: var(--brand-red); font-weight: 800; letter-spacing: 0.12em; }
.article-page aside a { width: fit-content; color: var(--ink-soft); }
.article-page aside a:hover { color: var(--brand-red); }

.article-body {
  max-width: var(--reading);
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  line-height: 1.9;
}

.article-body p { margin-bottom: 1.7rem; }
.article-body h2 { margin: 3.5rem 0 1.3rem; font-size: clamp(2rem, 3.3vw, 3.5rem); }

.article-page > footer {
  max-width: var(--reading);
  margin: var(--space-4) 0 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-block: 1px solid var(--line);
}

.article-page > footer p { max-width: 29rem; margin: 0; font-size: 1.05rem; font-weight: 650; }

.site-footer {
  padding: var(--space-4) max(40px, calc((100vw - min(1380px, calc(100vw - 80px))) / 2)) 2rem;
  background: var(--night);
  color: #fff;
}

.site-footer__lead {
  padding-bottom: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  border-bottom: 1px solid #3a3a40;
}

.site-footer__lead h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5.6rem);
}

.site-footer__grid {
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.4fr;
  gap: 3rem;
  color: #b8b8bd;
  font-size: 0.88rem;
}

.footer-company {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__grid p { max-width: 34rem; }
.site-footer__grid span { width: 3.5rem; display: inline-block; color: #77777e; }
.site-footer__grid a:hover { color: #fff; }
.site-footer__legal { text-align: right; }

.site-footer__filing {
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #3a3a40;
  color: #b8b8bd;
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.site-footer__filing a:hover,
.site-footer__filing a:focus-visible {
  color: #fff;
}

@media (max-width: 1240px) {
  :root {
    --content: min(1120px, calc(100vw - 56px));
  }

  .site-header__inner { gap: 1rem; }
  .site-nav { gap: 1rem; font-size: 0.86rem; }

  .home-hero {
    grid-template-columns: minmax(470px, 0.9fr) minmax(520px, 1.1fr);
  }

  .hero-copy {
    padding-left: 28px;
  }

  .hero-visual { margin-left: -6rem; }
  .network-node { width: 54px; }
  .data-panel { width: 160px; }
  .destination-frame { width: 125px; }
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 48px);
  }

  .site-header__inner { min-height: 80px; }
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: 81px 0 auto;
    max-height: calc(100svh - 81px);
    padding: 1.5rem 24px 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: auto;
    border-top: 1px solid var(--line);
    background: #fff;
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a,
  .site-nav a[data-nav="contact"] {
    min-height: 62px;
    display: flex;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav a:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
  .site-nav .admin-link { margin: 0; padding-left: 0; border-left: 0; color: var(--ink-soft); }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: var(--content);
    margin: 0 auto;
    padding: var(--space-4) 0 var(--space-3);
  }

  .hero-copy h1 { max-width: 11ch; font-size: clamp(4rem, 10vw, 6.4rem); }

  .hero-visual {
    min-height: 630px;
    margin: 0;
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%);
  }

  .growth-orbit { inset: 12% 3% 1% 8%; }
  .digital-globe { width: min(68vw, 590px); left: 15%; }

  .section { grid-template-columns: 72px 1fr; }
  .case-feature { grid-template-columns: 1fr; }
  .case-feature__system { grid-template-columns: repeat(3, 1fr); }
  .case-feature__system span:nth-child(even) { padding-left: 0; border-left: 0; }
  .case-feature__system span:not(:nth-child(3n + 1)) { padding-left: 1rem; border-left: 1px solid #444449; }
  .product-showcase__grid { grid-template-columns: 1fr; }
  .product-showcase h2 { max-width: 14ch; }
  .conversion-section { grid-template-columns: 1fr; }
  .conversion-section__intro { position: static; }

  .page-hero { grid-template-columns: 0.2fr 1.8fr; }
  .page-hero h1 { font-size: clamp(3.2rem, 8.5vw, 6.2rem); }
  .capability-list article { grid-template-columns: 0.15fr 0.4fr 1fr; }
  .capability-list small { grid-column: 3; }
  .product-lines article { grid-template-columns: 0.3fr 0.7fr 1fr; gap: 1.5rem; }
  .practice-map { grid-template-columns: 1fr; }
  .global-network { gap: 3rem; }
  .platform-marquee { justify-content: flex-start; }
  .measurement-section { grid-template-columns: 1fr; }
  .about-statement { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 0.55fr 1.45fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .article-page__layout { grid-template-columns: 0.35fr 1.65fr; gap: 2.5rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__legal { text-align: left; }
}

@media (max-width: 720px) {
  :root {
    --content: calc(100vw - 36px);
  }

  html { scroll-padding-top: 5.5rem; }
  .site-header__inner { min-height: 72px; }
  .brand-link img { width: 165px; }
  .site-nav { inset: 73px 0 auto; max-height: calc(100svh - 73px); grid-template-columns: 1fr; padding-inline: 18px; }
  .site-nav a:nth-child(even) { padding-left: 0; border-left: 0; }

  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.5rem); }

  .hero-copy { padding-top: 3.5rem; }
  .hero-copy h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .hero-lede br { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .proof-metrics { grid-template-columns: 1fr; }
  .proof-metrics div { min-height: 86px; padding: 1rem 0; display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; border-bottom: 1px solid var(--line); }
  .proof-metrics div + div { padding-left: 0; border-left: 0; }
  .proof-metrics dt { font-size: 2.1rem; }
  .proof-metrics dd { margin: 0; }
  .partner-line { line-height: 1.35; }

  .hero-visual { min-height: 490px; }
  .growth-orbit { inset: 15% -8% -4% 0; }
  .digital-globe { width: 86vw; left: 8%; top: 24%; }
  .data-panel { width: 135px; top: 5%; right: 8%; }
  .data-panel strong { font-size: 1.8rem; }
  .destination-frame { width: 98px; left: 19%; top: 8%; }
  .destination-frame--two { width: 90px; right: 13%; bottom: 4%; left: auto; top: auto; }
  .network-node { width: 46px; border-width: 2px; }
  .node--four { width: 58px; }

  .section { padding-block: var(--space-4); grid-template-columns: 1fr; }
  .section__rail { display: none; }
  .section-heading { align-items: start; flex-direction: column; }
  .solution-steps { grid-template-columns: 1fr; }
  .solution-steps li { min-height: auto; padding: 1.3rem 0; display: grid; grid-template-columns: 0.2fr 0.5fr 1fr; align-items: start; gap: 1rem; }
  .solution-steps li:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .solution-steps h3 { margin: 0; font-size: 1.5rem; }
  .solution-steps p { margin: 0; }

  .case-feature { padding-inline: 18px; gap: 2rem; }
  .case-feature__system { grid-template-columns: 1fr; }
  .case-feature__system span,
  .case-feature__system span:not(:nth-child(3n + 1)) { min-height: 64px; padding: 0; border-left: 0; }

  .product-window { aspect-ratio: auto; }
  .product-window__body { min-height: auto; grid-template-columns: 1fr; }
  .product-window__body aside { display: none; }
  .product-window__body > div { padding: 1.35rem; }

  .marketing-strip { padding-inline: 18px; grid-template-columns: 1fr; }
  .marketing-strip > .text-link { grid-column: 1; grid-row: auto; justify-self: start; }
  .marketing-strip ul { gap: 0.6rem 1.4rem; }
  .article-list article { grid-template-columns: 1fr; gap: 0.8rem; }
  .article-list article > div { flex-direction: row; gap: 1rem; }
  .conversion-section { padding-inline: 18px; }
  .lead-form { grid-template-columns: 1fr; }
  .form-field--wide,
  .form-actions,
  .form-consent { grid-column: 1; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .article-list article h3 a,
  .conversion-section address a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .breadcrumb { padding-top: 0.9rem; }
  .page-hero { min-height: 500px; padding-block: 3rem; grid-template-columns: 1fr; align-content: center; }
  .page-hero__index { position: absolute; right: 18px; font-size: 6rem; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }

  .capability-list article { min-height: auto; grid-template-columns: 0.2fr 0.8fr; gap: 1rem; }
  .capability-list h2 { font-size: 2.2rem; }
  .capability-list p,
  .capability-list small { grid-column: 2; }
  .inline-cta { padding-inline: 18px; align-items: stretch; flex-direction: column; }
  .product-lines article { min-height: auto; grid-template-columns: 1fr; gap: 1rem; }
  .product-lines article > div { flex-direction: row; justify-content: space-between; gap: 1rem; }
  .technology-principles { padding-inline: 18px; }
  .technology-principles > div { grid-template-columns: 1fr; }
  .technology-principles > div p,
  .technology-principles > div p + p { padding: 1.3rem 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.35); }

  .case-story { grid-template-columns: 1fr; }
  .case-numbers div { min-height: 115px; }
  .practice-map li { grid-template-columns: 0.18fr 0.82fr; }
  .practice-map li > p { grid-column: 2; }
  .global-network { grid-template-columns: 1fr; }
  .global-network__visual { max-width: 520px; }
  .global-network__copy li { flex-direction: column; gap: 0.3rem; }
  .global-network__copy li span { text-align: left; }
  .platform-marquee { min-height: 100px; padding-inline: 18px; font-size: 1.8rem; }
  .measurement-section { gap: 2rem; }
  .about-statement { gap: 1rem; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 0.25fr 0.75fr; }
  .careers { padding: 1.5rem; align-items: stretch; flex-direction: column; }
  .contact-details address div { grid-template-columns: 0.3fr 0.7fr; }

  .article-page { padding-top: 2.5rem; }
  .article-page > header { text-align: left; }
  .article-page > header > div { justify-content: flex-start; }
  .article-page__layout { grid-template-columns: 1fr; }
  .article-page aside { position: static; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
  .article-page > footer { align-items: stretch; flex-direction: column; }

  .site-footer { padding-inline: 18px; }
  .site-footer__lead { align-items: start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer__filing { white-space: normal; }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .lead-form,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .home-hero,
  .section,
  .page-hero {
    min-height: auto;
    break-inside: avoid;
  }
}
