@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-600.woff2') format('woff2');
}

:root {
  --carbon: #020913;
  --navy: #06172A;
  --navy-raised: #0A213A;
  --blue: #0878F9;
  --signal: #38A8FF;
  --frost: #F4F7FB;
  --steel: #9AA9BC;
  --line: rgba(154, 169, 188, 0.28);
  --line-strong: rgba(56, 168, 255, 0.48);
  --danger: #FF8E8E;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --wrap: 1180px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--carbon); color: var(--frost); font-family: var(--body); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.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; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
h1, h2, h3 { margin: 0; font-family: var(--display); text-transform: uppercase; line-height: 0.98; }
p { margin: 0; }
form { margin: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal.in { opacity: 1; transform: none; }

body {
  min-width: 320px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--frost);
  background: var(--blue);
}

h1,
h2,
h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3.2rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.08; }

.skip-link {
  position: fixed;
  top: 0;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--carbon);
  background: var(--signal);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.lede { color: var(--steel); }

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  background: rgba(6, 23, 42, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  color: var(--frost);
  text-decoration: none;
}

.nav-phone {
  flex: 0 0 auto;
  color: var(--frost);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-phone small {
  margin-right: 6px;
  color: var(--signal);
  font-size: 0.78em;
  letter-spacing: 0.12em;
}

.nav-phone:hover { color: var(--signal); }

.brand-lockup img {
  width: 34px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(56, 168, 255, 0.2));
}

.brand-copy {
  display: grid;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.3rem;
  letter-spacing: 0.055em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

#siteNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

#siteNav a {
  min-height: 44px;
  padding: 12px 13px;
  color: var(--steel);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease;
}

#siteNav a:hover { color: var(--frost); }

#siteNav .nav-cta {
  min-height: 46px;
  margin-left: 8px;
  padding-inline: 20px;
  color: var(--frost);
  background: var(--blue);
  border: 1px solid var(--blue);
}

#siteNav .nav-cta:visited { color: var(--frost); }

