:root {
  --violet-950: #17123f;
  --violet-900: #1f1854;
  --violet-800: #2a2269;
  --violet-700: #3e3387;
  --blue: #27628b;
  --cyan: #74d1df;
  --lime: #d3e93c;
  --coral: #f27d85;
  --peach: #f2b18d;
  --lavender: #b9a8ec;
  --paper: #f2f0ff;
  --paper-warm: #fff5e9;
  --ink: #21194f;
  --muted: #655d85;
  --line: rgba(33, 25, 79, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 18px 45px rgba(29, 19, 75, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--lime);
  color: var(--violet-950);
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: rgba(23, 18, 63, .97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 184px;
  height: auto;
  aspect-ratio: 2092 / 752;
  display: block;
  object-fit: contain;
}
.brand-name {
  display: none;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .5rem .72rem;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--violet-950);
  background: var(--lime);
  transform: translateY(-1px);
}
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .55rem 1rem;
  color: var(--violet-950);
  background: var(--coral);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.header-action:hover { transform: translateY(-2px); background: var(--peach); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

.site-main { padding-top: var(--header-height); }
section, [id] { scroll-margin-top: calc(var(--header-height) + 18px); }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--cyan); }
.display-xl, .display-lg, .display-md, h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .98;
}
.display-xl { max-width: 10ch; margin-bottom: 1.5rem; font-size: clamp(3.4rem, 8vw, 8.3rem); }
.display-lg { max-width: 12ch; margin-bottom: 1.3rem; font-size: clamp(2.8rem, 6vw, 6rem); }
.display-md { max-width: 18ch; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.7rem); }
.lede { max-width: 57ch; margin: 0; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.24rem); }
.lede--light { color: rgba(255,255,255,.74); }
.serif { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -.05em; }
.mono { font-family: var(--mono); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--violet-950); background: var(--lime); }
.btn-primary:hover { background: #e1f35c; }
.btn-coral { color: var(--violet-950); background: var(--coral); }
.btn-coral:hover { background: var(--peach); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.5); }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost--light:hover { color: var(--violet-950); border-color: var(--lime); background: var(--lime); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--violet-700); font-weight: 800; }
.text-link::after { content: "↗"; color: var(--coral); font-size: 1.1em; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

.hero-field {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--violet-950);
}
.hero-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .6;
  background-image:
    linear-gradient(rgba(116,209,223,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,209,223,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black 0%, rgba(0,0,0,.7) 55%, transparent 100%);
}
.hero-field::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -22vw;
  width: 70vw;
  height: 70vw;
  z-index: -3;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 44%, rgba(211,233,60,.34), rgba(242,125,133,.14) 26%, transparent 66%);
  filter: blur(2px);
}
.hero-inner {
  width: min(1400px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(450px, 1.22fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(68px, 8vw, 112px) 0 76px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { color: #fff; }
.hero-copy .display-xl { max-width: 8.5ch; }
.hero-copy .serif { color: var(--peach); }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  max-width: 31rem;
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}
.hero-note strong { color: var(--lime); font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.field-map {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(116,209,223,.25);
  border-radius: 36px;
  background:
    radial-gradient(circle at 60% 47%, rgba(39,98,139,.48), transparent 34%),
    linear-gradient(145deg, rgba(62,51,135,.43), rgba(23,18,63,.78));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.025), 0 28px 80px rgba(0,0,0,.24);
  overflow: hidden;
}
.field-map::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px dashed rgba(255,255,255,.24);
  border-radius: 46% 54% 58% 42%;
  transform: rotate(-9deg);
}
.field-map::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211,233,60,.5), transparent);
}
.map-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  color: rgba(255,255,255,.56);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.map-label b { color: var(--lime); font-weight: 800; }
.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  color: var(--violet-950);
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  animation: float-node 7s ease-in-out infinite;
}
.map-node::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: -5px;
  top: -5px;
  border-radius: 50%;
  background: var(--lime);
}
div.map-node:nth-of-type(1) { left: 14%; top: 19%; background: var(--lime); animation-delay: -.5s; }
div.map-node:nth-of-type(2) { left: 47%; top: 12%; background: var(--peach); animation-delay: -1.7s; }
div.map-node:nth-of-type(3) { right: 13%; top: 31%; background: var(--cyan); animation-delay: -3.2s; }
div.map-node:nth-of-type(4) { left: 33%; bottom: 18%; background: var(--coral); animation-delay: -4.2s; }
div.map-node:nth-of-type(5) { right: 26%; bottom: 14%; background: var(--lavender); animation-delay: -5.4s; }
.map-line { position: absolute; z-index: 1; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(211,233,60,.85), rgba(116,209,223,.24)); }
.map-line--one { left: 25%; top: 28%; width: 28%; transform: rotate(-22deg); }
.map-line--two { left: 54%; top: 24%; width: 25%; transform: rotate(22deg); }
.map-line--three { left: 47%; top: 30%; width: 23%; transform: rotate(108deg); }
.map-line--four { left: 42%; top: 63%; width: 25%; transform: rotate(-28deg); }
.map-dot { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(211,233,60,.12); }
.map-dot--one { left: 30%; top: 29%; }
.map-dot--two { left: 69%; top: 36%; background: var(--coral); }
.map-dot--three { left: 51%; top: 68%; background: var(--cyan); }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--dark { color: #fff; background: var(--violet-900); }
.section--violet { color: #fff; background: var(--violet-800); }
.section--warm { background: var(--paper-warm); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading .lede { max-width: 34rem; }

.pulse-section { background: var(--lime); }
.pulse-row { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 3rem; }
.pulse-row h2 { max-width: 8ch; margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 4.1rem); }
.pulse-sequence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(33,25,79,.35); border-bottom: 1px solid rgba(33,25,79,.35); }
.pulse-step { position: relative; min-height: 132px; padding: 1rem .8rem 1.2rem 1rem; border-right: 1px solid rgba(33,25,79,.35); }
.pulse-step:last-child { border-right: 0; }
.pulse-step::before { content: ""; display: block; width: 18px; height: 5px; margin-bottom: 1.35rem; border-radius: 4px; background: var(--violet-950); }
.pulse-step:nth-child(2)::before { background: var(--coral); }
.pulse-step:nth-child(3)::before { background: var(--blue); }
.pulse-step:nth-child(4)::before { background: var(--violet-700); }
.pulse-step strong { display: block; margin-bottom: .35rem; font-size: .95rem; }
.pulse-step span { display: block; color: rgba(33,25,79,.69); font-family: var(--mono); font-size: .65rem; line-height: 1.4; text-transform: uppercase; }

.lens-section { background: var(--paper); }
.lens-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.lens-intro { position: sticky; top: calc(var(--header-height) + 28px); }
.lens-intro h2 { max-width: 9ch; }
.lens-intro .eyebrow { color: var(--coral); }
.lens-list { border-top: 1px solid var(--line); }
.lens-item { display: grid; grid-template-columns: 70px 1fr 32px; gap: 1rem; align-items: start; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.lens-item .index { color: var(--coral); font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.lens-item h3 { margin: 0 0 .45rem; font-size: clamp(1.35rem, 2.3vw, 2.15rem); }
.lens-item p { max-width: 48ch; margin: 0; color: var(--muted); font-size: .92rem; }
.lens-item .arrow { color: var(--violet-700); font-size: 1.2rem; }

.boundary-section { background: var(--violet-950); color: #fff; }
.boundary-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 4rem; align-items: center; }
.boundary-layout h2 { color: #fff; max-width: 9ch; }
.boundary-copy { color: rgba(255,255,255,.72); }
.boundary-copy p { max-width: 54ch; }
.boundary-list { display: grid; gap: .7rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.boundary-list li { display: flex; gap: .75rem; align-items: flex-start; padding-top: .7rem; border-top: 1px solid var(--line-light); font-size: .9rem; }
.boundary-list li::before { content: "↗"; color: var(--lime); font-weight: 900; }
.boundary-stamp { display: grid; place-items: center; min-height: 270px; padding: 2rem; border: 1px solid rgba(211,233,60,.42); border-radius: 50%; color: var(--lime); text-align: center; transform: rotate(5deg); }
.boundary-stamp strong { display: block; max-width: 10ch; font-size: clamp(2rem, 4vw, 3.5rem); line-height: .95; }
.boundary-stamp span { margin-top: 1rem; color: rgba(255,255,255,.6); font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }

.closing-band { padding: 2.1rem 0; background: var(--coral); }
.closing-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.closing-band h2 { margin: 0; max-width: 16ch; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.closing-band .btn { background: var(--violet-950); color: #fff; }

.page-hero { padding: clamp(66px, 9vw, 120px) 0 72px; background: var(--violet-950); color: #fff; }
.page-hero h1 { color: #fff; max-width: 9ch; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 3rem; align-items: end; }
.page-hero-meta { display: flex; justify-content: flex-end; align-items: flex-end; gap: 1rem; }
.page-hero-meta .meta-number { color: var(--lime); font-family: var(--mono); font-size: clamp(4rem, 10vw, 9rem); font-weight: 900; line-height: .75; }
.page-hero-meta .meta-copy { max-width: 14rem; padding-bottom: .35rem; color: rgba(255,255,255,.64); font-size: .87rem; }
.page-hero--coral { background: var(--coral); color: var(--violet-950); }
.page-hero--coral h1 { color: var(--violet-950); }
.page-hero--coral .eyebrow { color: var(--violet-950); }
.page-hero--coral .meta-number { color: var(--violet-950); }
.page-hero--coral .meta-copy { color: rgba(33,25,79,.68); }

.principles { background: var(--paper-warm); }
.principle-stack { display: grid; gap: .75rem; }
.principle { display: grid; grid-template-columns: 76px minmax(180px, .55fr) 1fr; gap: 1rem; align-items: center; min-height: 104px; padding: 1rem 1.2rem; border-radius: var(--radius-md); }
.principle:nth-child(1) { background: var(--lime); }
.principle:nth-child(2) { color: #fff; background: var(--violet-700); }
.principle:nth-child(3) { color: #fff; background: var(--blue); }
.principle:nth-child(4) { background: var(--peach); }
.principle .num { font-family: var(--mono); font-size: .72rem; font-weight: 900; }
.principle h2 { margin: 0; color: inherit; font-size: clamp(1.4rem, 2.4vw, 2.3rem); }
.principle p { margin: 0; max-width: 46ch; font-size: .9rem; opacity: .8; }

.studio-section { background: var(--paper); }
.studio-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.studio-copy h2 { max-width: 10ch; }
.studio-copy p { max-width: 52ch; color: var(--muted); }
.studio-board { position: relative; min-height: 390px; padding: 1.2rem; border-radius: 30px; background: var(--violet-800); overflow: hidden; }
.studio-board::before { content: "REMOTE / HUMAN / SYSTEM"; position: absolute; top: 1rem; right: 1rem; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; }
.board-column { position: absolute; top: 5rem; bottom: 1.2rem; width: 2px; background: rgba(255,255,255,.18); }
.board-column:nth-child(1) { left: 28%; }
.board-column:nth-child(2) { left: 58%; }
.board-column:nth-child(3) { left: 80%; }
.board-card { position: absolute; z-index: 1; padding: 1rem; border: 1px solid rgba(255,255,255,.23); border-radius: 14px; box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.board-card strong { display: block; margin-bottom: .4rem; font-size: .88rem; }
.board-card span { color: rgba(255,255,255,.66); font-family: var(--mono); font-size: .6rem; line-height: 1.3; text-transform: uppercase; }
.board-card--lime { left: 7%; top: 27%; background: var(--lime); color: var(--violet-950); }
.board-card--lime span { color: rgba(33,25,79,.68); }
.board-card--coral { left: 39%; top: 47%; background: var(--coral); color: var(--violet-950); }
.board-card--coral span { color: rgba(33,25,79,.68); }
.board-card--cyan { right: 8%; top: 22%; background: var(--cyan); color: var(--violet-950); }
.board-card--cyan span { color: rgba(33,25,79,.68); }
.board-card--peach { right: 13%; bottom: 13%; background: var(--peach); color: var(--violet-950); }
.board-card--peach span { color: rgba(33,25,79,.68); }
.studio-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 1.5rem; }
.studio-fact { padding: .85rem; border-top: 2px solid var(--coral); }
.studio-fact strong { display: block; font-size: .86rem; }
.studio-fact span { display: block; color: var(--muted); font-size: .78rem; }

.scope-section { color: #fff; background: var(--blue); }
.scope-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; }
.scope-grid h2 { color: #fff; max-width: 9ch; }
.scope-grid p { color: rgba(255,255,255,.74); }
.scope-rule { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.scope-rule b { flex: 0 0 55px; color: var(--lime); font-family: var(--mono); font-size: .7rem; }
.scope-rule span { color: rgba(255,255,255,.79); font-size: .91rem; }

.service-section { background: var(--paper); }
.service-list { border-top: 1px solid var(--line); }
.service-row { border-bottom: 1px solid var(--line); }
.service-row summary { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto 34px; gap: 1rem; align-items: center; padding: 1.35rem 0; list-style: none; cursor: pointer; }
.service-row summary::-webkit-details-marker { display: none; }
.service-row summary .service-index { color: var(--coral); font-family: var(--mono); font-size: .7rem; font-weight: 900; }
.service-row summary h2 { margin: 0; font-size: clamp(1.35rem, 2.7vw, 2.4rem); }
.service-price { color: var(--violet-700); font-family: var(--mono); font-size: .72rem; font-weight: 800; text-align: right; white-space: nowrap; }
.service-chevron { color: var(--coral); font-size: 1.4rem; transition: transform .2s ease; }
.service-row[open] .service-chevron { transform: rotate(45deg); }
.service-detail { display: grid; grid-template-columns: 56px minmax(0, 1fr) 220px; gap: 1rem; padding: 0 0 1.55rem; }
.service-detail p { grid-column: 2; max-width: 56ch; margin: 0; color: var(--muted); }
.service-detail .btn { grid-column: 3; grid-row: 1; align-self: start; }
.service-detail .service-tag { grid-column: 2; color: var(--blue); font-family: var(--mono); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-note { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.3rem; padding: 1.4rem; border-left: 5px solid var(--lime); background: var(--paper-warm); }
.service-note p { margin: 0; color: var(--muted); font-size: .88rem; }
.fit-section { background: var(--lime); }
.fit-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; }
.fit-layout h2 { max-width: 8ch; }
.fit-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.fit-factor { padding: 1.1rem; border: 1px solid rgba(33,25,79,.34); border-radius: var(--radius-sm); }
.fit-factor strong { display: block; margin-bottom: .35rem; }
.fit-factor span { display: block; color: rgba(33,25,79,.68); font-size: .82rem; }

.route-section { background: var(--paper-warm); }
.route-layout { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(2rem, 7vw, 7rem); }
.route-intro h2 { max-width: 9ch; }
.route-intro p { max-width: 44ch; color: var(--muted); }
.route-list { position: relative; display: grid; gap: 0; }
.route-list::before { content: ""; position: absolute; left: 22px; top: 24px; bottom: 24px; width: 2px; background: var(--coral); }
.route-step { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: 0 0 1.8rem; }
.route-step:last-child { padding-bottom: 0; }
.route-num { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--violet-950); background: var(--lime); font-family: var(--mono); font-size: .7rem; font-weight: 900; }
.route-step:nth-child(2) .route-num { background: var(--cyan); }
.route-step:nth-child(3) .route-num { background: var(--peach); }
.route-step:nth-child(4) .route-num { background: var(--coral); }
.route-step:nth-child(5) .route-num { background: var(--lavender); }
.route-step h2 { margin: .2rem 0 .4rem; font-size: clamp(1.35rem, 2.4vw, 2.1rem); }
.route-step p { margin: 0; color: var(--muted); font-size: .88rem; }
.route-aside { align-self: start; padding: 1.4rem; border-radius: var(--radius-md); color: #fff; background: var(--violet-900); }
.route-aside strong { display: block; margin-bottom: 1rem; color: var(--lime); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.route-aside p { margin: 0; color: rgba(255,255,255,.74); font-size: .9rem; }
.handoff-section { background: var(--cyan); }
.handoff-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; }
.handoff-layout h2 { max-width: 8ch; }
.handoff-table { width: 100%; border-collapse: collapse; }
.handoff-table th, .handoff-table td { padding: .75rem .5rem; border-bottom: 1px solid rgba(33,25,79,.28); text-align: left; vertical-align: top; }
.handoff-table th { font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.handoff-table td { font-size: .86rem; }

.ledger-section { background: var(--violet-900); color: #fff; }
.ledger-section h1, .ledger-section h2, .ledger-section h3 { color: #fff; }
.ledger-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.ledger-intro p { max-width: 52ch; color: rgba(255,255,255,.68); }
.ledger-status { justify-self: end; max-width: 19rem; padding: 1rem; border: 1px solid rgba(211,233,60,.45); color: var(--lime); font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.ledger-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.ledger-item { min-height: 165px; padding: 1.3rem; background: var(--violet-900); }
.ledger-item:nth-child(3n) { background: var(--blue); }
.ledger-item:nth-child(4n) { background: var(--violet-800); }
.ledger-item .ledger-label { display: inline-block; margin-bottom: 2.7rem; color: var(--lime); font-family: var(--mono); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ledger-item:nth-child(3n) .ledger-label { color: var(--peach); }
.ledger-item h2 { margin: 0 0 .45rem; font-size: 1.4rem; }
.ledger-item p { max-width: 43ch; margin: 0; color: rgba(255,255,255,.72); font-size: .85rem; }
.feedback-section { background: var(--paper-warm); }
.feedback-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; }
.feedback-layout h2 { max-width: 9ch; }
.feedback-layout p { max-width: 54ch; color: var(--muted); }
.feedback-steps { display: grid; gap: .7rem; }
.feedback-step { display: flex; gap: 1rem; align-items: center; padding: 1rem; border-radius: var(--radius-sm); background: var(--paper); }
.feedback-step b { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; color: var(--violet-950); background: var(--coral); font-family: var(--mono); font-size: .65rem; }
.feedback-step span { font-size: .87rem; }

.contact-hero { background: var(--coral); }
.contact-hero .display-xl { max-width: 9ch; }
.contact-hero .lede { color: rgba(33,25,79,.72); }
.contact-section { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.contact-aside { position: sticky; top: calc(var(--header-height) + 28px); }
.contact-aside h2 { max-width: 8ch; }
.contact-aside p { max-width: 34ch; color: var(--muted); }
.contact-details { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.contact-detail { padding: .95rem 0; border-bottom: 1px solid var(--line); }
.contact-detail span { display: block; margin-bottom: .25rem; color: var(--blue); font-family: var(--mono); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail strong { display: block; font-size: .93rem; overflow-wrap: anywhere; }
.request-form { padding: clamp(1.2rem, 3vw, 2rem); border-radius: var(--radius-lg); background: var(--violet-900); color: #fff; box-shadow: var(--shadow); }
.form-intro { display: flex; justify-content: space-between; gap: 1rem; align-items: start; margin-bottom: 1.4rem; }
.form-intro h2 { margin: 0; color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.form-intro p { max-width: 20ch; margin: 0; color: rgba(255,255,255,.62); font-size: .78rem; text-align: right; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: rgba(255,255,255,.72); font-family: var(--mono); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .76rem .78rem; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; color: #fff; background: rgba(255,255,255,.09); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  height: 62px;
  min-height: 62px;
  max-height: 62px;
  box-sizing: border-box;
  color: #fff;
  background-color: rgba(255,255,255,.09);
  color-scheme: light;
  line-height: 1.2;
}
.field select option {
  height: auto;
  min-height: 0;
  padding: 8px 12px;
  color: #29234f;
  background: #fff;
  line-height: 1.35;
}
.field select option:checked {
  color: #29234f;
  background: #d3e93c;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.42); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(211,233,60,.15); }
.field--trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; }
.form-footer small { max-width: 28rem; color: rgba(255,255,255,.55); font-size: .73rem; }
.form-footer .btn { border: 0; }
.form-message { display: none; margin: 1rem 0 0; padding: .85rem 1rem; border-radius: 10px; font-size: .85rem; }
.form-message.is-visible { display: block; }
.form-message.is-success { color: var(--violet-950); background: var(--lime); }
.form-message.is-error { color: #fff; background: #a53f58; }
.request-form.is-busy .btn { opacity: .72; pointer-events: none; }
.request-form.is-busy .btn::after { content: " …"; }

.legal-hero { padding: 60px 0 42px; background: var(--violet-950); color: #fff; }
.legal-hero h1 { color: #fff; max-width: 12ch; font-size: clamp(2.6rem, 6vw, 5.7rem); }
.legal-date { margin: 0; color: rgba(255,255,255,.64); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-section { background: var(--paper); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 4rem; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 26px); display: grid; gap: .42rem; }
.legal-nav a { color: var(--muted); font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.legal-nav a:hover { color: var(--coral); }
.legal-copy h2 { margin: 2rem 0 .7rem; font-size: clamp(1.4rem, 2.6vw, 2.2rem); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 1.4rem 0 .55rem; font-size: 1.1rem; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: .92rem; }
.legal-copy ul { padding-left: 1.2rem; }
.legal-copy li + li { margin-top: .45rem; }
.legal-callout { margin: 1.5rem 0; padding: 1.1rem 1.2rem; border-left: 4px solid var(--coral); background: var(--paper-warm); }
.legal-callout p { margin: 0; }

.site-footer { padding: 3.5rem 0 1.5rem; color: #fff; background: var(--violet-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; margin: 0; color: rgba(255,255,255,.66); font-size: .86rem; }
.footer-title { margin: 0 0 .9rem; color: var(--lime); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: .4rem; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.7); font-size: .83rem; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.52); font-family: var(--mono); font-size: .63rem; letter-spacing: .04em; }

@keyframes float-node { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -9px, 0); } }

@media (max-width: 1080px) {
  .site-nav { gap: 0; }
  .site-nav a { padding-inline: .52rem; font-size: .7rem; }
  .header-action { padding-inline: .78rem; font-size: .68rem; }
  .hero-inner { grid-template-columns: .85fr 1.15fr; gap: 3rem; }
  .field-map { min-height: 420px; }
  .lens-intro, .contact-aside { position: static; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .header-inner { width: min(100% - 28px, 680px); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: grid;
    align-content: start;
    gap: .35rem;
    padding: 1.2rem 1rem 2rem;
    background: var(--violet-950);
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { min-height: 54px; padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.13); border-radius: 0; font-size: .85rem; }
  .site-nav a:hover, .site-nav a[aria-current="page"] { transform: none; }
  .header-action { display: none; }
  .container, .hero-inner { width: min(100% - 32px, 680px); }
  .hero-inner, .page-hero-grid, .pulse-row, .lens-layout, .boundary-layout, .studio-layout, .scope-grid, .route-layout, .handoff-layout, .ledger-intro, .feedback-layout, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .hero-inner { gap: 2rem; padding-top: 58px; }
  .hero-field { min-height: auto; }
  .hero-copy .display-xl { max-width: 10ch; }
  .field-map { min-height: 390px; }
  .page-hero-meta { justify-content: flex-start; }
  .pulse-row { gap: 1.6rem; }
  .lens-intro h2, .boundary-layout h2, .studio-copy h2, .scope-grid h2, .route-intro h2, .feedback-layout h2 { max-width: 13ch; }
  .boundary-stamp { width: min(100%, 280px); min-height: 280px; margin: 0 auto; }
  .studio-board { min-height: 340px; }
  .route-aside { margin-top: .5rem; }
  .ledger-status { justify-self: start; }
  .contact-aside { margin-bottom: 1rem; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.4rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .brand-mark { width: 146px; height: auto; }
  .display-xl { font-size: clamp(3.05rem, 16vw, 5.4rem); }
  .display-lg { font-size: clamp(2.55rem, 13vw, 4.4rem); }
  .display-md { font-size: clamp(1.85rem, 10vw, 3rem); }
  .section { padding: 58px 0; }
  .section-heading { display: block; margin-bottom: 1.8rem; }
  .section-heading .lede { margin-top: 1rem; }
  .field-map { min-height: 340px; border-radius: 24px; }
  .map-node { width: 58px; height: 58px; border-radius: 14px; font-size: .57rem; }
  .pulse-sequence { grid-template-columns: repeat(2, 1fr); }
  .pulse-step:nth-child(2) { border-right: 0; }
  .pulse-step:nth-child(-n+2) { border-bottom: 1px solid rgba(33,25,79,.35); }
  .pulse-step { min-height: 120px; }
  .principle { grid-template-columns: 45px 1fr; gap: .7rem; padding: .95rem; }
  .principle p { grid-column: 2; }
  .studio-facts, .fit-factors, .ledger-items { grid-template-columns: 1fr; }
  .service-row summary { grid-template-columns: 36px minmax(0, 1fr) 24px; gap: .55rem; }
  .service-price { grid-column: 2; grid-row: 2; text-align: left; }
  .service-chevron { grid-column: 3; grid-row: 1 / span 2; }
  .service-detail { grid-template-columns: 36px 1fr; gap: .55rem; }
  .service-detail p, .service-detail .service-tag { grid-column: 2; }
  .service-detail .btn { grid-column: 2; grid-row: auto; width: fit-content; }
  .service-note { grid-template-columns: 1fr; gap: .8rem; margin-top: 2.2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-intro, .form-footer, .closing-band-inner, .footer-bottom { display: block; }
  .form-intro p { margin-top: .6rem; text-align: left; }
  .form-footer small { display: block; margin-bottom: .8rem; }
  .form-footer .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom > * + * { margin-top: .6rem; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-copy p, .legal-copy li { font-size: .87rem; }
}

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