/* ==========================================================================
   Safe Step, Inc. The client's brand, pushed hard.

   Rules of this system, applied everywhere:
     - White ground. Navy and the pale logo blue. No third colour exists.
     - One neo-grotesque, set dense and Swiss, tabular figures throughout.
     - Hairline rules divide. No shadows. No rounded corners. No gradients.
     - Everything left-aligned to one grid. Nothing centred.
     - Uppercase tracked micro-labels, not mono, not pills.
     - The six-diamond lattice is the only graphic device.

   Component classes are BEM-named so the Bricks convert stage stays
   mechanical (one owner per layer, see /forge-html-convert).
   ========================================================================== */

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

html {
  overflow-x: clip; /* drawer hygiene. A seatbelt, NOT a fix: always compare
                       scrollWidth to clientWidth when measuring. */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--navy);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
button {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: var(--track-tight);
  margin: 0 0 0.5em;
}

/* The big persuasive line in the small-H1/big-H2 hero pattern is a <p>, so
   the h1..h6 rule above misses it. Set the display treatment explicitly. */
.display {
  font-family: var(--font);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--blue);
  color: var(--navy-deep);
}
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   ONE container, ONE gutter. No component may define its own page-edge
   padding, or it will out-specify the responsive override and break the
   shared left edge. Never `display:flex` this element directly.
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}
.section--lg {
  padding-block: var(--section-y-lg);
}
.section--recess {
  background: var(--off);
}
.section--navy {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
}
.section--navy h2,
.section--navy h3,
.section--navy .display {
  color: #fff;
}

/* --- The universal micro-label. Grotesque, uppercase, tracked. ----------- */
.label,
.eyebrow {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--navy-mid);
  margin: 0 0 0.85rem;
}

/* --------------------------------------------------------------------------
   Section head: a numbered marker on a full-width rule. The document spine.
   -------------------------------------------------------------------------- */
.shead {
  border-top: 2px solid var(--navy);
  padding-top: 0.9rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  display: grid;
  gap: 0.35rem 2.5rem;
}
@media (min-width: 900px) {
  .shead {
    grid-template-columns: 9rem minmax(0, 1fr);
  }
}
.shead__n {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 0.35rem;
}
.shead__title {
  font-size: var(--text-2xl);
  max-width: 24ch;
  margin: 0;
  font-weight: 600;
}
.shead__lede {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 62ch;
  margin: 0.7rem 0 0;
  line-height: 1.55;
}
/* Rhythm variants. Fourteen identically-built sections reads as machine
   output, so the spine bends: some heads stack the label over the title,
   some run at half size, some carry no lede at all. */
.shead--stack {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .shead--stack {
    grid-template-columns: 1fr;
  }
}
.shead--stack .shead__n {
  padding-top: 0;
}
.shead--sm .shead__title {
  font-size: var(--text-xl);
  max-width: 34ch;
}
.shead--hair {
  border-top-width: 1px;
  border-top-color: var(--rule-mid);
}
.shead--lead .shead__title {
  font-size: var(--text-3xl);
  max-width: 30ch;
  text-wrap: balance;
}
.shead__title,
.hero__title,
.phero h1 {
  text-wrap: balance; /* stop every headline orphaning its tail */
}

