:root {
  --deep-graphite: #1e292f;
  --soft-off-white: #f6f5ef;
  --slate-grey: #667279;
  --mist-blue-grey: #dde6e4;
  --stone-grey: #b9b2a5;
  --civic-blue: #4c788d;
  --green-blue: #557b76;
  --paper: #ffffff;
  --line: rgba(30, 41, 47, 0.14);
  --line-strong: rgba(30, 41, 47, 0.28);
  --shadow: 0 20px 50px rgba(30, 41, 47, 0.08);
  --font-sans: Inter, Aptos, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
article {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--soft-off-white);
  color: var(--deep-graphite);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

p {
  color: var(--slate-grey);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-140%);
  border: 1px solid var(--deep-graphite);
  background: var(--paper);
  padding: 10px 14px;
  font-weight: 700;
}

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

.shell {
  width: min(100% - 192px, var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  border-bottom: 1px solid rgba(30, 41, 47, 0.1);
  background: rgba(246, 245, 239, 0.92);
  backdrop-filter: blur(14px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: var(--space-4);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--deep-graphite);
  font-size: 26px;
  font-weight: 750;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--slate-grey);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  border-bottom: 1px solid transparent;
  padding: 4px 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-bottom-color: var(--civic-blue);
  color: var(--deep-graphite);
  outline: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(246, 245, 239, 0.98) 0%, rgba(246, 245, 239, 0.9) 48%, rgba(246, 245, 239, 0.48) 100%),
    linear-gradient(180deg, rgba(30, 41, 47, 0.04), rgba(30, 41, 47, 0.12)),
    url("./assets/ocean.jpg") center 46% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(30, 41, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-field {
  position: absolute;
  right: 7%;
  bottom: 118px;
  z-index: -1;
  width: 480px;
  height: 300px;
  border: 1px solid rgba(30, 41, 47, 0.18);
  background:
    linear-gradient(90deg, transparent 49%, rgba(76, 120, 141, 0.18) 50%, transparent 51%),
    linear-gradient(rgba(30, 41, 47, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.07) 1px, transparent 1px),
    rgba(221, 230, 228, 0.42);
  background-size: 100% 100%, 40px 40px, 40px 40px, auto;
}

.hero-field::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 14%;
  top: 60%;
  height: 2px;
  background: rgba(76, 120, 141, 0.52);
}

.hero-field::after {
  content: "";
  position: absolute;
  right: 22%;
  top: 38%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(85, 123, 118, 0.8);
  background: rgba(85, 123, 118, 0.42);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  min-height: 600px;
  padding: 66px 0 48px;
  gap: var(--space-3);
}

.hero-copy {
  grid-column: 1 / span 7;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eyebrow,
.section-kicker {
  color: var(--civic-blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 26px;
  color: var(--deep-graphite);
  max-width: 770px;
  font-size: 62px;
  font-weight: 760;
  line-height: 1.04;
}

.hero-line {
  max-width: 700px;
  margin-top: 30px;
  color: var(--deep-graphite);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.2;
}

.hero-text {
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
}

.hero-text + .hero-text {
  margin-top: 0;
}

.hero-supporting {
  max-width: 520px;
  margin-top: 18px;
  color: var(--deep-graphite);
  font-size: 15px;
  font-weight: 700;
}

.hero-note {
  grid-column: 9 / span 4;
  position: relative;
  justify-self: stretch;
  min-height: 248px;
  border: 1px solid rgba(30, 41, 47, 0.18);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(76, 120, 141, 0.22) 50%, transparent 50.4%),
    linear-gradient(rgba(30, 41, 47, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.07) 1px, transparent 1px),
    rgba(246, 245, 239, 0.44);
  background-size: 100% 100%, 36px 36px, 36px 36px, auto;
}

.hero-note::before,
.hero-note::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(30, 41, 47, 0.18);
}

.hero-note::before {
  inset: 32px 58px 84px 42px;
}

.hero-note::after {
  left: 72px;
  right: 36px;
  bottom: 74px;
  height: 1px;
  border-width: 1px 0 0;
}

