@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-400.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --navy: #0b1d34;
  --navy-2: #102844;
  --navy-3: #173653;
  --paper: #f7f7f5;
  --paper-2: #fcfcfa;
  --paper-3: #e6e2dc;
  --terracotta: #c45a37;
  --terracotta-2: #d87959;
  --terracotta-text: #b84b2b;
  --terracotta-text-on-stone: #a84427;
  --gold: #c79a5a;
  --stone: #e6e2dc;
  --ink: #0b1d34;
  --muted: #586675;
  --soft: #657380;
  --line: rgba(11, 29, 52, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 74px rgba(11, 29, 52, 0.12);
  --shadow-soft: 0 14px 42px rgba(11, 29, 52, 0.075);
  --max: 1280px;
  --content: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.014;
  background-image: radial-gradient(
    rgba(11, 29, 52, 0.28) 0.42px,
    transparent 0.42px
  );
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}
::selection {
  background: rgba(196, 90, 55, 0.23);
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
}
.skip:focus {
  left: 12px;
}
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.025em;
}
[id] {
  scroll-margin-top: 112px;
}
.section {
  padding: clamp(88px, 8.5vw, 136px) 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--terracotta-text);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.section-title {
  margin: 0;
  font-size: clamp(3rem, 5.35vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.section-copy {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

/* Navigation */
.topbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 18px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(1210px, 100%);
  min-height: 68px;
  margin: auto;
  padding: 9px 11px 9px 17px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(11, 29, 52, 0.09);
  border-radius: 20px;
  background: rgba(247, 247, 245, 0.9);
  box-shadow: 0 12px 36px rgba(11, 29, 52, 0.065);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(252, 252, 250, 0.97);
  box-shadow: 0 18px 56px rgba(11, 29, 52, 0.12);
  transform: translateY(-4px);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 184px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.nav-links a {
  padding: 11px 13px;
  border-radius: 10px;
  text-decoration: none;
  color: #596877;
  font-size: 0.81rem;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="location"] {
  background: rgba(11, 29, 52, 0.055);
  color: var(--ink);
}
.nav-links .mobile-cta {
  display: none;
}
.nav-end {
  display: flex;
  justify-content: flex-end;
}
.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.nav-cta,
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 11px 28px rgba(11, 29, 52, 0.18);
}
.nav-cta:hover,
.btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(11, 29, 52, 0.22);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}
.btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  place-items: center;
}
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-btn::after {
  margin-top: 5px;
}
.menu-btn[aria-expanded="true"]::before {
  transform: translateY(3.25px) rotate(45deg);
}
.menu-btn[aria-expanded="true"]::after {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 154px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 13%,
      rgba(196, 90, 55, 0.105),
      transparent 29%
    ),
    radial-gradient(
      circle at 91% 4%,
      rgba(199, 154, 90, 0.13),
      transparent 25%
    ),
    linear-gradient(180deg, #fcfcfa 0%, var(--paper) 80%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 29, 52, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 52, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-index {
  display: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
  gap: clamp(46px, 5vw, 72px);
  align-items: start;
}
.hero-copy {
  max-width: 735px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.75rem, 6.1vw, 6.75rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero h1 .serif {
  display: inline;
  font-size: 0.94em;
}
.hero-lead {
  max-width: 655px;
  margin: 27px 0 0;
  color: #596876;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
@media (min-width: 1101px) {
  .hero-proof {
    margin-bottom: 0;
  }
}
.proof-item {
  min-width: 150px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.proof-item strong {
  display: block;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proof-item span {
  display: block;
  margin-top: 4px;
  color: #657380;
  font-size: 0.63rem;
}

.terrain-wrap {
  position: relative;
  min-height: 0;
  padding: 45px 0 24px;
}
.terrain-glow {
  position: absolute;
  inset: 12% -2% 0 8%;
  border-radius: 50px;
  background: linear-gradient(
    140deg,
    rgba(196, 90, 55, 0.16),
    rgba(199, 154, 90, 0.14) 55%,
    rgba(11, 29, 52, 0.12)
  );
  filter: blur(48px);
}
.terrain-card {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #0b1d34 0%, #102844 58%, #173653 100%);
  box-shadow: var(--shadow);
  transform: none;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.terrain-wrap:hover .terrain-card {
  transform: translateY(-3px);
  box-shadow: 0 34px 82px rgba(11, 29, 52, 0.15);
}
.terrain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(135deg, black, transparent 84%);
  mask-image: linear-gradient(135deg, black, transparent 84%);
}
.terrain-head {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
}
.terrain-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.terrain-brand img {
  width: 29px;
  filter: brightness(0) invert(1);
}
.terrain-meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.53rem;
  line-height: 1.65;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.terrain-map {
  position: relative;
  z-index: 2;
  height: 385px;
  margin-top: 20px;
}
.terrain-map svg {
  width: 100%;
  height: 100%;
}
.contour {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}
.contour.em {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.2;
}
.trail {
  fill: none;
  stroke: #d87959;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  animation: trailMove 12s linear infinite;
}
.trail-soft {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.1;
}
.station {
  fill: #102844;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 1.2;
}
.station.active {
  fill: #c45a37;
  stroke: #d87959;
  stroke-width: 1.5;
}
.station-label {
  fill: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
}
.station-note {
  fill: rgba(255, 255, 255, 0.42);
  font-family: "Inter", sans-serif;
  font-size: 7px;
}
.bearing {
  fill: rgba(255, 255, 255, 0.045);
  stroke: rgba(255, 255, 255, 0.18);
}
.bearing-title {
  fill: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.bearing-sub {
  fill: rgba(255, 255, 255, 0.46);
  font-family: "Inter", sans-serif;
  font-size: 7px;
  letter-spacing: 0.9px;
}
@keyframes trailMove {
  to {
    stroke-dashoffset: -190;
  }
}
.terrain-foot {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.terrain-foot div {
  padding: 17px 14px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.terrain-foot div:first-child {
  padding-left: 0;
}
.terrain-foot div:last-child {
  border: 0;
}
.terrain-foot small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.5rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.terrain-foot strong {
  display: block;
  margin-top: 6px;
  font-size: 0.71rem;
  font-weight: 600;
}
.terrain-note {
  position: absolute;
  right: -3px;
  bottom: 54px;
  z-index: 5;
  width: 218px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
}
.terrain-note small {
  display: block;
  color: #657380;
  font-size: 0.49rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.terrain-note strong {
  display: block;
  margin-top: 7px;
  font-size: 0.75rem;
  line-height: 1.45;
}
.terrain-note span {
  display: block;
  margin-top: 8px;
  color: var(--terracotta-text);
  font-size: 0.54rem;
  font-weight: 700;
}
.hero-strip {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.hero-strip a {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 21px 22px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 0.22s;
}
.hero-strip a:last-child {
  border: 0;
}
.hero-strip a:hover {
  background: #fff;
}
.hero-strip .num {
  color: var(--terracotta-text);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.hero-strip strong {
  display: block;
  font-size: 0.75rem;
}
.hero-strip small {
  display: block;
  margin-top: 2px;
  color: #657380;
  font-size: 0.58rem;
}
.hero-strip .arrow {
  font-size: 0.82rem;
  color: #657380;
  transition: transform 0.22s var(--ease);
}
.hero-strip a:hover .arrow {
  transform: translate(3px, -3px);
  color: var(--terracotta-text);
}

/* Handoff statement */
.gap-section {
  background: #fff;
}
.gap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(290px, 0.58fr);
  gap: clamp(48px, 9vw, 135px);
  align-items: start;
}
.gap-title {
  margin: 0;
  font-size: clamp(3.5rem, 7.2vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.077em;
  font-weight: 600;
}
.gap-title em {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.025em;
}
.gap-aside {
  padding-top: 12px;
}
.gap-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.handoffs {
  margin-top: 37px;
  border-top: 1px solid var(--line);
}
.handoff {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 17px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.handoff strong {
  color: var(--terracotta-text);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.handoff span {
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.55;
}

/* Situations */
.situations {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.situations::before {
  content: "";
  position: absolute;
  right: -240px;
  top: -280px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(11, 29, 52, 0.08);
  border-radius: 50%;
}
.situations-head {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 0.52fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 62px;
}
.situations-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.situation {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s var(--ease),
    background 0.25s;
}
.situation:hover {
  padding-left: 13px;
}
.situation-num {
  color: var(--terracotta-text);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.situation h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  letter-spacing: -0.04em;
}
.situation p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

/* Capabilities */
.capabilities {
  background: linear-gradient(180deg, var(--stone) 0%, var(--paper) 100%);
}
.cap-head {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 0.52fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}
.cap-head .section-copy {
  justify-self: end;
}
.cap-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: stretch;
}
.cap-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}
.cap-button {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 105px;
  padding: 20px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    color 0.25s,
    padding 0.35s var(--ease);
}
.cap-button:hover,
.cap-button.active {
  color: var(--ink);
  padding-left: 12px;
}
.cap-button .num {
  font-size: 0.62rem;
  color: var(--terracotta-text);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.cap-button strong {
  display: block;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
}
.cap-button small {
  display: block;
  margin-top: 5px;
  color: #657380;
  font-size: 0.67rem;
}
.cap-button .plus {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s;
}
.cap-button.active .plus {
  transform: rotate(45deg);
  background: var(--navy);
  color: #fff;
}
.cap-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 32px;
  background: #13293b;
  box-shadow: var(--shadow);
}
.cap-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(135deg, black, transparent 82%);
  mask-image: linear-gradient(135deg, black, transparent 82%);
}
.cap-stage::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -170px;
  top: -220px;
  background: radial-gradient(circle, rgba(196, 90, 55, 0.42), transparent 68%);
}
.cap-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 42px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.35s,
    transform 0.55s var(--ease),
    visibility 0.35s;
}
.cap-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cap-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}
.cap-panel-head span {
  font-size: 0.6rem;
  color: #d87959;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.cap-panel-head b {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cap-visual {
  position: relative;
  z-index: 2;
  align-self: center;
}
.cap-visual svg {
  width: 100%;
  height: 320px;
}
.cap-panel-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 30px;
  align-items: end;
}
.cap-panel-foot h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.cap-panel-foot p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.86rem;
  line-height: 1.75;
}
.d-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.3;
}
.d-line-active {
  fill: none;
  stroke: #d87959;
  stroke-width: 2.25;
  stroke-linecap: round;
}
.d-node {
  fill: #102844;
  stroke: rgba(255, 255, 255, 0.29);
  stroke-width: 1.2;
}
.d-node-active {
  fill: #c45a37;
  stroke: #d87959;
  stroke-width: 1.2;
}
.d-text {
  fill: rgba(255, 255, 255, 0.64);
  font-family: "Inter", sans-serif;
  font-size: 9px;
}
.d-label {
  fill: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.d-contour {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

/* Approach */
.approach {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.approach::before {
  content: "";
  position: absolute;
  left: -340px;
  bottom: -470px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 50%;
}
.approach-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.58fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 76px;
}
.approach .section-copy {
  color: rgba(255, 255, 255, 0.61);
}
.approach .eyebrow {
  color: #ec967a;
}
.route {
  position: relative;
  z-index: 2;
  padding: 48px 46px 42px;
  border: 1px solid var(--line-light);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}
.route::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 52% 48%,
    rgba(196, 90, 55, 0.17),
    transparent 34%
  );
  pointer-events: none;
}
.route-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 88px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    #db7a59,
    rgba(255, 255, 255, 0.08)
  );
}
.route-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.phase {
  min-height: 340px;
  padding: 0 28px 12px;
}
.phase-node {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 11px var(--navy);
  color: #e98d6e;
  font-size: 0.63rem;
  font-weight: 700;
}
.phase h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}
.phase p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.83rem;
  line-height: 1.76;
}
.phase ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.phase li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
}
.phase li::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: #e98d6e;
}