.section--navy .shead,
.risk .shead,
.cta .shead {
  border-top-color: var(--blue);
}
.section--navy .shead__n,
.risk .shead__n,
.cta .shead__n {
  color: var(--blue);
}
.section--navy .shead__lede,
.risk .shead__lede,
.cta .shead__lede {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Buttons. Square, flat, navy or outlined. No lift, no glow.
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.14s linear, color 0.14s linear, border-color 0.14s linear;
}
.btn--accent {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--accent:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn--primary {
  background: var(--blue);
  color: var(--navy-deep);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-tint);
  border-color: var(--navy);
}
.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: var(--rule-mid);
}
.btn--white:hover {
  border-color: var(--navy);
  background: var(--blue-wash);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--rule-mid);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--blue-wash);
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(188, 228, 247, 0.55);
}
.btn--ghost-light:hover {
  background: var(--blue);
  color: var(--navy-deep);
  border-color: var(--blue);
}
.btn--block {
  width: 100%;
}
.btn--sm {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: var(--text-2xs);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Utility bar
   -------------------------------------------------------------------------- */
.utility {
  background: var(--navy-black);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-2xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 44px;
}
.utility__creds {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.utility__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.utility a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.utility a:hover {
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--rule-mid);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
  text-decoration: none;
  min-height: 44px;
}
.header__brand img {
  height: 38px;
  width: auto;
}
.header__tag {
  display: none;
  border-left: 1px solid var(--rule-mid);
  padding-left: 0.8rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .header__tag {
    display: block;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
}

.nav {
  display: none;
}
@media (min-width: 1060px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin-inline: auto;
  }
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav__link:hover,
.nav__item:hover > .nav__link,
.nav__link[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav__link svg {
  width: 8px;
  height: 8px;
  flex: none;
  opacity: 0.5;
}
.nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 330px;
  background: #fff;
  border: 1px solid var(--rule-mid);
  border-top: 2px solid var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.13s linear, visibility 0.13s;
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
}
.nav__panel a {
  display: block;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-base);
}
.nav__panel a:last-child {
  border-bottom: 0;
}
.nav__panel a span {
  display: block;
  font-weight: 500;
  font-size: 0.5625rem;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.nav__panel a:hover {
  background: var(--blue-wash);
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 0;
  cursor: pointer;
  flex: none;
}
@media (min-width: 1060px) {
  .burger {
    display: none;
  }
}
.burger span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.15s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Mobile drawer. Hidden with visibility so it cannot leak into captures.
   -------------------------------------------------------------------------- */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(1, 22, 31, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 95;
}
.scrim.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--navy-deep);
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--navy-black);
  flex: none;
}
.drawer__head img {
  height: 32px;
}
.drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex: none;
}
.drawer__close:hover {
  background: var(--blue);
  color: var(--navy-deep);
}
.drawer__nav {
  padding: 0 var(--gutter) 1rem;
  flex: 1 0 auto;
}
.drawer__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.drawer__link,
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 56px;
  padding: 1rem 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.drawer__toggle i {
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--blue);
  transition: transform 0.2s ease;
  flex: none;
}
.drawer__toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}
.drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s ease;
}
.drawer__sub > div {
  overflow: hidden;
}
.drawer__toggle[aria-expanded="true"] + .drawer__sub {
  grid-template-rows: 1fr;
}
.drawer__sub a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.65rem 0 0.65rem 1rem;
  border-left: 1px solid var(--blue);
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: var(--text-base);
}
.drawer__sub a:hover {
  color: var(--blue);
}
.drawer__foot {
  padding: 1.25rem var(--gutter) 2rem;
  background: var(--navy-black);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  flex: none;
  display: grid;
  gap: 0.7rem;
}
.drawer__call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.drawer__meta {
  font-size: var(--text-2xs);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.drawer__meta a {
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   Hero. White, dense, left-aligned. The photo is a plate bleeding right.
   -------------------------------------------------------------------------- */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--rule-mid);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  padding-block: clamp(2rem, 3.5vw, 3.25rem);
}
@media (min-width: 1000px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.66fr);
    gap: clamp(2.5rem, 4vw, 4rem);
    align-items: center;
  }
}

/* The reference line: company, place, date. A document masthead. */
.hero__ref {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--rule-mid);
  padding-bottom: 0.7rem;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
}
.hero__ref b {
  color: var(--navy);
  font-weight: 700;
}

.hero__h1 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin: 0 0 1rem;
}
.hero__title {
  font-size: var(--text-4xl);
  max-width: 13ch;
}
/* The pale logo blue as a highlight behind the payoff clause. */
.hero__title em {
  font-style: normal;
  background: var(--blue);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.12em;
  margin-left: -0.12em;
}
.hero__lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 48ch;
  margin-top: 1.35rem;
  line-height: 1.55;
}
.hero__ctas {
  margin-top: 1.75rem;
}

/* Credentials as a ruled table. */
.creds {
  margin: 2rem 0 0;
  border-top: 1px solid var(--navy);
}
.creds__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 560px) {
  .creds__row {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
  }
}
.creds__k {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.creds__v {
  font-size: var(--text-base);
  color: var(--ink);
  font-weight: 500;
}

.hero__plate {
  position: relative;
  margin-inline: calc(var(--gutter) * -1);
  order: 2;
}
@media (min-width: 1000px) {
  .hero__plate {
    order: 0;
    margin-inline: 0 calc(50% - 50vw);
    height: 100%;
    min-height: 27rem;
  }
}
.hero__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 60%;
  aspect-ratio: 16 / 10;
}
@media (min-width: 1000px) {
  .hero__plate img {
    aspect-ratio: auto;
    position: absolute;
    inset: 0;
  }
}
.hero__platecap {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--navy);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   The model. An instrument panel.
   -------------------------------------------------------------------------- */