.section {
  padding: 88px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 18px;
}

.section-heading {
  grid-column: 1 / span 6;
}

.section-body {
  grid-column: 8 / span 5;
  padding-top: 18px;
}

.section-body p + p,
.trust-copy p + p,
.about-copy p + p,
.contact-copy p + p {
  margin-top: 14px;
}

.section h2 {
  margin-top: 12px;
  color: var(--deep-graphite);
  font-size: 42px;
  font-weight: 720;
  line-height: 1.12;
}

.section h3 {
  color: var(--deep-graphite);
  font-size: 20px;
  font-weight: 720;
  line-height: 1.25;
}

.section p {
  max-width: 680px;
}

.frame-section {
  background:
    linear-gradient(180deg, rgba(246, 245, 239, 1), rgba(246, 245, 239, 0.92)),
    linear-gradient(90deg, rgba(185, 178, 165, 0.1), transparent 42%, rgba(221, 230, 228, 0.34));
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.territory-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.74), rgba(246, 245, 239, 0.58)),
    rgba(255, 254, 250, 0.64);
  padding: 28px;
}

.territory-card h3 {
  margin-top: 20px;
  min-height: 2.5em;
}

.territory-card p {
  margin-top: 8px;
  font-size: 15px;
}

.readiness-section {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep-graphite);
}

.readiness-image,
.readiness-section::before,
.readiness-section::after {
  content: "";
  position: absolute;
  inset: 0;
}

.readiness-image {
  z-index: -3;
  background: url("./assets/ocean.jpg") center 52% / cover no-repeat;
  filter: saturate(0.55) contrast(0.9);
}

.readiness-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(30, 41, 47, 0.86), rgba(30, 41, 47, 0.62) 48%, rgba(30, 41, 47, 0.22)),
    linear-gradient(180deg, rgba(30, 41, 47, 0.24), rgba(30, 41, 47, 0.76));
}

.readiness-section::after {
  z-index: -1;
  background:
    linear-gradient(rgba(246, 245, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 245, 239, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 98px 0;
}

.readiness-copy {
  grid-column: 1 / span 7;
}

.readiness-copy .section-kicker {
  color: rgba(246, 245, 239, 0.72);
}

.readiness-copy h2 {
  margin-top: 14px;
  margin-bottom: 26px;
  max-width: 760px;
  color: var(--soft-off-white);
  font-size: 58px;
  font-weight: 720;
  line-height: 1.06;
}

.readiness-copy p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 0;
  color: rgba(246, 245, 239, 0.82);
  font-size: 20px;
}

.readiness-copy p:not(.section-kicker) + p {
  margin-top: 22px;
}

.field-cue {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 62px;
  border: 1px solid rgba(30, 41, 47, 0.2);
  background: rgba(221, 230, 228, 0.34);
}

.territory-card .field-cue {
  align-self: center;
}

.field-cue::before,
.field-cue::after {
  pointer-events: none;
}

.field-cue.cells {
  background: rgba(221, 230, 228, 0.34);
}

.field-cue.cells::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 42px;
  background:
    linear-gradient(rgba(30, 41, 47, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: center;
  transform: translate(-50%, -50%);
}

.field-cue.trace::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 1px;
  background: var(--civic-blue);
  transform: translate(-50%, 7px);
}

.field-cue.trace::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--green-blue);
  background: rgba(85, 123, 118, 0.28);
  transform: translate(13px, -7px);
}

.field-cue.frame::before,
.field-cue.frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(76, 120, 141, 0.48);
}

.field-cue.frame::before {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 24px;
  transform: translate(calc(-50% - 5px), calc(-50% - 4px));
}

.field-cue.frame::after {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 24px;
  transform: translate(calc(-50% + 5px), calc(-50% + 4px));
}

.trust-section {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(221, 230, 228, 0.98), rgba(221, 230, 228, 0.78)),
    var(--mist-blue-grey);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(30, 41, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: var(--space-3);
}

.trust-copy {
  grid-column: 1 / span 6;
  margin-top: -8px;
}

.trust-copy h2 {
  margin-top: 22px;
  font-size: 46px;
}

