:root {
  --ink: #f4f1e9;
  --ink-soft: #b8b6af;
  --paper: #f2efe7;
  --paper-ink: #191a18;
  --night: #0b0d0c;
  --night-2: #111412;
  --night-3: #171a17;
  --line: rgba(244, 241, 233, 0.16);
  --line-dark: rgba(25, 26, 24, 0.17);
  --accent: #ff5c35;
  --accent-soft: #ff8b6d;
  --success: #b7dc57;
  --max: 1240px;
  --header: 76px;
  --radius: 20px;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  background: var(--night);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
}

::selection {
  color: var(--night);
  background: var(--accent-soft);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  color: var(--night);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 780px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--night) 80%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--night) 94%, transparent);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin-inline: auto;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-mark {
  width: 31px;
  height: 31px;
}

.brand-word {
  position: relative;
  top: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 0.2rem;
}

.nav-link,
.nav-menu > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.7rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  list-style: none;
  transition: color 160ms ease;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.nav-menu > summary::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-menu[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-menu > summary:hover,
.nav-menu[open] > summary {
  color: var(--ink);
}

.nav-menu {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 510px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #121512;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  transform: translateX(-50%);
}

.nav-panel a {
  display: block;
  min-height: 76px;
  padding: 0.9rem;
  border-radius: 11px;
  transition: background 160ms ease;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-panel strong,
.nav-panel span {
  display: block;
}

.nav-panel strong {
  margin-bottom: 0.18rem;
  font-size: 0.91rem;
}

.nav-panel span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: #ff714e;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.button-light {
  color: var(--paper-ink);
  background: var(--paper);
}

.button-link {
  min-height: 40px;
  padding: 0.4rem 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.eyebrow,
.kicker {
  margin: 0 0 1.1rem;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 92, 53, 0.12), transparent 28%),
    linear-gradient(130deg, #090b0a 0%, #0b0e0c 53%, #101410 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0,0,0,.2), #000 54%, rgba(0,0,0,.45));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header));
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 3.4rem 0 5rem;
  grid-template-columns: minmax(0, 0.84fr) minmax(470px, 1.16fr);
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.brand-display {
  margin: 0 0 1.1rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 em,
.page-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lede,
.page-lede {
  max-width: 570px;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.75rem;
}

.hero-note {
  display: flex;
  align-items: center;
  margin-top: 1.3rem;
  color: #8f928b;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
  gap: 0.55rem;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  content: "";
  box-shadow: 0 0 0 4px rgba(183, 220, 87, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  align-self: stretch;
}

.route-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 76vw);
  max-width: none;
  transform: translate(-49%, -50%);
  filter: drop-shadow(0 34px 74px rgba(0,0,0,.4));
}

.route-globe .grid-line {
  fill: none;
  stroke: rgba(244, 241, 233, 0.13);
  stroke-width: 1;
}

.route-globe .route {
  fill: none;
  stroke: rgba(255, 92, 53, 0.86);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 5 11;
  animation: route-flow 7s linear infinite;
}

.route-globe .route.secondary {
  stroke: rgba(244, 241, 233, 0.5);
  animation-duration: 11s;
}

.route-globe .node {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(255, 92, 53, .85));
}

.route-globe .node-ring {
  fill: none;
  stroke: rgba(255, 92, 53, .46);
  animation: node-pulse 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.route-readout {
  position: absolute;
  right: 0;
  bottom: 2.1rem;
  width: 270px;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(11, 13, 12, 0.56);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  line-height: 1.8;
  backdrop-filter: blur(12px);
}

.route-readout b {
  display: block;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 1.4rem;
  left: 50%;
  display: flex;
  align-items: center;
  color: #777b74;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: .7rem;
  transform: translateX(-50%);
}

.scroll-cue::before {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
}

@keyframes route-flow {
  to { stroke-dashoffset: -160; }
}

@keyframes node-pulse {
  0% { opacity: .8; transform: scale(.5); }
  80%, 100% { opacity: 0; transform: scale(1.8); }
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.section-light {
  color: var(--paper-ink);
  background: var(--paper);
}

.section-dark {
  color: var(--ink);
  background: var(--night);
}

.section-deep {
  color: var(--ink);
  background: #060807;
}

.section-accent {
  color: #1a100d;
  background: var(--accent);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-light.section-rule {
  border-top-color: var(--line-dark);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 2rem 5rem;
}

.section-heading h2,
.display-heading {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  margin: 0;
  color: #676a63;
  font-size: 1rem;
}

.section-dark .section-heading p,
.section-deep .section-heading p {
  color: var(--ink-soft);
}

.service-ledger {
  border-top: 1px solid var(--line-dark);
}

.section-dark .service-ledger,
.section-deep .service-ledger {
  border-top-color: var(--line);
}

.service-row {
  position: relative;
  display: grid;
  min-height: 190px;
  align-items: center;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 80px minmax(0, 1.1fr) minmax(260px, .7fr) 52px;
  gap: 1.5rem;
  transition: padding 220ms ease;
}

.section-dark .service-row,
.section-deep .service-row {
  border-bottom-color: var(--line);
}

.service-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 92, 53, .05);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-row:hover {
  padding-inline: 1.1rem;
}

.service-row:hover::before {
  opacity: 1;
}

.service-index {
  color: #8b8c87;
  font-family: var(--font-mono);
  font-size: .7rem;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.service-row p {
  margin: 0;
  color: #6d6f69;
  font-size: .92rem;
}

.section-dark .service-row p,
.section-deep .service-row p {
  color: var(--ink-soft);
}

.arrow-disc {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.15rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-row:hover .arrow-disc {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-35deg);
}

.split-story {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header) + 3rem);
}

.sticky-copy h2,
.split-story h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .96;
}

.sticky-copy p {
  max-width: 470px;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.story-steps {
  border-top: 1px solid var(--line);
}

.story-step {
  padding: 2.4rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

.story-step small {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
}

.story-step h3 {
  margin: .8rem 0 .9rem;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.story-step p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.statement {
  display: grid;
  min-height: 580px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 5rem;
}

.statement blockquote {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .9;
}

.statement blockquote span {
  color: rgba(26, 16, 13, .45);
}

.statement-aside {
  max-width: 420px;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26,16,13,.3);
}

.statement-aside p {
  margin: 0 0 1.6rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255,92,53,.06), transparent 44%),
    linear-gradient(180deg, #0a0c0b, #101310);
}

.page-hero::after {
  position: absolute;
  right: -13vw;
  bottom: -45%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 8vw rgba(255,255,255,.014), 0 0 0 17vw rgba(255,255,255,.012);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 630px;
  align-content: center;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 5rem 0;
}

.page-hero h1 {
  max-width: 1030px;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  color: #8d9089;
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  gap: .6rem;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--accent-soft);
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.feature-column {
  min-height: 340px;
  padding: 2.2rem 2rem 2.8rem;
  border-right: 1px solid var(--line-dark);
}

.feature-column:first-child {
  padding-left: 0;
}

.feature-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-column .feature-number {
  display: block;
  margin-bottom: 5rem;
  color: #7b7e76;
  font-family: var(--font-mono);
  font-size: .7rem;
}

.feature-column h3 {
  margin: 0 0 .9rem;
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.feature-column p {
  margin: 0;
  color: #6c6e68;
  font-size: .9rem;
}

.spec-list {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(170px, .5fr) minmax(0, 1fr);
  gap: 2rem;
}

.spec-row dt {
  color: #91958d;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.spec-row dd {
  margin: 0;
}

.notice {
  padding: 1.2rem 1.35rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  background: rgba(255, 92, 53, .08);
  font-size: .88rem;
}

.section-light .notice {
  color: #4f514d;
}

.tab-shell {
  margin-top: 3.5rem;
}

.tab-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  min-width: max-content;
  padding: 1rem 1.25rem;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  background: transparent;
  font-size: .82rem;
  font-weight: 700;
}

.tab-button[aria-selected="true"] {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.tab-panel {
  padding: 3rem 0 0;
}

.tab-panel[hidden] {
  display: none;
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr);
  gap: 4rem;
}

.region-layout h3 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.region-layout p {
  max-width: 610px;
  color: var(--ink-soft);
}

.region-meta {
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.region-meta div {
  display: flex;
  justify-content: space-between;
  padding: .62rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.region-meta span:first-child {
  color: #898d85;
}

.quote-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.quote-copy {
  position: sticky;
  top: calc(var(--header) + 3rem);
}

.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
}

.quote-copy p {
  max-width: 470px;
  color: var(--ink-soft);
}

.quote-builder {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--night-2);
  box-shadow: var(--shadow);
}

.quote-builder h3 {
  margin: 0 0 2rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: .55rem;
}

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

.field label,
.field .field-label {
  color: #979a93;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #0c0f0d;
}

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

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8c8f88 50%), linear-gradient(135deg, #8c8f88 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.quote-summary {
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: .75rem;
  line-height: 1.8;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
}

.quote-disclaimer {
  margin: 1rem 0 0;
  color: #7f837b;
  font-size: .72rem;
}

.plan-list {
  border-top: 1px solid var(--line-dark);
}

.plan-row {
  display: grid;
  align-items: center;
  min-height: 210px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(190px, .52fr) minmax(0, 1fr) minmax(140px, .25fr);
  gap: 2rem;
}

.plan-row h3 {
  margin: 0 0 .35rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -.035em;
}

.plan-row small {
  color: #777b74;
  font-family: var(--font-mono);
}

.plan-features {
  display: grid;
  margin: 0;
  padding: 0;
  color: #5f625c;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 1rem;
}

.plan-features li::before {
  margin-right: .5rem;
  color: var(--accent);
  content: "+";
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 1.55rem 3.5rem 1.55rem 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: .3rem;
  color: var(--accent);
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 1.8rem;
  color: #62655f;
}

.contact-hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
}