/* Outcomes */
.remains {
  background: #fff;
}
.remains-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.5fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}
.remains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.remain {
  min-height: 350px;
  padding: 32px;
  border-right: 1px solid var(--line);
}
.remain:last-child {
  border: 0;
}
.remain-top {
  display: flex;
  justify-content: space-between;
  color: var(--terracotta-text);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.remain-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.remain h3 {
  margin: 105px 0 16px;
  font-size: 1.52rem;
  letter-spacing: -0.04em;
}
.remain p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.82;
}

/* Principle */
.principle {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.principle::before {
  content: "";
  position: absolute;
  right: -280px;
  top: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 29, 52, 0.1);
  border-radius: 50%;
}
.principle-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.35fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.principle-mark {
  position: sticky;
  top: 150px;
  width: 115px;
  opacity: 0.2;
}
.principle .eyebrow {
  color: var(--terracotta-text-on-stone);
}
.principle-quote {
  margin: 0;
  font-size: clamp(3rem, 6.7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.071em;
  font-weight: 600;
}
.principle-quote em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.025em;
}
.principle-caption {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* CTA */
.cta {
  padding: 50px 0 28px;
  background: var(--stone);
}
.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 70px;
  align-items: start;
  border-radius: 38px;
  background: linear-gradient(
    135deg,
    #f7f7f5 0%,
    #e6e2dc 50%,
    rgba(196, 90, 55, 0.18) 100%
  );
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -280px;
  top: -310px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(11, 29, 52, 0.12);
  border-radius: 50%;
}
.cta-box::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -250px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(11, 29, 52, 0.1);
  border-radius: 50%;
}
.cta-copy,
.brief-card {
  position: relative;
  z-index: 2;
}
.cta-title {
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 6.2rem);
  line-height: 0.91;
  letter-spacing: -0.073em;
  font-weight: 600;
}
.cta-copy > p:last-of-type {
  max-width: 520px;
  margin: 25px 0 0;
  color: #586675;
  line-height: 1.85;
}
.cta-mark {
  width: 90px;
  margin-top: 48px;
  opacity: 0.15;
}
.brief-card {
  padding: 28px;
  border: 1px solid rgba(11, 29, 52, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.brief-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.brief-head strong {
  font-size: 1rem;
}
.brief-head span {
  color: var(--soft);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(11, 29, 52, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  min-height: 128px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 90, 55, 0.1);
}
.consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}
.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--terracotta);
}
.consent a {
  text-underline-offset: 3px;
}
.brief-actions {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}
.brief-actions small {
  max-width: 280px;
  color: #657380;
  font-size: 0.61rem;
  line-height: 1.6;
}
.brief-actions .btn {
  flex: 0 0 auto;
}

