:root {
  --v2-ink: #081426;
  --v2-muted: #536074;
  --v2-line: #d9e1eb;
  --v2-soft: #f4f7fb;
  --v2-blue: #075ee8;
  --v2-green: #138b45;
  --v2-violet: #6e35c9;
  --v2-orange: #c96a00;
  --v2-night: #071525;
}

html {
  color: var(--v2-ink);
  background: #fff;
  letter-spacing: 0;
}

body.subpage {
  color: var(--v2-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.subpage * {
  letter-spacing: 0;
}

.subpage .shell {
  width: min(1280px, calc(100% - 64px));
}

.subpage :focus-visible {
  outline: 3px solid #ffbd2e;
  outline-offset: 3px;
}

.subpage .site-header {
  position: relative;
  height: 82px;
  border-bottom: 1px solid #edf1f6;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: none;
}

.subpage .nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: 190px 1fr auto;
  gap: 34px;
}

.subpage .brand img {
  width: 172px;
  height: auto;
}

.subpage .primary-nav {
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.subpage .primary-nav a {
  position: relative;
  text-decoration: none;
}

.subpage .primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--v2-blue);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.subpage .primary-nav a:hover::after,
.subpage .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subpage .nav-cta,
.subpage .button {
  min-height: 50px;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.subpage .nav-cta,
.subpage .button.primary {
  color: #fff;
  background: var(--v2-blue);
  box-shadow: 0 10px 24px rgba(7, 94, 232, 0.18);
}

.subpage .nav-cta:hover,
.subpage .button.primary:hover {
  background: #0449b9;
  box-shadow: 0 14px 28px rgba(7, 94, 232, 0.24);
  transform: translateY(-2px);
}

.subpage .button.secondary {
  border-color: #9ba8ba;
  color: var(--v2-ink);
  background: #fff;
}

.subpage .subpage-main {
  padding-bottom: 0;
}

.subpage .page-hero,
.subpage .page-hero-full {
  display: flex;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
  padding: 58px 0;
  color: var(--v2-ink);
  background: #fff;
}

.subpage .page-hero-full::after {
  display: none;
}

.subpage .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  gap: 64px;
  align-items: center;
}

.subpage .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--v2-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.subpage .page-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.subpage.lane-law .page-kicker {
  color: var(--v2-violet);
}

.subpage .page-hero h1 {
  max-width: 620px;
  margin: 18px 0 20px;
  color: var(--v2-ink);
  font-size: 58px;
  font-weight: 780;
  line-height: 1.04;
}

.subpage .page-hero .lead {
  max-width: 610px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 18px;
  font-weight: 470;
  line-height: 1.62;
}

.subpage .page-actions {
  margin-top: 28px;
}

.subpage .page-kpis {
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.subpage .page-kpi {
  min-height: 92px;
  border: 0;
  border-right: 1px solid var(--v2-line);
  border-radius: 0;
  padding: 17px 16px 14px 0;
  color: var(--v2-ink);
  background: transparent;
}

.subpage .page-kpi + .page-kpi {
  padding-left: 16px;
}

.subpage .page-kpi:last-child {
  border-right: 0;
}

.subpage .page-kpi b {
  color: var(--v2-ink);
  font-size: 21px;
}

.subpage .page-kpi span {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 650;
}

.subpage .page-visual,
.subpage .realistic-visual {
  height: 470px;
  overflow: hidden;
  border: 1px solid #cdd6e1;
  border-radius: 8px;
  background: var(--v2-soft);
  box-shadow: 0 24px 60px rgba(20, 36, 61, 0.13);
}

.subpage .realistic-visual::after {
  display: none;
}

.subpage .page-visual img,
.subpage .page-visual video {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  aspect-ratio: auto;
  object-fit: cover;
}

.subpage .ai-visual-disclosure {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: #fff;
  background: rgba(7, 17, 38, 0.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.subpage .page-plan-strip {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #f7f9fc;
}

.subpage .page-plan-grid {
  display: grid;
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 42px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.subpage .page-plan-grid > div:first-child > span {
  color: var(--v2-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.subpage.lane-law .page-plan-grid > div:first-child > span {
  color: var(--v2-violet);
}

.subpage .page-plan-grid h2 {
  margin: 5px 0;
  color: var(--v2-ink);
  font-size: 28px;
  line-height: 1.1;
}

.subpage .page-plan-grid p {
  max-width: 690px;
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.5;
}

.subpage .page-plan-price {
  display: grid;
  min-width: 155px;
}

.subpage .page-plan-price strong {
  color: var(--v2-ink);
  font-size: 29px;
  line-height: 1.1;
}

.subpage .page-plan-price small {
  margin-top: 5px;
  color: var(--v2-muted);
}

.subpage .page-plan-actions {
  display: grid;
  min-width: 190px;
  gap: 8px;
  text-align: center;
}

.subpage .page-plan-actions > a:last-child {
  color: var(--v2-blue);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 820px) {
  .subpage .page-plan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .subpage .page-plan-price,
  .subpage .page-plan-actions {
    min-width: 0;
  }

  .subpage .page-plan-actions {
    justify-items: start;
    text-align: left;
  }
}

.subpage .launch-sprint-band {
  border-bottom: 1px solid var(--v2-line);
  color: var(--v2-ink);
  background: #f6faff;
}

.subpage .launch-sprint-shell {
  padding-top: 58px;
  padding-bottom: 58px;
}

.subpage .launch-sprint-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 44px;
  align-items: stretch;
}

.subpage .launch-sprint-head h2 {
  max-width: 820px;
  margin: 8px 0 14px;
  color: var(--v2-ink);
  font-size: 43px;
  line-height: 1.06;
}

.subpage .launch-sprint-head p {
  max-width: 840px;
  margin: 0;
  color: #45556e;
  font-size: 17px;
  line-height: 1.6;
}

.subpage .launch-sprint-price {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 26px;
  border: 1px solid #cbdcf1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 39, 73, 0.09);
}

.subpage .launch-sprint-price span,
.subpage .launch-sprint-price b {
  color: var(--v2-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.subpage.lane-law .launch-sprint-price span,
.subpage.lane-law .launch-sprint-price b {
  color: var(--v2-violet);
}

.subpage .launch-sprint-price strong {
  color: var(--v2-ink);
  font-size: 43px;
  line-height: 1;
}

.subpage .launch-sprint-price small {
  color: #596a82;
  font-size: 12px;
  line-height: 1.45;
}

.subpage .launch-sprint-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
  margin-top: 28px;
}

.subpage .launch-sprint-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid #d6e4f4;
  border-radius: 8px;
  background: #fff;
}

.subpage .launch-sprint-grid h3 {
  margin: 0 0 14px;
  color: var(--v2-ink);
  font-size: 19px;
  line-height: 1.2;
}

.subpage .launch-sprint-grid p {
  margin: 0 0 13px;
  color: #4c5d76;
  font-size: 13px;
  line-height: 1.55;
}

.subpage .launch-sprint-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subpage .launch-sprint-grid li {
  position: relative;
  padding-left: 18px;
  color: #40516a;
  font-size: 13px;
  line-height: 1.45;
}

.subpage .launch-sprint-grid li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--v2-blue);
  content: "";
}

.subpage.lane-law .launch-sprint-grid li::before {
  background: var(--v2-violet);
}

.subpage .launch-sprint-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.subpage.lane-contractor .page-visual img {
  object-position: 37% center;
}

.subpage.lane-law .page-visual img {
  object-position: 64% center;
}

.subpage .page-section-bleed {
  background: var(--v2-night);
}

.subpage .visual-story,
.subpage .visual-story-full {
  display: grid;
  width: min(1280px, calc(100% - 64px));
  min-height: 580px;
  grid-template-columns: minmax(330px, 0.75fr) minmax(540px, 1.25fr);
  align-items: center;
  gap: 62px;
  margin: 0 auto;
  padding: 64px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--v2-night);
  box-shadow: none;
}

.subpage .visual-story-full::after {
  display: none;
}

.subpage .visual-story h2 {
  margin: 16px 0 16px;
  color: #fff;
  font-size: 42px;
  font-weight: 740;
  line-height: 1.08;
}

.subpage .visual-story .page-kicker {
  color: #9fc7ff;
}

.subpage .visual-story p {
  color: #c8d3df;
  font-size: 16px;
  font-weight: 470;
  line-height: 1.65;
}

.subpage .signal-list {
  gap: 0;
  margin-top: 28px;
}

.subpage .signal-item {
  padding: 13px 0;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.subpage .signal-item b {
  font-size: 13px;
}

.subpage .signal-item span {
  color: #c8d3df;
  font-size: 13px;
  font-weight: 520;
}

.subpage .os-schematic-stage {
  min-height: 500px;
}

.subpage .os-schematic-stage::before {
  display: none;
}

.subpage .os-connectors {
  filter: none;
}

.subpage .os-connectors path {
  stroke: rgba(185, 202, 223, 0.5);
  stroke-width: 2;
}

.subpage .os-connectors .feedback {
  stroke: rgba(72, 194, 111, 0.68);
}

.subpage .os-core {
  width: 174px;
  min-height: 174px;
}

.subpage .os-core::before {
  background: #0f2239;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.23);
}

.subpage .os-core::after {
  inset: 8px;
  border-color: rgba(89, 152, 241, 0.62);
}

.subpage .os-core img {
  width: 105px;
  border-radius: 5px;
  box-shadow: none;
}

.subpage .os-core b {
  font-size: 16px;
}

.subpage .os-node {
  width: 160px;
  min-height: 94px;
  gap: 4px;
  border-color: rgba(184, 201, 222, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: none;
}

.subpage .os-node b {
  font-size: 15px;
}

.subpage .os-node small {
  font-size: 11px;
  font-weight: 520;
}

.subpage .os-feedback {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.subpage .page-section {
  padding: 58px 0;
}

.subpage .page-section h2,
.subpage .page-band h2 {
  margin: 0 0 12px;
  color: var(--v2-ink);
  font-size: 38px;
  font-weight: 740;
  line-height: 1.1;
}

.subpage .page-section > p,
.subpage .page-band > p {
  color: var(--v2-muted);
  font-size: 15px;
  font-weight: 470;
}

.subpage .signal-grid {
  gap: 34px;
  margin-top: 28px;
}

.subpage .signal-tile,
.subpage .signal-tile.strong {
  min-height: 145px;
  border-top: 2px solid rgba(7, 94, 232, 0.35);
  padding: 22px 0;
  background: transparent;
}

.subpage .signal-tile.strong {
  border-top-color: rgba(19, 139, 69, 0.45);
}

.subpage .signal-tile span {
  color: #566275;
  font-size: 12px;
}

.subpage .signal-tile b {
  margin-top: 12px;
  color: var(--v2-ink);
  font-size: 24px;
  line-height: 1.2;
}

.subpage .page-band,
.subpage .page-band.dark {
  margin: 0;
  border: 0;
  border-radius: 8px;
  padding: 46px;
  color: #fff;
  background: var(--v2-night);
  box-shadow: none;
}

.subpage .page-band.dark h2 {
  color: #fff;
}

.subpage .page-band.dark > p {
  color: #c8d3df;
}

.subpage .step-list {
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.subpage .step-item {
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 17px 0;
  color: #fff;
  background: transparent;
}

.subpage .step-item::before {
  border-radius: 5px;
  color: #fff;
  background: var(--v2-blue);
}

.subpage .step-item span {
  color: #b9c7d8;
  font-weight: 500;
}

.subpage .feature-grid,
.subpage .outcome-grid,
.subpage .proof-grid,
.subpage .faq-list {
  gap: 14px;
  margin-top: 24px;
}

.subpage .checkbox-field input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.subpage .feature-card,
.subpage .outcome-card,
.subpage .proof-card,
.subpage .faq-card {
  border-color: var(--v2-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 42, 67, 0.05);
}

.subpage .feature-card h3,
.subpage .outcome-card h3,
.subpage .proof-card h3,
.subpage .faq-card h3 {
  color: var(--v2-ink);
  font-size: 18px;
}

.subpage .feature-card p,
.subpage .outcome-card p,
.subpage .proof-card p,
.subpage .faq-card p {
  color: var(--v2-muted);
  font-size: 14px;
  font-weight: 470;
}

.subpage .page-footer-nav {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.subpage .link-card-grid {
  gap: 12px;
}

.subpage .link-card {
  border-color: var(--v2-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 42, 67, 0.05);
}

.subpage .link-card:hover {
  border-color: var(--v2-blue);
  transform: translateY(-2px);
}

.subpage .cta-band {
  display: grid;
  width: min(1280px, calc(100% - 64px));
  min-height: 185px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  margin: 18px auto 72px;
  border-radius: 8px;
  padding: 38px 48px;
  color: #fff;
  background: #0a2f6d;
  box-shadow: none;
}

.subpage .cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
}

.subpage .cta-band p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #d0dced;
  font-size: 15px;
  font-weight: 470;
}

.subpage .button.light {
  color: #0a2f6d;
  background: #fff;
  box-shadow: none;
}

.subpage .site-footer {
  border-top: 0;
  padding: 34px 0;
  color: #cbd5e1;
  background: #050c16;
}

.subpage .site-footer .shell {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
}

.subpage .site-footer img {
  width: 155px;
  height: auto;
  filter: brightness(0) invert(1);
}

.subpage .site-footer p {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
}

.subpage .site-footer .footer-note {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8d9bad;
}

.subpage .legal-links {
  justify-content: flex-end;
  color: #d6dfeb;
  font-size: 12px;
}

.subpage .legal-links a {
  color: #b9d4ff;
}

@media (max-width: 1140px) {
  .subpage .shell,
  .subpage .visual-story,
  .subpage .visual-story-full,
  .subpage .cta-band {
    width: min(1280px, calc(100% - 40px));
  }

  .subpage .primary-nav {
    gap: 18px;
    font-size: 12px;
  }

  .subpage .page-hero-grid {
    grid-template-columns: minmax(380px, 0.85fr) minmax(460px, 1.15fr);
    gap: 36px;
  }

  .subpage .page-hero h1 {
    font-size: 49px;
  }

  .subpage .visual-story,
  .subpage .visual-story-full {
    grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .subpage .site-header {
    height: 72px;
  }

  .subpage .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
  }

  .subpage .brand img {
    width: 154px;
  }

  .subpage .menu-button {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    background: #fff;
  }

  .subpage .menu-button > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--v2-ink);
  }

  .subpage .primary-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--v2-line);
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(16, 32, 55, 0.16);
  }

  .subpage .primary-nav[data-open="true"] {
    display: flex;
  }

  .subpage .primary-nav a {
    padding: 12px;
    font-size: 15px;
  }

  .subpage .primary-nav a::after {
    display: none;
  }

  .subpage .nav-cta {
    min-height: 44px;
  }

  .subpage .page-hero,
  .subpage .page-hero-full {
    min-height: 0;
    padding: 54px 0;
  }

  .subpage .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage .page-hero h1 {
    font-size: 50px;
  }

  .subpage .page-visual,
  .subpage .realistic-visual {
    height: 430px;
  }

  .subpage .visual-story,
  .subpage .visual-story-full {
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

  .subpage .launch-sprint-head,
  .subpage .launch-sprint-grid {
    grid-template-columns: 1fr;
  }

  .subpage .os-schematic-stage {
    min-height: 520px;
  }

  .subpage .signal-grid,
  .subpage .feature-grid,
  .subpage .outcome-grid,
  .subpage .proof-grid,
  .subpage .faq-list {
    grid-template-columns: 1fr;
  }

  .subpage .site-footer .shell {
    grid-template-columns: 160px 1fr;
  }

  .subpage .legal-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .subpage .shell,
  .subpage .visual-story,
  .subpage .visual-story-full,
  .subpage .cta-band {
    width: auto;
    max-width: 1180px;
    margin-right: 16px;
    margin-left: 16px;
  }

  .subpage .page-hero-grid,
  .subpage .page-hero-grid > *,
  .subpage .page-actions,
  .subpage .page-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .subpage .site-header {
    height: 68px;
  }

  .subpage .nav-shell {
    min-height: 68px;
    gap: 9px;
  }

  .subpage .brand img {
    width: 132px;
  }

  .subpage .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .subpage .menu-button {
    width: 40px;
    height: 40px;
  }

  .subpage .primary-nav {
    top: 68px;
    right: 16px;
    left: 16px;
  }

  .subpage .page-hero,
  .subpage .page-hero-full {
    padding: 38px 0 42px;
  }

  .subpage .page-hero-grid {
    gap: 30px;
  }

  .subpage .page-hero h1 {
    font-size: 37px;
    line-height: 1.07;
  }

  .subpage .launch-sprint-shell {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .subpage .launch-sprint-head h2 {
    font-size: 30px;
  }

  .subpage .launch-sprint-price,
  .subpage .launch-sprint-grid article {
    padding: 20px;
  }

  .subpage .launch-sprint-actions,
  .subpage .launch-sprint-actions .button {
    width: 100%;
  }

  .subpage .page-hero .lead {
    font-size: 16px;
  }

  .subpage .page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subpage .button {
    width: 100%;
  }

  .subpage .page-kpis {
    grid-template-columns: 1fr;
  }

  .subpage .page-kpi,
  .subpage .page-kpi + .page-kpi {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
    padding: 13px 0;
  }

  .subpage .page-kpi:last-child {
    border-bottom: 0;
  }

  .subpage .page-visual,
  .subpage .realistic-visual {
    height: 330px;
  }

  .subpage .visual-story h2 {
    font-size: 32px;
  }

  .subpage .os-schematic-stage {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px 0 0;
    transform: none;
  }

  .subpage .os-core,
  .subpage .os-node,
  .subpage .os-feedback {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .subpage .os-core {
    grid-column: 1 / -1;
    width: 160px;
    min-height: 160px;
    justify-self: center;
  }

  .subpage .os-node {
    min-height: 88px;
    text-align: left;
  }

  .subpage .os-feedback {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    text-align: center;
  }

  .subpage .page-section {
    padding: 44px 0;
  }

  .subpage .page-section h2,
  .subpage .page-band h2 {
    font-size: 29px;
  }

  .subpage .signal-grid {
    gap: 18px;
  }

  .subpage .signal-tile,
  .subpage .signal-tile.strong {
    min-height: 0;
  }

  .subpage .signal-tile b {
    font-size: 22px;
  }

  .subpage .page-band,
  .subpage .page-band.dark {
    padding: 28px 20px;
  }

  .subpage .step-item {
    grid-template-columns: 38px 1fr;
  }

  .subpage .cta-band {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    padding: 30px 22px;
  }

  .subpage .cta-band h2 {
    font-size: 28px;
  }

  .subpage .site-footer .shell {
    grid-template-columns: 1fr;
  }

  .subpage .legal-links {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subpage *,
  .subpage *::before,
  .subpage *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