.contact-grid {
  display: grid;
  align-items: end;
  padding: 5rem 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .7fr);
  gap: 5rem;
}

.contact-grid h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .84;
}

.contact-grid h1 em {
  color: var(--accent);
  font-style: normal;
}

.contact-block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-block p {
  color: var(--ink-soft);
}

.email-display {
  display: inline-block;
  margin: 1rem 0 1.4rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.legal-copy {
  color: #4f524c;
}

.legal-copy h2 {
  margin: 3.2rem 0 .8rem;
  color: var(--paper-ink);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.legal-copy h3 {
  margin: 2rem 0 .6rem;
  color: var(--paper-ink);
  font-size: 1.05rem;
}

.legal-copy a {
  color: #a92f17;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-meta {
  margin-bottom: 3rem;
  color: #777a73;
  font-family: var(--font-mono);
  font-size: .75rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 10rem) 0;
  color: #1b100d;
  background: var(--accent);
}

.final-cta::after {
  position: absolute;
  top: 50%;
  right: -13vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(27,16,13,.22);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 8vw rgba(27,16,13,.045), 0 0 0 16vw rgba(27,16,13,.035);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .32fr);
  gap: 4rem;
}

.final-cta h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 7.9rem);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .88;
}

.final-cta p {
  max-width: 330px;
  margin: 0 0 1.7rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #080a09;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.3fr) repeat(3, minmax(120px, .55fr));
  gap: 2rem 4rem;
}