.trust-copy p {
  margin-top: 24px;
}

.trust-copy p + p {
  margin-top: 16px;
}

.text-list {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--slate-grey);
}

.confidence-panel {
  grid-column: 8 / span 5;
  display: grid;
  gap: 28px;
  min-height: 360px;
  align-content: center;
  border: 1px solid rgba(30, 41, 47, 0.18);
  background:
    linear-gradient(rgba(30, 41, 47, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 47, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(246, 245, 239, 0.82), rgba(221, 230, 228, 0.4));
  background-size: 42px 42px, 42px 42px, auto;
  padding: 42px;
}

.confidence-row {
  display: block;
}

.confidence-line {
  display: block;
  height: 1px;
  background: var(--line-strong);
}

.confidence-row.verified .confidence-line {
  width: 88%;
  background: var(--green-blue);
}

.confidence-row.pending .confidence-line {
  width: 64%;
  background: var(--civic-blue);
  opacity: 0.58;
}

.confidence-row.unknown .confidence-line {
  width: 42%;
  background: var(--slate-grey);
  opacity: 0.36;
}

.confidence-row.reconciled .confidence-line {
  width: 78%;
  background: var(--deep-graphite);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1px;
  margin-top: 40px;
  border: 1px solid rgba(30, 41, 47, 0.14);
  background: rgba(30, 41, 47, 0.14);
}

.principle {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(246, 245, 239, 0.76);
  padding: 30px 28px;
}

.principle h3 {
  min-height: 2.6em;
}

.principle p {
  margin-top: 9px;
  font-size: 15px;
}

.territories-section {
  background:
    linear-gradient(180deg, var(--paper), rgba(246, 245, 239, 0.66)),
    var(--paper);
}

.territories-section .section-heading {
  grid-column: 1 / span 7;
}

.territories-section .section-body {
  grid-column: 9 / span 4;
  padding-top: 10px;
}

.territories-section .section-grid {
  min-height: 0;
  margin-bottom: -8px;
}

.capability-list {
  display: grid;
  margin-top: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(30, 41, 47, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 96px 100%;
}

.capability-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 32px;
}

.capability-item:last-child {
  border-bottom: 0;
}

.capability-index {
  color: var(--civic-blue);
  font-size: 13px;
  font-weight: 800;
}

.capability-item h3 {
  min-height: auto;
}

.capability-item p {
  margin-top: 2px;
  max-width: 720px;
}

.about-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(246, 245, 239, 0.96), rgba(246, 245, 239, 1)),
    var(--soft-off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: var(--space-5);
}

.about-image {
  position: relative;
  grid-column: 1 / span 6;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.36) contrast(0.82) brightness(0.92);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246, 245, 239, 0.26), rgba(246, 245, 239, 0.2)),
    linear-gradient(rgba(255, 254, 250, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 250, 0.14) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.image-field {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: 180px;
  height: 104px;
  border: 1px solid rgba(246, 245, 239, 0.72);
}

.image-field::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 62px;
  height: 1px;
  background: rgba(246, 245, 239, 0.82);
}

.about-copy {
  grid-column: 8 / span 5;
  align-self: start;
  padding-top: 8px;
}

.about-copy h2 {
  margin-top: 14px;
  font-size: 42px;
}

.about-copy p {
  margin-top: 24px;
}

.about-copy p + p {
  margin-top: 18px;
}

.contact-section {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background: var(--deep-graphite);
  color: var(--soft-off-white);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 245, 239, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 245, 239, 0.035), transparent 48%);
  background-size: 84px 100%, auto;
}

.contact-section p,
.contact-section .section-kicker {
  color: rgba(246, 245, 239, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-3);
  align-items: start;
}

.contact-copy {
  grid-column: 1 / span 6;
}

.contact-copy h2 {
  margin-top: 12px;
  color: var(--soft-off-white);
  font-size: 44px;
}

.contact-copy p {
  margin-top: 24px;
  max-width: 600px;
}

.contact-section .text-list {
  color: rgba(246, 245, 239, 0.72);
}