.calc {
  background: #fff;
  border: 1px solid var(--navy);
}
.calc__head {
  padding: 0.8rem 1.15rem;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 1.5rem;
}
.calc__kicker {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.calc__title {
  font-size: 1.1875rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.calc__body {
  display: grid;
}
@media (min-width: 980px) {
  .calc__body {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  }
}
.calc__inputs {
  padding: 1.15rem 1.25rem 1.35rem;
}
@media (min-width: 980px) {
  .calc__inputs {
    border-right: 1px solid var(--navy);
  }
}
.calc__sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule);
}
.calc__fields {
  display: grid;
  gap: 0.3rem 2.25rem;
}
@media (min-width: 620px) {
  .calc__fields {
    grid-template-columns: 1fr 1fr;
  }
}
.calc__field {
  margin-bottom: 0.95rem;
}
.calc__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.calc__value {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}
.calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  background: transparent;
  cursor: pointer;
  display: block;
  margin: -10px 0;
}
.calc input[type="range"]::-webkit-slider-runnable-track {
  height: 1px;
  background: var(--rule-dark);
}
.calc input[type="range"]::-moz-range-track {
  height: 1px;
  background: var(--rule-dark);
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -6.5px;
  background: var(--navy);
  border: 0;
  border-radius: 0;
  transform: rotate(45deg);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--navy);
  border: 0;
  border-radius: 0;
  transform: rotate(45deg);
}

.calc__out {
  background: var(--blue-wash);
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid var(--navy);
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  .calc__out {
    border-top: 0;
  }
}
.calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--rule-mid);
}
.calc__cell {
  padding: 0.85rem 0.9rem 0.95rem;
}
.calc__cell + .calc__cell {
  border-left: 1px solid var(--rule-mid);
}
.calc__cell--win {
  background: var(--blue);
}
.calc__cell h4 {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}
.calc__cell--win h4 {
  color: var(--navy);
}
.calc__num {
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ink);
  display: block;
  letter-spacing: -0.04em;
}
.calc__cell--win .calc__num {
  color: var(--navy-deep);
}
.calc__unit {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 0.45rem;
}
.calc__cell--win .calc__unit {
  color: var(--navy-mid);
}
.calc__delta {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--rule-mid);
}
.calc__delta p {
  margin: 0;
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink);
}
.calc__delta strong {
  color: var(--navy);
  font-weight: 700;
}
.calc__assume {
  margin: 0.9rem 0 1.1rem;
  font-size: var(--text-2xs);
  line-height: 1.75;
  color: var(--muted);
}
.calc__assume b {
  color: var(--ink);
  font-weight: 600;
}
.calc__out .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Credential wall
   -------------------------------------------------------------------------- */
.wall {
  background: var(--off);
  border-bottom: 1px solid var(--rule-mid);
}
.wall__inner {
  padding-block: clamp(1.5rem, 2.5vw, 2.25rem);
}
.wall__label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule-mid);
}
.wall__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) {
  .wall__logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1040px) {
  .wall__logos {
    grid-template-columns: repeat(7, 1fr);
  }
}
.wall__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0.6rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 74px;
}
@media (min-width: 1040px) {
  .wall__cell {
    border-bottom: 0;
  }
  .wall__cell:last-child {
    border-right: 0;
  }
}
.wall__cell img {
  max-height: 38px;
  width: auto;
  mix-blend-mode: multiply;
}
.wall__note {
  margin: 1rem 0 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 95ch;
}

/* --------------------------------------------------------------------------
   Stat band. Navy, latticed, figures set large.
   -------------------------------------------------------------------------- */