.footer-brand p {
  max-width: 310px;
  margin: 1.4rem 0 0;
  color: #8d9089;
  font-size: .84rem;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: #777b74;
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: .55rem 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #70746d;
  font-family: var(--font-mono);
  font-size: .64rem;
  gap: 2rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(.2,.65,.25,1), transform 650ms cubic-bezier(.2,.65,.25,1);
}

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

.hero .brand-display,
.hero .eyebrow,
.hero h1,
.hero .hero-lede,
.hero .hero-actions,
.hero .hero-note {
  opacity: 0;
  animation: hero-in 700ms cubic-bezier(.2,.7,.25,1) forwards;
}

.hero .brand-display { animation-delay: 80ms; }
.hero .eyebrow { animation-delay: 150ms; }
.hero h1 { animation-delay: 220ms; }
.hero .hero-lede { animation-delay: 330ms; }
.hero .hero-actions { animation-delay: 420ms; }
.hero .hero-note { animation-delay: 510ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100vh - var(--header));
    height: calc(100dvh - var(--header));
    overflow-y: auto;
    padding: 1.5rem 24px 4rem;
    background: #0b0e0c;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 240ms cubic-bezier(.2,.7,.25,1), visibility 0s linear 240ms;
  }

  .desktop-nav.is-open {
    clip-path: inset(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav > .nav-link,
  .nav-menu > summary {
    display: flex;
    min-height: 58px;
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.2rem;
  }

  .nav-menu > summary {
    justify-content: space-between;
  }

  .nav-panel {
    position: static;
    width: auto;
    padding: .8rem 0 1.2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: 1fr;
    transform: none;
  }

  .nav-panel a {
    min-height: 64px;
    padding: .7rem .8rem;
    border-left: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-panel a:hover {
    background: rgba(255,255,255,.04);
  }

  .header-actions .button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .85fr);
  }

  .service-row {
    grid-template-columns: 60px minmax(0, 1fr) 44px;
  }

  .service-row p {
    grid-column: 2 / 3;
  }

  .quote-layout {
    grid-template-columns: minmax(0, .72fr) minmax(390px, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  :root { --header: 68px; }

  .container,
  .narrow,
  .nav-shell,
  .hero-inner,
  .page-hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero-inner {
    display: block;
    min-height: calc(100svh - var(--header));
    padding: 4rem 0 4.5rem;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3.15rem, 13vw, 6.4rem);
  }

  .hero-visual {
    position: absolute;
    inset: 16% -48% auto 38%;
    min-height: 460px;
    opacity: .56;
  }

  .route-globe {
    width: 770px;
  }

  .route-readout {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .split-story,
  .statement,
  .region-layout,
  .quote-layout,
  .contact-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .section-heading p {
    max-width: 600px;
  }

  .sticky-copy,
  .quote-copy {
    position: static;
  }

  .statement {
    min-height: auto;
    gap: 2.5rem;
  }

  .feature-columns {
    grid-template-columns: 1fr;
  }

  .feature-column,
  .feature-column:first-child,
  .feature-column:last-child {
    min-height: auto;
    padding: 2rem 0 2.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .feature-column:last-child {
    border-bottom: 0;
  }

  .feature-column .feature-number {
    margin-bottom: 2.6rem;
  }

  .quote-builder {
    padding: 1.4rem;
  }

  .plan-row {
    grid-template-columns: 1fr auto;
  }

  .plan-features {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 560px) {
  .brand-word {
    font-size: .9rem;
  }

  .hero-actions,
  .quote-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .quote-actions .button {
    width: 100%;
  }

  .hero-visual {
    inset: 26% -100% auto 14%;
    opacity: .42;
  }

  .service-row {
    min-height: 170px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: .7rem;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .arrow-disc {
    width: 36px;
    height: 36px;
  }

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

  .page-hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .field-grid,
  .plan-features {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .plan-row {
    grid-template-columns: 1fr;
  }

  .plan-features,
  .plan-row > .button {
    grid-column: 1;
  }

  .contact-grid {
    gap: 3.5rem;
  }

  .contact-grid h1 {
    font-size: clamp(3.7rem, 20vw, 6.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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