#siteNav .nav-cta:hover {
  color: var(--carbon);
  background: var(--signal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  place-content: center;
  gap: 5px;
  color: var(--frost);
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

/* Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  color: var(--frost);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(8, 120, 249, 0.2);
}

.btn-primary:visited { color: var(--frost); }

.btn-primary:hover {
  color: var(--carbon);
  background: var(--signal);
  border-color: var(--signal);
}

.btn-primary .arrow { color: currentColor; }

.btn-secondary {
  color: var(--frost);
  background: rgba(2, 9, 19, 0.54);
  border-color: var(--line-strong);
}

.btn-secondary:hover { background: var(--navy-raised); border-color: var(--signal); }

.arrow {
  margin-left: 8px;
  color: var(--signal);
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 38%;
  background-color: var(--navy-raised);
  background-image: url("/assets/hero-lab.webp?v=20260726");
  background-position: center;
  background-size: cover;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-media::before {
  inset: 16% 9% 14% 22%;
  border: 1px solid rgba(56, 168, 255, 0.22);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(56, 168, 255, 0.12) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(56, 168, 255, 0.12) 50%, transparent 50.2%);
  transform: skewX(-10deg);
}

.hero-media::after {
  right: 13%;
  bottom: 22%;
  width: 36%;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 -70px 0 rgba(56, 168, 255, 0.14), 0 70px 0 rgba(56, 168, 255, 0.14);
}

.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, var(--carbon) 0%, rgba(2, 9, 19, 0.98) 44%, rgba(2, 9, 19, 0.62) 70%, rgba(2, 9, 19, 0.18) 100%);
}

.hero-content {
  display: flex;
  min-height: 640px;
  padding-block: 76px 64px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero .eyebrow { margin-bottom: 18px; }

.hero h1 {
  max-width: 15ch;
  color: var(--frost);
  text-wrap: balance;
}

.hero h1 span { color: var(--signal); }

.hero .lede {
  max-width: 630px;
  margin-top: 24px;
  color: #CAD3DE;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-call {
  margin-top: 18px;
  color: #CAD3DE;
  font-size: 0.95rem;
}

.hero-call a {
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}

.hero-call a:hover { color: var(--frost); border-color: var(--signal); }

.hero-warning {
  max-width: 680px;
  margin-top: 24px;
  padding-left: 14px;
  color: var(--steel);
  border-left: 2px solid var(--signal);
  font-size: 0.86rem;
}

/* Trust commitments */
.trust-strip {
  padding: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: grid;
  min-height: 142px;
  padding: 27px 22px;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 15px;
}

.trust-grid article + article { border-left: 1px solid var(--line); }

.trust-grid h2 {
  color: var(--frost);
  font-size: 1.05rem;
  line-height: 1.08;
}

.trust-grid p {
  margin-top: 8px;
  color: var(--steel);
  font-size: 0.85rem;
  line-height: 1.45;
}

.icon-chip {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--signal);
  background: rgba(8, 120, 249, 0.12);
  border: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Shared section framing */
.section-frame {
  padding-block: clamp(72px, 8vw, 108px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.section-heading .eyebrow { margin-bottom: 16px; }
.section-heading h2 { text-wrap: balance; }

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--steel);
  text-transform: none;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head p {
  margin-top: 16px;
  color: var(--steel);
}

/* Recovery pathways */
.pathways { background: var(--carbon); }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pathway-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pathway-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--navy-raised);
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.pathway-image::before {
  position: absolute;
  inset: 18% 13%;
  border: 1px solid rgba(56, 168, 255, 0.25);
  box-shadow: inset 0 0 36px rgba(8, 120, 249, 0.1);
  content: "";
}

.pathway-image::after {
  position: absolute;
  right: 13%;
  bottom: 18%;
  width: 34%;
  height: 2px;
  background: var(--blue);
  content: "";
}

.pathway-recover .pathway-image {
  background-image: url("/assets/pathway-recover.webp?v=20260726");
  background-position: center;
}

.pathway-preserve .pathway-image {
  background-image: url("/assets/pathway-preserve.webp?v=20260726");
  background-position: center;
}

.pathway-reassess .pathway-image {
  background-image: url("/assets/pathway-reassess.webp?v=20260726");
  background-position: center;
}

.pathway-copy {
  display: grid;
  min-height: 190px;
  padding: 24px;
  align-content: start;
}

.pathway-number {
  color: var(--signal);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pathway-number::before { content: "PATH / "; color: var(--steel); }

.pathway-copy h3 { margin-top: 12px; }

.pathway-copy > p:last-child {
  margin-top: 13px;
  color: var(--steel);
  font-size: 0.94rem;
}

/* Common situations cross-links — the primary recovery-intent click zone,
   so it leads the section and outweighs the decorative pathway explainer. */
.situation-grid {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.situation-card {
  display: block;
  padding: 19px 20px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.situation-card:hover,
.situation-card:focus-visible {
  border-color: var(--line-strong);
  border-left-color: var(--blue);
  transform: translateY(-2px);
}

.situation-card strong {
  display: block;
  font-size: 1.02rem;
}

.situation-card span {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.88rem;
}

/* Preservation and custody */
.custody-band {
  background: var(--navy);
  box-shadow: inset 0 1px 0 rgba(56, 168, 255, 0.08);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.capability {
  min-height: 220px;
  padding: 30px 24px;
}

.capability + .capability { border-left: 1px solid var(--line); }

.capability > span {
  display: block;
  color: var(--signal);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.capability h3 { margin-top: 20px; font-size: 1.25rem; }

.capability p {
  margin-top: 12px;
  color: var(--steel);
  font-size: 0.92rem;
}

.custody-detail {
  display: grid;
  margin-top: 26px;
  padding: 28px 30px;
  grid-template-columns: minmax(210px, 0.7fr) 1fr 1fr;
  gap: 30px;
  background: rgba(2, 9, 19, 0.54);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}

.custody-detail h3 { font-size: 1.45rem; }

.custody-detail p {
  color: var(--steel);
  font-size: 0.91rem;
}

/* Precedent */
.precedent-band { background: var(--carbon); }

.precedent-band .capability-grid { grid-template-columns: repeat(3, 1fr); }

/* Storage assurances */
.assurances-band { background: var(--navy); }

/* Custody-record proof */
.proof-band { background: var(--navy); }

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.record-card {
  background: var(--navy-raised);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(2, 9, 19, 0.4);
  border-bottom: 1px solid var(--line);
}

.record-head h3 { font-size: 1.3rem; }

.record-head h3 small {
  color: var(--steel);
  font-family: var(--body);
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.record-body {
  display: grid;
  padding: 24px;
  gap: 22px;
}

.record-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.record-meta .k {
  display: block;
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-meta .v {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
}

.record-meta .v.status { color: var(--signal); font-weight: 600; }

.record-label {
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photo-ph {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--steel);
  font-size: 0.8rem;
  background: rgba(154, 169, 188, 0.08);
  border: 1px dashed var(--line);
}

.record-photo {
  display: grid;
  margin: 0;
  gap: 6px;
}

.record-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: rgba(154, 169, 188, 0.08);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.record-photo figcaption {
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-figure {
  margin: 34px 0 0;
}

.section-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--navy-raised);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.section-figure figcaption {
  margin-top: 10px;
  color: var(--steel);
  font-size: 0.82rem;
}

.figure-pair {
  display: grid;
  margin: 34px 0 0;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.figure-pair .section-figure {
  margin: 0;
}

.record-notes {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.record-notes li {
  position: relative;
  padding-left: 16px;
  color: #D5DDE7;
  font-size: 0.9rem;
}

.record-notes li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
  content: "";
}

.record-foot {
  color: var(--steel);
  font-size: 0.82rem;
}

.proof-side {
  display: grid;
  align-content: start;
  gap: 20px;
}

.founder-card {
  padding: 24px;
  background: var(--navy-raised);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.founder-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.founder-head .photo-ph,
.founder-head img {
  width: 56px;
  height: 56px;
  min-height: 0;
  border-radius: 50%;
}

.founder-head img { object-fit: cover; }

.founder-head h3 { font-size: 1.1rem; }

.founder-card .role {
  margin-top: 2px;
  color: var(--steel);
  font-size: 0.85rem;
}

.founder-card > p {
  color: #D5DDE7;
  font-size: 0.92rem;
}

.proof-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.proof-row {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--navy-raised);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.proof-row .dot {
  display: grid;
  flex: none;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--carbon);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--signal);
  border-radius: 50%;
}

.proof-row strong { display: block; font-size: 0.95rem; }

.proof-row p {
  margin-top: 4px;
  color: var(--steel);
  font-size: 0.86rem;
}

/* Price panel */
.pricing-band { background: var(--carbon); }

.price-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  background: linear-gradient(100deg, var(--navy-raised), var(--navy));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.price-mark {
  display: flex;
  min-height: 260px;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.price-mark > span {
  color: var(--steel);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-mark strong {
  margin-top: 4px;
  color: var(--frost);
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 7.2rem);
  line-height: 0.9;
}

.price-mark sup {
  position: relative;
  top: -0.35em;
  color: var(--signal);
  font-size: 0.45em;
}

.price-copy {
  display: grid;
  padding: 32px clamp(28px, 5vw, 54px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 18px 30px;
}

.price-copy h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.price-inclusions {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 9px 24px;
  list-style: none;
}

.price-inclusions li {
  position: relative;
  padding-left: 18px;
  color: #D5DDE7;
  font-size: 0.9rem;
}

.price-inclusions li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  content: "";
}

.price-copy > p:not(.price-cta) {
  grid-column: 1 / -1;
  color: var(--steel);
  font-size: 0.88rem;
}

.price-cta {
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
}

/* Pricing timeline */
.timeline {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tl-step { padding-inline: 4px; }

.tl-dot {
  display: inline-grid;
  min-width: 56px;
  height: 40px;
  margin-bottom: 14px;
  padding-inline: 10px;
  place-items: center;
  color: var(--frost);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--navy-raised);
  border: 1px solid var(--line-strong);
}

.tl-dot.pay { color: var(--carbon); background: var(--blue); border-color: var(--blue); }
.tl-dot.zero { color: var(--steel); }
.tl-dot.payoff { color: var(--signal); font-size: 1.3rem; background: transparent; border-color: var(--signal); }

.tl-step h3 { font-size: 1.05rem; }

.tl-step p {
  margin-top: 8px;
  color: var(--steel);
  font-size: 0.86rem;
}

.payoff-pill {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
}

/* Process sequence */
.process-wrap { background: var(--carbon); }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.custody-line {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--signal) 50%, var(--blue));
  box-shadow: 0 0 18px rgba(56, 168, 255, 0.24);
}

.custody-line::after {
  position: absolute;
  inset: -3px 0 auto;
  height: 7px;
  background: repeating-linear-gradient(90deg, transparent 0 27px, rgba(2, 9, 19, 0.88) 27px 31px);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding-inline: 12px;
  text-align: center;
}

.step-marker {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  place-items: center;
  /* Carbon on blue clears WCAG AA (4.8:1); frost on this blue was 3.9:1. */
  color: var(--carbon);
  background: var(--blue);
  border: 4px solid var(--carbon);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 24px rgba(8, 120, 249, 0.24);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
}

.process-step h3 { font-size: 1.18rem; }

.process-step p {
  max-width: 25ch;
  margin: 12px auto 0;
  color: var(--steel);
  font-size: 0.9rem;
}

/* Shipping and safe handover */
.shipping-band { background: var(--navy); }

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
}

/* Assessment form */
.assessment-section {
  padding-block: clamp(72px, 8vw, 104px);
  background: var(--navy);
  border-block: 1px solid var(--line);
}

#inquiry,
#assessmentForm {
  scroll-margin-top: 72px;
}

.assessment-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.38fr);
  padding: 0;
  background: var(--navy-raised);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.assessment-intro {
  display: flex;
  padding: clamp(32px, 5vw, 52px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(155deg, rgba(8, 120, 249, 0.19), transparent 46%),
    var(--navy-raised);
  border-right: 1px solid var(--line);
}

.assessment-intro .eyebrow { margin-bottom: 18px; }
.assessment-intro h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }

.assessment-intro > p:not(.eyebrow) {
  margin-top: 20px;
  color: #D1DAE5;
}

.assessment-intro .btn { margin-top: 28px; }

.form-shell {
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  color: var(--carbon);
  background: var(--frost);
}

.form-shell :focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  min-height: 24px;
  margin-bottom: 6px;
  color: var(--carbon);
  font-family: var(--display);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--carbon);
  background: #FFFFFF;
  border: 1px solid #AAB7C7;
  border-radius: 0;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.field input::placeholder,
.field textarea::placeholder { color: #647386; opacity: 1; }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 249, 0.2);
}

.hint,
.field .hint {
  margin-top: 5px;
  color: #566578;
  font-size: 0.78rem;
}

.intent-shortcut {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--steel);
  font-size: 0.86rem;
}

.intent-shortcut .btn {
  padding: 8px 16px;
  min-height: 0;
  font-size: 0.82rem;
}

.optional {
  color: #647386;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: none;
}

.form-reassure {
  margin-top: 18px;
  padding: 13px 14px;
  color: #D8E3EF;
  background: var(--navy);
  border-left: 3px solid var(--blue);
  font-size: 0.84rem;
}

.form-privacy {
  margin-block: 12px 18px;
  color: #455467;
  font-size: 0.8rem;
}

.form-privacy a { color: #075FC4; font-weight: 700; }

.form-error {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  color: #660C18;
  background: #FFE8EB;
  border: 1px solid #D85C6D;
  font-weight: 600;
}

.form-error.show { display: block; }

.form-fail {
  display: none;
  margin-top: 16px;
  padding: 16px;
  color: #4D0811;
  background: #FFE8EB;
  border: 1px solid #D85C6D;
}

.form-fail.show { display: block; }
.form-fail a { color: #721322; font-weight: 700; }

.confirm {
  display: none;
  min-height: 100%;
  padding: 12px;
  align-content: center;
}

.confirm.show { display: grid; }

.confirm h3 {
  color: #073365;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.confirm p { margin-top: 13px; color: #344357; }

.ref-chip {
  display: inline-block;
  padding: 7px 11px;
  color: var(--frost);
  background: var(--navy);
  border: 1px solid var(--blue);
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Parcel Collect address on the confirmation page. Monospace and preserved
   line breaks so it can be copied to a parcel label exactly as written. */
.mailin-address {
  margin: 15px 0;
  padding: 15px 17px;
  color: var(--frost);
  background: var(--navy);
  border-left: 3px solid var(--blue);
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.hp-off {
  position: absolute;
  left: -9999px;
}

/* Fulfilment choice — priced radio cards so the drop-off saving is visible */
.fulfilment-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfilment-fieldset legend {
  display: block;
  min-height: 24px;
  margin-bottom: 6px;
  padding: 0;
  color: var(--carbon);
  font-family: var(--display);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.fulfilment-options {
  display: grid;
  gap: 10px;
}

.fulfilment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  background: #FFFFFF;
  border: 1px solid #AAB7C7;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.fulfilment-option input {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.fulfilment-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(8, 120, 249, 0.18);
}

.fulfilment-option:has(input:focus-visible) {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.fulfilment-copy { flex: 1; }

.fulfilment-copy strong {
  display: block;
  color: var(--carbon);
  font-size: 0.95rem;
}

.fulfilment-copy span {
  display: block;
  margin-top: 2px;
  color: #566578;
  font-size: 0.8rem;
}

.fulfilment-price {
  flex: none;
  color: var(--carbon);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Collapsed optional fields — keeps the visible ask small for stressed users */
.extra-details {
  background: #FFFFFF;
  border: 1px dashed #AAB7C7;
}

.extra-details[open] { border-style: solid; border-color: #AAB7C7; }

.extra-details > summary {
  min-height: 44px;
  padding: 12px 14px;
  color: #33445A;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.extra-details > summary::after { border-left: 0; }

.extra-details .form-grid { padding: 4px 14px 16px; }

/* FAQ */
.faq-band {
  padding-block: clamp(72px, 8vw, 100px);
  background: var(--carbon);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 8px;
}

details {
  background: var(--navy);
  border: 1px solid var(--line);
}

details[open] { border-color: var(--line-strong); }

summary {
  display: flex;
  min-height: 48px;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--frost);
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  list-style: none;
  cursor: pointer;
}

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

summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--signal);
  border-left: 1px solid var(--line);
  content: "+";
  font-family: var(--body);
  font-size: 1.2rem;
  line-height: 1;
}

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

.answer {
  padding: 0 58px 18px 18px;
  color: var(--steel);
  font-size: 0.92rem;
}

.answer p + p { margin-top: 12px; }

/* Closing and footer */
.closing {
  position: relative;
  padding-block: clamp(70px, 9vw, 112px);
  overflow: hidden;
  text-align: center;
}

.closing::before {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 80px 20px rgba(8, 120, 249, 0.12);
  content: "";
}

.closing .wrap { position: relative; }

.closing p {
  max-width: 700px;
  margin: 18px auto 28px;
  color: var(--steel);
}

.site-footer {
  color: var(--steel);
  background: #03101E;
  border-top: 1px solid var(--line);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.contact-strip > * {
  display: flex;
  min-height: 72px;
  padding: 20px 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.83rem;
  overflow-wrap: anywhere;
}

.contact-strip > * + * { border-left: 1px solid var(--line); }
.contact-strip a { color: var(--frost); text-decoration: none; }
.contact-strip a:hover { color: var(--signal); }

.footer-links {
  display: grid;
  padding-block: 30px;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 32px;
}

.footer-links > p {
  color: var(--frost);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links nav {
  display: flex;
  justify-content: flex-end;
  gap: 9px 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--steel);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover { color: var(--signal); }

.disclaimer {
  max-width: none;
  padding-block: 18px 28px;
  border-top: 1px solid var(--line);
  color: #74859A;
  font-size: 0.76rem;
}

/* Supporting articles and legal pages */
.content-page { background: var(--carbon); }

.breadcrumb {
  padding-top: 26px;
  color: var(--steel);
  font-size: 0.82rem;
}

.breadcrumb a { color: var(--signal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero {
  padding-block: clamp(48px, 7vw, 86px) clamp(42px, 6vw, 68px);
  background:
    linear-gradient(90deg, rgba(8, 120, 249, 0.13), transparent 46%),
    var(--navy);
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow { margin-bottom: 18px; }

.page-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  text-wrap: balance;
}

.page-hero .lede {
  max-width: 68ch;
  margin-top: 20px;
  color: #C5D0DC;
  font-size: 1.05rem;
}

.article { padding-block: clamp(48px, 7vw, 82px); }

.article > .wrap,
.content-page .article {
  max-width: 68ch;
}

.article h2 {
  margin-top: 44px;
  color: var(--frost);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.05;
}

.article h3 {
  margin-top: 34px;
  color: var(--frost);
}

.article p,
.article li {
  color: #B8C4D1;
  line-height: 1.72;
}

.article p { margin-top: 16px; }

.article ul,
.article ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article li + li { margin-top: 10px; }
.article strong { color: var(--frost); }

.article a {
  color: var(--signal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.callout {
  margin-bottom: 40px;
  padding: 20px 22px;
  background: var(--navy-raised);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--blue);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.callout p { margin: 0; color: #D4DFEA; }

.legal-meta {
  color: var(--steel) !important;
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.cta-inline {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .price-panel { grid-template-columns: 1fr; }

  .price-mark {
    min-height: 0;
    padding: 28px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .assessment-shell { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: repeat(2, 1fr); }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }

  #siteNav { gap: 2px; }
  #siteNav a { padding-inline: 9px; font-size: 0.88rem; }

  .trust-grid article + article { border-left: 0; }
  .trust-grid article:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-grid article:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .pathway-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .pathway-image { height: 100%; aspect-ratio: auto; border-right: 1px solid var(--line); border-bottom: 0; }

  .capability + .capability { border-left: 0; }
  .capability:nth-child(even) { border-left: 1px solid var(--line); }
  .capability:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .custody-detail { grid-template-columns: 1fr 1fr; }
  .custody-detail h3 { grid-column: 1 / -1; }

  .price-copy { grid-template-columns: 1fr; }
  .price-inclusions { grid-template-columns: 1fr; }
  .price-cta { grid-column: 1; grid-row: auto; }

  .assessment-intro { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .menu-toggle { display: inline-grid; }
  #siteNav { display: none; position: absolute; inset: 72px 14px auto; background: var(--navy); border: 1px solid var(--line); padding: 14px; box-shadow: var(--shadow); }
  #siteNav.is-open { display: grid; }
  .hero { min-height: 680px; }
  .hero-media { inset: 0; opacity: 0.48; }
  .hero-scrim { background: linear-gradient(180deg, rgba(2, 9, 19, 0.38), var(--carbon) 76%); }
  .hero-content { padding-block: 120px 48px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .trust-grid, .capability-grid, .process-grid, .form-grid, .contact-strip { grid-template-columns: 1fr; }
  .shipping-grid, .situation-grid, .figure-pair { grid-template-columns: 1fr; }
  .custody-line { display: none; }
  .price-panel { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .record-photos { grid-template-columns: repeat(3, 1fr); }
  .record-meta { grid-template-columns: 1fr; }

  .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  #siteNav { grid-template-columns: 1fr; }
  #siteNav a { width: 100%; padding: 12px 13px; }
  #siteNav .nav-cta { margin: 4px 0 0; text-align: center; }

  .hero-content { min-height: 680px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.45rem); }
  .hero .lede { font-size: 0.98rem; }

  .trust-grid article {
    min-height: 0;
    padding: 22px 18px;
  }

  .trust-grid article:nth-child(even) { border-left: 0; }
  .trust-grid article + article { border-top: 1px solid var(--line); }

  .section-frame { padding-block: 64px; }
  .section-heading { text-align: left; }

  .pathway-card { display: block; }
  .pathway-image { aspect-ratio: 16 / 9; border-right: 0; border-bottom: 1px solid var(--line); }
  .pathway-copy { min-height: 0; padding: 22px 20px 25px; }

  .capability { min-height: 0; padding: 24px 18px; }
  .capability:nth-child(even) { border-left: 0; }
  .capability + .capability { border-top: 1px solid var(--line); }

  .custody-detail { padding: 24px 20px; grid-template-columns: 1fr; gap: 16px; }
  .custody-detail h3 { grid-column: auto; }

  .record-body { padding: 20px; }
  .record-head { padding: 16px 20px; }
  .founder-card { padding: 20px; }

  .price-mark {
    min-height: 0;
    padding: 30px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-copy { padding: 28px 24px; }
  .price-copy .btn { width: 100%; }

  .process-grid { gap: 0; }
  .process-step {
    display: grid;
    padding: 22px 0;
    grid-template-columns: 48px 1fr;
    gap: 5px 18px;
    text-align: left;
    border-top: 1px solid var(--line);
  }

  .process-step:first-of-type { border-top: 0; }
  .step-marker { margin: 0; grid-row: 1 / span 2; }
  .process-step p { max-width: none; margin: 4px 0 0; }

  .assessment-section { padding-block: 64px; }
  .assessment-intro { padding: 30px 24px; }
  .form-shell { padding: 24px 18px; }
  .field.full { grid-column: auto; }
  .form-shell .btn { width: 100%; }

  .faq-band { padding-block: 64px; }
  summary { padding-inline: 14px; }
  .answer { padding: 0 44px 16px 14px; }

  .contact-strip > * { min-height: 0; padding: 15px 0; }
  .contact-strip > * + * { border-top: 1px solid var(--line); border-left: 0; }

  .footer-links { grid-template-columns: 1fr; gap: 22px; }
  .footer-links nav { justify-content: flex-start; }

  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .cta-inline .btn { width: 100%; }
}

@media (max-width: 420px) {
  .nav-phone { font-size: 0.88rem; letter-spacing: 0.02em; }
  .nav-phone small { display: none; }
  .brand-copy span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover,
  .pathway-card:hover,
  .situation-card:hover { transform: none; }
}