footer {
  padding: 42px 0 54px;
  background: var(--stone);
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.footer-brand img {
  width: 190px;
}
.footer-brand p {
  max-width: 540px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}
.footer-meta {
  text-align: right;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.85;
}

.capability-note {
  max-width: 780px;
  margin: 28px 0 0 auto;
  padding-left: 20px;
  border-left: 2px solid rgba(196, 90, 55, 0.45);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  grid-column: 1/-1;
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}
.form-status.is-success {
  color: #45664c;
}
.form-status.is-error {
  color: #9f4229;
}
.btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover {
  border-bottom-color: currentColor;
}
@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .nav,
  .hero-strip-inner,
  .brief-card {
    background: rgba(252, 252, 250, 0.98);
  }
}
@media print {
  .topbar,
  .hero-actions,
  .hero-strip,
  .cta,
  .terrain-note {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  .section {
    padding: 48px 0;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .terrain-card,
  .cap-stage,
  .approach {
    box-shadow: none !important;
  }
  body::before {
    display: none;
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s,
    transform 0.95s var(--ease);
}
.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.12s;
}
@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;
  }
  .terrain-card {
    transform: none !important;
  }
}
@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 200px 1fr 200px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 930px;
  }
  .terrain-wrap {
    max-width: 860px;
    margin: auto;
  }
  .terrain-card {
    transform: none;
  }
  .hero-index {
    display: none;
  }
  .gap-grid,
  .situations-head,
  .cap-head,
  .approach-head,
  .remains-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cap-head .section-copy {
    justify-self: start;
  }
  .situation {
    grid-template-columns: 70px 1fr;
  }
  .situation p {
    grid-column: 2;
  }
  .cap-layout {
    grid-template-columns: 1fr;
  }
  .cap-list {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
    gap: 10px;
  }
  .cap-button {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
  }
  .cap-button:hover,
  .cap-button.active {
    padding-left: 18px;
  }
  .route-grid {
    grid-template-columns: 1fr;
  }
  .route-line {
    left: 79px;
    right: auto;
    top: 64px;
    bottom: 64px;
    width: 1px;
    height: auto;
  }
  .phase {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 26px;
    min-height: auto;
    padding: 10px 0 34px;
  }
  .phase-node {
    grid-row: 1/4;
    margin: 0 auto;
  }
  .phase h3,
  .phase p,
  .phase ul {
    grid-column: 2;
  }
  .cta-box {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-mark {
    display: none;
  }
}
@media (max-width: 840px) {
  .topbar {
    top: 10px;
    padding: 0 10px;
  }
  .nav {
    min-height: 62px;
    grid-template-columns: 1fr auto;
    padding-left: 15px;
    border-radius: 18px;
  }
  .brand img {
    width: 160px;
  }
  .nav-links,
  .nav-end {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .nav-links.open {
    position: absolute;
    top: 70px;
    left: 10px;
    right: 10px;
    display: grid;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(252, 252, 250, 0.98);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open a {
    width: 100%;
  }
  .nav-links.open .mobile-cta {
    display: block;
    margin-top: 4px;
    background: var(--navy);
    color: #fff;
  }
  .hero {
    padding-top: 126px;
  }
  .hero-grid {
    gap: 28px;
  }
  .terrain-wrap {
    padding: 8px 0;
  }
  .terrain-note {
    display: none;
  }
  .terrain-card {
    min-height: 530px;
  }
  .terrain-map {
    height: 340px;
  }
  .hero-strip {
    margin-top: -17px;
  }
  .hero-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-strip a:nth-child(2) {
    border-right: 0;
  }
  .hero-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .cap-panel {
    padding: 30px;
  }
  .cap-panel-foot {
    grid-template-columns: 1fr;
  }
  .cap-stage {
    min-height: 680px;
  }
  .remains-grid {
    grid-template-columns: 1fr;
  }
  .remain {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .remain:last-child {
    border-bottom: 0;
  }
  .principle-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .principle-mark {
    position: static;
    width: 82px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    text-align: left;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
@media (max-width: 590px) {
  body::before {
    opacity: 0.035;
  }
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }
  .section {
    padding: 78px 0;
  }
  .hero h1 {
    font-size: 3.52rem;
  }
  .hero-lead {
    font-size: 0.97rem;
  }
  .hero-actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px;
    margin: 0;
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .terrain-card {
    padding: 20px;
    border-radius: 24px;
  }
  .terrain-meta {
    display: none;
  }
  .terrain-map {
    height: 300px;
  }
  .terrain-foot {
    grid-template-columns: 1fr;
  }
  .terrain-foot div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 12px 0;
  }
  .terrain-foot div:last-child {
    border-bottom: 0;
  }
  .hero-strip-inner {
    grid-template-columns: 1fr;
  }
  .hero-strip a {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .hero-strip a:last-child {
    border-bottom: 0 !important;
  }
  .gap-title {
    font-size: 3.65rem;
  }
  .situation {
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 22px 0;
  }
  .situation p {
    grid-column: 1/-1;
    padding-left: 59px;
  }
  .cap-list {
    grid-template-columns: 1fr;
  }
  .cap-button {
    min-height: 92px;
  }
  .cap-stage {
    min-height: 690px;
  }
  .cap-panel {
    padding: 23px;
  }
  .cap-visual svg {
    height: 260px;
  }
  .cap-panel-foot h3 {
    font-size: 2.6rem;
  }
  .route {
    padding: 32px 20px;
  }
  .route-line {
    left: 50px;
  }
  .phase {
    grid-template-columns: 62px 1fr;
    column-gap: 16px;
  }
  .phase-node {
    width: 54px;
    height: 54px;
    box-shadow: 0 0 0 8px var(--navy);
  }
  .remain {
    min-height: 300px;
  }
  .remain h3 {
    margin-top: 76px;
  }
  .cta-box {
    padding: 44px 20px;
    border-radius: 27px;
  }
  .cta-title {
    font-size: 3.45rem;
  }
  .brief-card {
    padding: 20px;
  }
  .brief-form {
    grid-template-columns: 1fr;
  }
  .field.full,
  .brief-actions {
    grid-column: auto;
  }
  .brief-actions {
    display: grid;
  }
  .brief-actions small {
    max-width: none;
  }
  .footer-brand img {
    width: 170px;
  }
}

/* Legal and utility pages */
.legal-body {
  min-height: 100svh;
  background: var(--paper);
}
.legal-header {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 245, 0.96);
}
.legal-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-header img {
  width: 180px;
}
.legal-header a {
  text-decoration: none;
}
.legal-back {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.legal-main {
  padding: clamp(70px, 10vw, 130px) 0;
}
.legal-content {
  max-width: 820px;
}
.legal-kicker {
  margin: 0 0 18px;
  color: var(--terracotta-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.legal-updated {
  margin: 0 0 52px;
  color: var(--soft);
  font-size: 0.75rem;
}
.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content a {
  text-underline-offset: 3px;
}
.utility-card {
  max-width: 760px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.utility-card .btn {
  margin-top: 24px;
}
@media (max-width: 590px) {
  .legal-header img {
    width: 150px;
  }
  .legal-main {
    padding: 58px 0;
  }
  .legal-content h1 {
    font-size: 3.2rem;
  }
  .utility-card {
    border-radius: 22px;
  }
}

/* V4.2 production resilience */
.brief-actions small a,
.form-fallback a,
.legal-content a,
.thanks-card a {
  color: inherit;
  text-underline-offset: 3px;
}
.form-fallback {
  grid-column: 1/-1;
  padding: 16px;
  border: 1px solid rgba(196, 90, 55, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}
.form-fallback p {
  margin: 0;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.65;
}
.form-fallback small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.66rem;
}
.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 13px;
}
.fallback-actions .btn {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.75rem;
}
.noscript-note {
  grid-column: 1/-1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(196, 90, 55, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}
.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: #9f4229;
}
.policy-shell {
  min-height: 100svh;
  background: linear-gradient(180deg, #fcfcfa 0%, var(--paper) 78%);
}
.policy-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.policy-header img {
  width: 180px;
}
.policy-header a {
  text-decoration: none;
}
.policy-back {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}
.legal-hero {
  padding: clamp(90px, 12vw, 150px) 0 48px;
}
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 600;
}
.legal-meta {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.policy-shell .legal-content {
  max-width: 820px;
  padding: 0 0 110px;
}
.policy-shell .legal-content h2 {
  margin: 46px 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.policy-shell .legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.02rem;
}
.policy-shell .legal-content p,
.policy-shell .legal-content li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}
.policy-shell .legal-content ul {
  padding-left: 1.25rem;
}
.legal-note {
  padding: 16px 18px;
  border-left: 2px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.62);
}
.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(196, 90, 55, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(199, 154, 90, 0.15),
      transparent 28%
    ),
    var(--paper);
}
.thanks-card {
  width: min(760px, 100%);
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.thanks-card img {
  width: 190px;
}
.thanks-card h1 {
  margin: 58px 0 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.thanks-card p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}
@media (max-width: 590px) {
  .fallback-actions {
    display: grid;
  }
  .fallback-actions .btn {
    width: 100%;
  }
  .policy-header img {
    width: 150px;
  }
  .legal-hero {
    padding-top: 72px;
  }
  .thanks-card {
    padding: 32px 22px;
    border-radius: 26px;
  }
  .thanks-actions {
    display: grid;
  }
}

/* Master approval pass — optical balance, responsive coherence and CSP-safe utilities */
.terrain-map {
  height: 350px;
  margin-top: 15px;
}
.terrain-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 15px;
  box-shadow: none;
  transform: none;
}
.terrain-note small,
.terrain-note strong,
.terrain-note span {
  margin: 0;
}
.terrain-note strong {
  font-size: 0.69rem;
}
.terrain-note span {
  white-space: nowrap;
}
.hero-strip {
  margin-top: 34px;
}
.gap-title {
  font-size: clamp(3.5rem, 6.25vw, 6.65rem);
  line-height: 0.92;
  letter-spacing: -0.068em;
}
.gap-grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  gap: clamp(48px, 7vw, 104px);
}
.situations-head,
.cap-head,
.approach-head,
.remains-head {
  gap: clamp(42px, 5vw, 72px);
  margin-bottom: 56px;
}
.situation {
  grid-template-columns: 96px minmax(0, 1fr) minmax(250px, 0.55fr);
  padding: 25px 0;
}
.cap-stage {
  min-height: 590px;
  border-radius: var(--radius-lg);
}
.cap-panel {
  padding: 38px;
}
.route {
  border-radius: var(--radius-lg);
}
.remain {
  min-height: 330px;
}
.principle-quote {
  font-size: clamp(3rem, 5.8vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.063em;
}
.cta-box {
  border-radius: 32px;
}
.clipboard-helper {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.trail {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.reveal {
  transition-duration: 0.5s, 0.65s;
}
.js .reveal:not(.is-visible) {
  transform: translateY(14px);
}
.reveal-delay {
  transition-delay: 0.06s;
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 144px;
  }
  .hero-grid {
    gap: 44px;
  }
  .gap-grid {
    grid-template-columns: 1fr;
  }
  .terrain-wrap {
    width: min(860px, 100%);
    padding: 18px 0 24px;
    margin: 0 auto;
  }
  .hero-strip {
    margin-top: 30px;
  }
  .cap-stage {
    min-height: 620px;
  }
}
@media (max-width: 840px) {
  .shell {
    width: min(var(--max), calc(100% - 40px));
  }
  .hero {
    padding: 120px 0 72px;
  }
  .hero-grid {
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(4.15rem, 10vw, 5.4rem);
    line-height: 0.91;
  }
  .terrain-wrap {
    padding: 8px 0 16px;
  }
  .terrain-note {
    display: none;
  }
  .terrain-card {
    min-height: 510px;
  }
  .terrain-map {
    height: 325px;
  }
  .hero-strip {
    margin-top: 24px;
  }
  .section {
    padding: 82px 0;
  }
  .cap-list {
    gap: 12px;
  }
  .cap-stage {
    min-height: 650px;
  }
  .route {
    padding: 42px 32px 34px;
  }
}
@media (max-width: 590px) {
  body::before {
    opacity: 0.014;
  }
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }
  .section {
    padding: 72px 0;
  }
  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.61rem;
    letter-spacing: 0.135em;
  }
  .section-title {
    font-size: clamp(2.75rem, 13.2vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }
  .section-copy {
    font-size: 0.94rem;
    line-height: 1.72;
  }
  .hero {
    padding: 112px 0 64px;
  }
  .hero h1 {
    font-size: clamp(2.82rem, 14vw, 3.65rem);
    line-height: 0.92;
    letter-spacing: -0.058em;
  }
  .hero h1 span {
    white-space: nowrap;
  }
  .hero-lead {
    margin-top: 23px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero-proof {
    margin-top: 29px;
  }
  .terrain-card {
    min-height: 0;
    padding: 19px;
    border-radius: 22px;
  }
  .terrain-map {
    height: 250px;
    margin-top: 11px;
  }
  .terrain-foot {
    display: none;
  }
  .station-label {
    font-size: 13px;
  }
  .station-note {
    display: none;
  }
  .bearing-title {
    font-size: 16px;
  }
  .bearing-sub {
    display: none;
  }
  .hero-strip {
    margin-top: 20px;
  }
  .hero-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-strip a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    padding: 17px 13px;
  }
  .hero-strip a:nth-child(odd) {
    border-right: 1px solid var(--line) !important;
  }
  .hero-strip a:nth-child(even) {
    border-right: 0 !important;
  }
  .hero-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line) !important;
  }
  .hero-strip a:nth-child(n + 3) {
    border-bottom: 0 !important;
  }
  .hero-strip small,
  .hero-strip .arrow {
    display: none;
  }
  .gap-title {
    font-size: clamp(3rem, 14.5vw, 4.1rem);
    line-height: 0.94;
  }
  .gap-aside > p {
    font-size: 0.94rem;
    line-height: 1.78;
  }
  .situation {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 23px 0;
  }
  .situation p {
    grid-column: auto;
    padding-left: 0;
    margin-top: 5px;
  }
  .situation:hover {
    padding-left: 0;
  }
  .cap-button {
    grid-template-columns: 38px 1fr auto;
    padding: 16px;
  }
  .cap-button:hover,
  .cap-button.active {
    padding-left: 16px;
  }
  .cap-stage {
    min-height: 590px;
    border-radius: 22px;
  }
  .cap-panel {
    padding: 21px;
  }
  .cap-panel-head {
    display: grid;
    gap: 6px;
  }
  .cap-panel-head b {
    line-height: 1.5;
  }
  .cap-visual svg {
    height: 230px;
  }
  .d-text {
    font-size: 13px;
  }
  .d-label {
    font-size: 16px;
  }
  .cap-panel-foot h3 {
    font-size: 2.35rem;
  }
  .cap-panel-foot p {
    font-size: 0.8rem;
    line-height: 1.65;
  }
  .route {
    padding: 30px 18px;
    border-radius: 22px;
  }
  .phase {
    padding-bottom: 31px;
  }
  .remain {
    min-height: 270px;
    padding: 26px 4px;
  }
  .remain h3 {
    margin-top: 66px;
  }
  .principle-quote {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }
  .principle-caption {
    font-size: 0.94rem;
    line-height: 1.75;
  }
  .cta {
    padding-top: 22px;
  }
  .cta-box {
    padding: 38px 18px;
    border-radius: 24px;
  }
  .cta-title {
    font-size: clamp(3rem, 14vw, 4rem);
  }
  .brief-card {
    padding: 19px;
    border-radius: 21px;
  }
  .brief-head {
    display: grid;
    gap: 5px;
  }
  .footer-links {
    display: grid;
    justify-content: start;
    gap: 8px;
  }
}
@media (max-width: 350px) {
  .hero h1 {
    font-size: 2.72rem;
  }
  .brand img {
    width: 145px;
  }
  .nav {
    padding-left: 12px;
  }
  .section-title {
    font-size: 2.72rem;
  }
  .terrain-map {
    height: 220px;
  }
  .cap-panel-foot h3 {
    font-size: 2.1rem;
  }
}