.contact-detail {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.contact-detail span {
  color: rgba(246, 245, 239, 0.62);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-detail a {
  width: fit-content;
  color: var(--soft-off-white);
  font-size: 20px;
  font-weight: 720;
  border-bottom: 1px solid rgba(246, 245, 239, 0.36);
  padding-bottom: 3px;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  border-bottom-color: var(--soft-off-white);
  outline: 0;
}

.collaboration-list {
  grid-column: 8 / span 5;
  display: grid;
  border-top: 1px solid rgba(246, 245, 239, 0.18);
}

.collaboration-list span {
  border-bottom: 1px solid rgba(246, 245, 239, 0.18);
  padding: 18px 0;
  color: rgba(246, 245, 239, 0.9);
  font-weight: 650;
}

.collaboration-list span:first-child {
  color: rgba(246, 245, 239, 0.58);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(246, 245, 239, 0.16);
  background: var(--deep-graphite);
  color: rgba(246, 245, 239, 0.74);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  gap: var(--space-3);
  padding: 24px 0;
}

.footer-primary {
  display: grid;
  gap: 4px;
}

.company-disclosure {
  margin-top: 4px;
  border-top: 1px solid rgba(221, 230, 228, 0.18);
  padding-top: 12px;
  font-size: 0.78rem;
  color: rgba(221, 230, 228, 0.92);
}

.company-disclosure summary {
  cursor: pointer;
  color: inherit;
  font-weight: 500;
  letter-spacing: 0.02em;
  list-style: none;
}

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

.company-disclosure__content {
  margin-top: 12px;
  display: grid;
  gap: 4px;
  opacity: 0.9;
}

.company-disclosure__content p {
  margin: 0;
}

.company-disclosure__content a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 96px, var(--shell));
  }

  .primary-nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero-note {
    grid-column: 1 / span 8;
    margin-top: var(--space-5);
  }

  .territory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .readiness-copy {
    grid-column: 1 / span 9;
  }

  .readiness-copy h2 {
    font-size: 48px;
  }

}

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

  .site-header {
    position: static;
  }

  .header-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 0;
    gap: var(--space-2);
  }

  .primary-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
  }

  .hero,
  .hero-grid {
    min-height: 540px;
  }

  .hero-grid {
    display: block;
    padding: 56px 0 38px;
  }

  .hero-copy {
    max-width: 100%;
    gap: 0;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.04;
  }

  .hero-line {
    font-size: 24px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-note {
    margin-top: var(--space-5);
    min-height: 190px;
  }

  .hero-field {
    right: -120px;
    bottom: 64px;
    width: 360px;
    height: 220px;
  }

  .section {
    padding: 72px 0;
  }

  .section-grid,
  .trust-grid,
  .about-grid,
  .contact-grid,
  .readiness-grid {
    display: block;
  }

  .section-body,
  .trust-copy p,
  .about-copy,
  .contact-copy {
    padding-top: 0;
    margin-top: var(--space-3);
  }

  .trust-copy {
    margin-top: 0;
  }

  .territories-section .section-heading,
  .territories-section .section-body {
    grid-column: auto;
  }

  .section h2,
  .trust-copy h2,
  .about-copy h2,
  .contact-copy h2,
  .readiness-copy h2 {
    font-size: 34px;
  }

  .territory-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .territory-card {
    min-height: auto;
  }

  .confidence-panel,
  .collaboration-list {
    margin-top: 40px;
  }

  .readiness-section {
    min-height: 500px;
  }

  .readiness-grid {
    padding: 74px 0;
  }

  .readiness-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-image img {
    min-height: 300px;
  }

  .capability-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: var(--space-2);
  }

}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .hero {
    min-height: 520px;
  }

  .hero-grid {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-line {
    font-size: 22px;
  }

  .hero-note {
    display: none;
  }

  .hero-supporting {
    font-size: 14px;
  }

  .confidence-panel {
    padding: 24px;
  }

  .confidence-row {
    gap: 8px;
  }

  .capability-item {
    padding: 24px 18px;
  }

  .readiness-copy h2 {
    font-size: 32px;
  }

}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