.stats {
  background: var(--navy);
  background-image: var(--lattice-blue);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  padding: clamp(1.5rem, 2.6vw, 2.25rem) clamp(0.9rem, 1.6vw, 1.5rem) clamp(1.5rem, 2.6vw, 2.25rem) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.stat:nth-child(2n) {
  border-right: 0;
  padding-right: 0;
}
@media (min-width: 900px) {
  .stat {
    border-bottom: 0;
    padding-right: clamp(0.9rem, 1.6vw, 1.5rem);
  }
  .stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding-right: clamp(0.9rem, 1.6vw, 1.5rem);
  }
  .stat:last-child {
    border-right: 0;
  }
}
.stat__num {
  font-size: var(--text-stat);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  display: block;
}
.stat__num sup {
  font-size: 0.38em;
  vertical-align: super;
  color: var(--blue);
  letter-spacing: 0;
}
.stat__label {
  display: block;
  margin-top: 0.85rem;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  max-width: 30ch;
}
.stat__src {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.vs {
  border-top: 2px solid var(--navy);
}
.vs__head {
  display: none;
}
@media (min-width: 800px) {
  .vs__head {
    display: grid;
    grid-template-columns: 9rem 1fr 1fr;
    gap: 2rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--navy);
  }
}
.vs__head span {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.vs__head .is-us {
  color: var(--navy);
}
.vs__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .vs__row {
    grid-template-columns: 9rem 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
.vs__k {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 0.2rem;
}
.vs__a,
.vs__b {
  font-size: var(--text-base);
  line-height: 1.6;
}
.vs__a {
  color: var(--muted);
}
.vs__b {
  color: var(--ink-soft);
}
.vs__b strong {
  color: var(--navy);
  font-weight: 700;
}
.vs__mk {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
@media (min-width: 800px) {
  .vs__mk {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  border-top: 2px solid var(--navy);
}
@media (min-width: 720px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.svc {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rule-mid);
  padding: 1.25rem 0 1.5rem;
}
@media (min-width: 720px) {
  .svc {
    padding-right: 1.75rem;
    border-right: 1px solid var(--rule-mid);
  }
  .svc:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
    padding-left: 1.75rem;
  }
}
@media (min-width: 1100px) {
  .svc {
    padding-right: 1.75rem;
    padding-left: 0;
    border-right: 1px solid var(--rule-mid);
  }
  .svc:nth-child(2n) {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    border-right: 1px solid var(--rule-mid);
  }
  .svc:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
    padding-left: 1.75rem;
  }
}
.svc__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--off);
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc:hover .svc__media img {
  transform: scale(1.03);
}
.svc__no {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: block;
}
.svc__title {
  font-size: 1.1875rem;
  margin-bottom: 0.45rem;
}
.svc:hover .svc__title {
  color: var(--navy);
}
.svc__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc__body p {
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: 1rem;
}
.svc__warranty {
  margin-top: auto;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 0.7rem;
  display: block;
}
.svc__warranty b {
  color: var(--navy);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Process filmstrip
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 1px;
  grid-auto-flow: column;
  grid-auto-columns: 74%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* MUST equal the gutter or snap silently pulls card 1 off the shared edge */
  scroll-padding-inline-start: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  background: var(--rule-mid);
  border-block: 1px solid var(--rule-mid);
}
@media (min-width: 900px) {
  .steps {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}
.step {
  scroll-snap-align: start;
  background: #fff;
}
.step__media {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__n {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.55rem;
}
.step__body {
  padding: 0.85rem 0.9rem 1.1rem;
}
.step__body h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.step__body p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Before / after plates
   -------------------------------------------------------------------------- */
.ba-grid {
  display: grid;
  gap: 1.75rem 1.5rem;
}
@media (min-width: 760px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ba {
  margin: 0;
}
.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy);
  border: 1px solid var(--navy);
  position: relative;
}
.ba__side {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off);
}
.ba__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__tag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background: var(--ink);
}
.ba__tag--after {
  background: var(--navy);
  color: var(--blue);
}
.ba__cap {
  padding: 0.7rem 0 0;
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.55;
}
.ba__cap b {
  display: block;
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Spec table. Works on white and on navy.
   -------------------------------------------------------------------------- */
.spec {
  border-top: 2px solid var(--navy);
}
.spec__head {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule-mid);
  color: var(--navy);
}
.risk .spec,
.section--navy .spec {
  border-top-color: var(--blue);
}
.risk .spec__head,
.section--navy .spec__head {
  color: var(--blue);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
}
.risk .spec__row,
.section--navy .spec__row {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
@media (min-width: 560px) {
  .spec__row {
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
  }
}
.spec__k {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.risk .spec__k,
.section--navy .spec__k {
  color: var(--blue);
}
.spec__v {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.risk .spec__v,
.section--navy .spec__v {
  color: #fff;
}
.spec__v small {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: 0.25rem;
  line-height: 1.6;
  font-weight: 400;
}
.risk .spec__v small,
.section--navy .spec__v small {
  color: rgba(255, 255, 255, 0.66);
}

/* --------------------------------------------------------------------------
   Risk block. The one heavy navy section, latticed with the tread.
   -------------------------------------------------------------------------- */
.risk {
  background: var(--navy-deep);
  background-image: var(--lattice-blue);
  color: rgba(255, 255, 255, 0.8);
}
.risk h2,
.risk h3 {
  color: #fff;
}
.risk__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .risk__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.risk__lede {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
}
.risk__mech {
  border-left: 2px solid var(--blue);
  padding-left: 1.1rem;
}
.risk__mech h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}
.risk__mech p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Guarantees table
   -------------------------------------------------------------------------- */
.gtees {
  border-top: 2px solid var(--navy);
}
.gtee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (min-width: 760px) {
  .gtee {
    grid-template-columns: 7rem 17rem minmax(0, 1fr);
    gap: 2rem;
  }
}
.gtee__term {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--navy);
}
.gtee__term small {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}
.gtee h3 {
  font-size: 1.0625rem;
  margin: 0;
}
.gtee p {
  font-size: var(--text-base);
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Phases
   -------------------------------------------------------------------------- */
.timeline {
  counter-reset: phase;
  border-top: 2px solid var(--navy);
}
@media (min-width: 1000px) {
  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.phase {
  counter-increment: phase;
  padding: 1.2rem 0 1.35rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 1000px) {
  .phase {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
    padding: 1.3rem 1.5rem 1.5rem 0;
  }
  .phase:last-child {
    border-right: 0;
  }
}
.phase::before {
  content: "0" counter(phase);
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.phase h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}
.phase p {
  font-size: var(--text-base);
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Personas
   -------------------------------------------------------------------------- */
.who {
  display: grid;
  border-top: 2px solid var(--navy);
}
@media (min-width: 860px) {
  .who {
    grid-template-columns: repeat(3, 1fr);
  }
}
.who__card {
  padding: 1.3rem 0 1.45rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 860px) {
  .who__card {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
    padding: 1.45rem 2rem 1.45rem 0;
  }
  .who__card:last-child {
    border-right: 0;
  }
}
.who__role {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: block;
}
.who__card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.45rem;
}
.who__card p {
  font-size: var(--text-base);
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Quotes
   -------------------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--navy);
}
@media (min-width: 860px) {
  .quotes {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
}
.quote {
  margin: 0;
  padding: 1.4rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.quote__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.85rem;
}
.quote blockquote {
  margin: 0 0 1.15rem;
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.quote__by {
  margin-top: auto;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote__by b {
  color: var(--navy);
  font-weight: 700;
}
.quote__by span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Story
   -------------------------------------------------------------------------- */
.story {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.story__lead {
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

/* --------------------------------------------------------------------------
   WBENC
   -------------------------------------------------------------------------- */
.wbenc {
  display: grid;
  gap: 2rem;
  align-items: center;
  border-block: 2px solid var(--navy);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}
@media (min-width: 880px) {
  .wbenc {
    grid-template-columns: minmax(0, 1fr) 15rem;
    gap: 3.5rem;
  }
}
.wbenc h2 {
  font-size: var(--text-2xl);
  max-width: 20ch;
}
.wbenc p {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 0;
}
.wbenc__seal {
  border: 1px solid var(--navy);
  background: var(--blue);
  padding: 1.35rem;
  text-align: center;
}
.wbenc__seal b {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1;
}
.wbenc__seal span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Lanes
   -------------------------------------------------------------------------- */
.lanes {
  display: grid;
  border-top: 2px solid var(--navy);
}
@media (min-width: 900px) {
  .lanes {
    grid-template-columns: 1fr 1fr;
  }
}
.lane {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0 1.75rem;
  border-bottom: 1px solid var(--rule-mid);
}
@media (min-width: 900px) {
  .lane {
    border-bottom: 0;
    padding: 1.6rem 2.5rem 1.75rem 0;
    border-right: 1px solid var(--rule-mid);
  }
  .lane:last-child {
    border-right: 0;
    padding-right: 0;
    padding-left: 2.5rem;
  }
}
.lane__kicker {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.lane h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.6rem;
}
.lane p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: var(--text-base);
}
.lane ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.lane li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--text-base);
  color: var(--ink-soft);
}
.lane .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Assessment
   -------------------------------------------------------------------------- */
.cta {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
}
.cta__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 980px) {
  .cta__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta h2 {
  color: #fff;
}
.cta__lede {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
}
.cta__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.cta__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
}
.cta__phone {
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta__phone a {
  color: var(--blue);
}

.form {
  background: #fff;
  border: 1px solid var(--navy);
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
}
.form h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
}
.form__sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
}
.form__row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (min-width: 560px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.field label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  font-family: var(--font);
  font-size: var(--text-md);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-mid);
  border-radius: 0;
}
.field textarea {
  min-height: 88px;
  resize: vertical;
  border: 1px solid var(--rule-mid);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
  background: var(--blue-wash);
}
.form__fine {
  margin: 0.9rem 0 0;
  font-size: var(--text-2xs);
  color: var(--muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-black);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-base);
}
.footer__trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 860px) {
  .footer__trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__trust-cell {
  padding: 1.15rem 1rem 1.15rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.footer__trust-cell:last-child {
  border-right: 0;
}
.footer__trust-cell b {
  display: block;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.footer__trust-cell span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.footer__main {
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer__main {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}
.footer__brand img {
  height: 40px;
  margin-bottom: 1rem;
}
.footer__brand p {
  max-width: 42ch;
  line-height: 1.65;
}
.footer h4 {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.footer ul li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.footer a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.footer__contact li {
  display: grid;
  gap: 0.1rem;
  padding-block: 0.3rem;
}
.footer__contact b {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__coverage {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-block: 1.5rem;
}
.footer__coverage p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 105ch;
}
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-2xs);
  letter-spacing: 0.06em;
}
.footer__bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.footer__bar-links > a:not(.to-top) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.to-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}
.to-top:hover {
  background: var(--blue);
  color: var(--navy-deep) !important;
  border-color: var(--blue);
}

/* --------------------------------------------------------------------------
   Mobile action bar
   -------------------------------------------------------------------------- */
.mobar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-deep);
  border-top: 1px solid var(--blue);
}
@media (min-width: 1060px) {
  .mobar {
    display: none;
  }
}
.mobar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.mobar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.mobar a:first-child {
  background: var(--navy);
}
body {
  padding-bottom: 56px;
}
@media (min-width: 1060px) {
  body {
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .svc:hover .svc__media img {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Interior page masthead
   -------------------------------------------------------------------------- */
.phero {
  background: #fff;
  border-bottom: 1px solid var(--rule-mid);
  position: relative;
  overflow: hidden;
}
.phero__inner {
  padding-block: clamp(2rem, 3.5vw, 3.25rem);
  position: relative;
  z-index: 2;
}
@media (min-width: 1080px) {
  /* Constrain the TEXT, not the container: .phero__inner carries .container,
     whose margin-inline:auto would centre a narrowed box off the shared grid. */
  .phero__inner {
    padding-right: 44%;
  }
}
.phero__plate {
  margin-inline: calc(var(--gutter) * -1);
}
@media (min-width: 1080px) {
  .phero__plate {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36vw;
    max-width: 620px;
    margin: 0;
    z-index: 0;
  }
}
.phero__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
@media (min-width: 1080px) {
  .phero__plate img {
    aspect-ratio: auto;
  }
}
.phero h1 {
  font-size: var(--text-3xl);
  max-width: 18ch;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.phero__lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 54ch;
  line-height: 1.55;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule-mid);
}
.crumbs a {
  color: var(--navy);
  text-decoration: none;
}
.crumbs a:hover {
  text-decoration: underline;
}

/* --- Editorial split + rich text ----------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.split__media img {
  width: 100%;
}
.rich p {
  font-size: var(--text-md);
}
.rich ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 1.25rem;
  border-top: 1px solid var(--rule);
}
.rich ul li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--text-base);
}
.note {
  border-left: 3px solid var(--blue);
  background: var(--blue-wash);
  padding: 1rem 1.25rem;
  margin: 1.6rem 0 0;
}
.note p {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--ink-soft);
}
.note b {
  color: var(--navy);
  font-weight: 700;
}
