@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --navy-950: #06111d;
  --navy-900: #081522;
  --navy-850: #0b1a2a;
  --navy-800: #102238;
  --navy-700: #18344f;
  --ink: #0a1927;
  --ink-soft: #435567;
  --paper: #edf3f4;
  --paper-2: #e4ecee;
  --surface: #f7faf9;
  --line: #c8d4d8;
  --line-strong: #91a5ad;
  --turquoise: #35d3c3;
  --turquoise-dark: #08736d;
  --turquoise-soft: #d8f5f1;
  --amber: #f3bb62;
  --amber-soft: #f9ead0;
  --white: #f7fbfb;
  --danger: #9b2c2c;
  --success: #155e55;
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --radius-sm: 0.35rem;
  --radius-md: 0.7rem;
  --radius-lg: 1.1rem;
  --shadow: 0 1.5rem 4rem rgba(6, 17, 29, 0.12);
  --shadow-dark: 0 2rem 5rem rgba(2, 9, 17, 0.38);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --tshadow: 0 1px 2px rgba(4, 10, 18, 0.95), 0 4px 18px rgba(4, 10, 18, 0.78), 0 14px 46px rgba(4, 10, 18, 0.72);
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--navy-950);
  color-scheme: light;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

::selection {
  background: var(--turquoise);
  color: var(--navy-950);
}

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

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

button,
summary,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.25vw, 4.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

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

:focus-visible {
  outline: 0.18rem solid var(--amber);
  outline-offset: 0.22rem;
  box-shadow: 0 0 0 0.28rem rgba(6, 17, 29, 0.84);
}

[hidden] {
  display: none !important;
}

.skip {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

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

.environment {
  position: fixed;
  z-index: 0;
  inset: -8%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 51, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 51, 77, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  transform: scale(1.04);
}

body.paused *,
body.paused *::before,
body.paused *::after {
  animation-play-state: paused !important;
}

body.js-enabled .environment {
  animation: ambient-grid 96s linear infinite -31s;
}

body.js-enabled.page-entered .nav {
  animation: nav-arrival 720ms var(--ease-out) both;
}

body.js-enabled.page-entered .nav .brand {
  animation: brand-arrival 760ms 90ms var(--ease-out) both;
}

body.js-enabled.page-entered .nav-links > li {
  animation: nav-item-arrival 560ms var(--ease-out) both;
}

body.js-enabled.page-entered .nav-links > li:nth-child(1) { animation-delay: 120ms; }
body.js-enabled.page-entered .nav-links > li:nth-child(2) { animation-delay: 165ms; }
body.js-enabled.page-entered .nav-links > li:nth-child(3) { animation-delay: 210ms; }
body.js-enabled.page-entered .nav-links > li:nth-child(4) { animation-delay: 255ms; }
body.js-enabled.page-entered .nav-links > li:nth-child(5) { animation-delay: 300ms; }
body.js-enabled.page-entered .nav-links > li:nth-child(6) { animation-delay: 345ms; }

body.js-enabled.page-entered .brand svg {
  animation: mark-arrival 920ms 80ms var(--ease-out) both;
}

@keyframes ambient-grid {
  0% { transform: translate3d(-1.2%, -0.8%, 0) scale(1.04); }
  50% { transform: translate3d(1.2%, 0.8%, 0) scale(1.055); }
  100% { transform: translate3d(-1.2%, -0.8%, 0) scale(1.04); }
}

@keyframes nav-arrival {
  from { opacity: 0; transform: translate3d(0, -1rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes brand-arrival {
  from { opacity: 0; transform: translate3d(-0.7rem, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes nav-item-arrival {
  from { opacity: 0; transform: translate3d(0, -0.55rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes mark-arrival {
  0% { opacity: 0; transform: scale(0.72) rotate(-8deg); }
  58% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(163, 188, 199, 0.17);
  background: rgba(6, 17, 29, 0.91);
  color: var(--white);
  backdrop-filter: blur(16px) saturate(120%);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.68rem;
  align-items: center;
  color: inherit;
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 450;
  letter-spacing: -0.05em;
}

.brand svg {
  width: 2rem;
  height: 2rem;
}

.brand b {
  color: var(--turquoise);
  font-weight: 700;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
  align-items: center;
  list-style: none;
}

.nav-links > li > a:not(.btn) {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0.7rem;
  align-items: center;
  border-radius: var(--radius-sm);
  color: #c7d5da;
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links > li > a:not(.btn):hover,
.nav-links > li > a[aria-current="location"] {
  background: rgba(53, 211, 195, 0.09);
  color: var(--white);
}

.nav-toggle {
  display: none;
  min-height: 2.75rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(199, 213, 218, 0.35);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
}

.nav-toggle-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.78rem 1.15rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-shadow: none;
  transition: transform 200ms var(--ease-out), background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  background: rgba(247, 251, 251, 0.18);
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

.btn:hover {
  transform: translateY(-0.12rem);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: scaleX(1);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  border-color: var(--turquoise);
  background: var(--turquoise);
  color: var(--navy-950);
}

.btn-primary:hover {
  border-color: #58e3d5;
  background: #58e3d5;
}

.btn-ghost {
  border-color: rgba(226, 239, 241, 0.48);
  background: rgba(7, 20, 33, 0.32);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--amber);
  background: rgba(243, 187, 98, 0.08);
}

.btn-nav {
  min-height: 2.75rem;
  margin-left: 0.5rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.86rem;
}

.kicker,
.hero-index,
.ledger-no,
.id,
.tag,
.no,
.form-index,
.seg-code,
.diagram-label {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 1.25rem;
  color: var(--turquoise-dark);
}

.hero {
  position: relative;
  z-index: 1;
  background: var(--navy-950);
  color: var(--white);
}

.stage {
  display: none;
}

.hero-static {
  display: block;
  min-height: 44rem;
  padding-top: 4.65rem;
  background:
    radial-gradient(circle at 76% 28%, rgba(53, 211, 195, 0.13), transparent 32rem),
    var(--navy-950);
}

.hs-wrap {
  position: relative;
  display: grid;
  width: min(calc(100% - 3rem), 82rem);
  min-height: calc(100svh - 4.65rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 9vw, 7.5rem) 4.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.hs-copy {
  position: relative;
  z-index: 2;
}

body.js-enabled.page-entered .hs-copy > * {
  animation: copy-arrival 760ms var(--ease-out) both;
}

body.js-enabled.page-entered .hs-copy > :nth-child(1) { animation-delay: 130ms; }
body.js-enabled.page-entered .hs-copy > :nth-child(2) { animation-delay: 230ms; }
body.js-enabled.page-entered .hs-copy > :nth-child(3) { animation-delay: 340ms; }
body.js-enabled.page-entered .hs-copy > :nth-child(4) { animation-delay: 450ms; }

body.js-enabled.page-entered .hs-visual {
  animation: visual-arrival 1100ms 260ms var(--ease-out) both;
}

body.js-enabled.page-entered .hs-foot {
  animation: copy-arrival 650ms 620ms var(--ease-out) both;
}

@keyframes copy-arrival {
  from { opacity: 0; transform: translate3d(0, 1.2rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes visual-arrival {
  from { opacity: 0; transform: translate3d(1.5rem, 0, 0) scale(0.975); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.hs-copy .kicker,
.band .kicker {
  color: var(--turquoise);
}

.hs-copy h1 {
  margin-bottom: 1.7rem;
}

.hs-copy .sub {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #c7d5da;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hs-visual {
  position: relative;
  align-self: stretch;
  min-height: 32rem;
  border-left: 1px solid rgba(142, 176, 188, 0.24);
  background: linear-gradient(90deg, rgba(53, 211, 195, 0.03), transparent 70%);
}

.hs-art {
  width: min(100%, 32rem);
  height: 100%;
  margin-inline: auto;
  overflow: visible;
}

.blueprint {
  fill: none;
  stroke: rgba(188, 211, 219, 0.42);
  stroke-width: 2;
}

.windows rect {
  fill: var(--amber);
  opacity: 0.7;
}

.windows rect:nth-child(3n + 2) {
  opacity: 0.35;
}

.network {
  fill: none;
  stroke: var(--turquoise);
  stroke-width: 2;
  opacity: 0.6;
}

.nodes circle,
.signal-dot {
  fill: var(--turquoise);
}

.signal {
  fill: none;
  stroke: var(--turquoise);
  stroke-width: 4;
  stroke-linecap: round;
}

body.js-enabled.page-entered .blueprint,
body.js-enabled.page-entered .network,
body.js-enabled.page-entered .signal {
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
  animation: blueprint-draw 1800ms 360ms var(--ease-out) forwards;
}

body.js-enabled.page-entered .network { animation-delay: 620ms; }
body.js-enabled.page-entered .signal { animation-delay: 860ms; }

body.js-enabled.page-entered .windows rect,
body.js-enabled.page-entered .nodes circle,
body.js-enabled.page-entered .signal-dot {
  animation: node-arrival 620ms var(--ease-out) both;
  transform-box: fill-box;
  transform-origin: center;
}

body.js-enabled.page-entered .windows rect:nth-child(3n + 1) { animation-delay: 620ms; }
body.js-enabled.page-entered .windows rect:nth-child(3n + 2) { animation-delay: 760ms; }
body.js-enabled.page-entered .windows rect:nth-child(3n) { animation-delay: 900ms; }
body.js-enabled.page-entered .nodes circle,
body.js-enabled.page-entered .signal-dot { animation-delay: 980ms; }

@keyframes blueprint-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes node-arrival {
  from { transform: scale(0.35); }
  to { transform: scale(1); }
}

.diagram-label {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  color: #8fa8b2;
  writing-mode: vertical-rl;
}

.hs-foot {
  position: absolute;
  right: 0;
  bottom: 1.15rem;
  left: 0;
  margin: 0;
  color: #8299a3;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html.canvas-ready .hero {
  height: 480vh;
}

html.canvas-ready .stage {
  position: sticky;
  z-index: 1;
  top: 0;
  display: block;
  height: 100vh;
  min-height: 38rem;
  overflow: hidden;
  background: var(--navy-950);
}

html.canvas-ready .hero-static {
  display: none;
}

html.canvas-ready .band:first-child {
  visibility: visible;
  opacity: 1;
}

#scene,
.hero-grid,
.scrim,
.bands,
.band {
  position: absolute;
  inset: 0;
}

#scene {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateZ(0);
}

.hero-grid {
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 174, 188, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 174, 188, 0.065) 1px, transparent 1px);
  background-size: clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.scrim {
  pointer-events: none;
  background: radial-gradient(ellipse 110% 90% at 50% 46%, rgba(3, 10, 18, 0) 22%, rgba(3, 10, 18, 0.7) 100%);
}

.bands {
  z-index: 3;
  pointer-events: none;
}

.band {
  display: flex;
  padding: 6rem max(2.5rem, calc((100vw - 82rem) / 2));
  align-items: center;
  opacity: 0;
  text-shadow: var(--tshadow);
}

.band::before {
  position: absolute;
  inset: 8% 36% 8% -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(4, 12, 21, 0.7), rgba(4, 12, 21, 0) 72%);
  content: "";
  pointer-events: none;
}

.band-right {
  justify-content: flex-end;
}

.band-right::before {
  inset: 8% -8% 8% 36%;
}

.band-center {
  justify-content: center;
  text-align: center;
}

.band-center::before {
  inset: 5% 18%;
}

.band-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  will-change: transform, opacity;
}

.band-inner > * {
  --item-delay: 0;
  --item-k: clamp(0, calc((var(--band-k, 1) - var(--item-delay)) * 1.55), 1);
  opacity: var(--item-k);
  transform: translate3d(0, calc((1 - var(--item-k)) * 0.8rem), 0);
}

.band-inner > :nth-child(2) { --item-delay: 0.07; }
.band-inner > :nth-child(3) { --item-delay: 0.14; }
.band-inner > :nth-child(4) { --item-delay: 0.21; }

html.canvas-ready #scene {
  animation: canvas-arrival 980ms var(--ease-out) both;
}

html.canvas-ready .hero-grid {
  animation: grid-arrival 1200ms 120ms var(--ease-out) both;
}

html.canvas-ready .hero-rail,
html.canvas-ready .cue {
  animation: fade-arrival 700ms 540ms var(--ease-out) both;
}

@keyframes canvas-arrival {
  from { opacity: 0; transform: translate3d(0, 1rem, 0) scale(1.015); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes grid-arrival {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fade-arrival {
  from { opacity: 0; }
  to { opacity: 1; }
}

.band a {
  pointer-events: auto;
}

.band-right .band-inner {
  text-align: right;
}

.band-center .band-inner {
  display: grid;
  justify-items: center;
}

.band h1,
.band h2 {
  margin-bottom: 1.55rem;
  color: var(--white);
}

.band-right h2,
.band-center h2 {
  margin-left: auto;
}

.band .sub {
  max-width: 38rem;
  margin-bottom: 0;
  color: #d2dfe2;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.band-right .sub {
  margin-left: auto;
}

.band-center .sub {
  margin-bottom: 1.85rem;
}

.chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(104, 226, 214, 0.24);
  border-radius: 99rem;
  background: rgba(6, 17, 29, 0.58);
  backdrop-filter: blur(10px);
}

.hero-index {
  margin-bottom: 1.25rem;
  color: var(--amber);
}

.hero-rail {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 1.35rem;
  display: grid;
  gap: 0.65rem;
  transform: translateY(-50%);
}

.hero-rail span {
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid rgba(213, 230, 233, 0.55);
  border-radius: 50%;
  background: transparent;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.hero-rail span.is-active {
  border-color: var(--turquoise);
  background: var(--turquoise);
  transform: scale(1.55);
}

.cue {
  position: absolute;
  z-index: 4;
  bottom: 1.2rem;
  left: 50%;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: #a9bec5;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 200ms ease;
}

.cue svg {
  width: 1rem;
  animation: cue 1.8s var(--ease-in-out) infinite -0.7s;
}

@keyframes cue {
  0%, 100% { transform: translateY(-0.15rem); }
  50% { transform: translateY(0.2rem); }
}

main {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

.signal-spine {
  position: absolute;
  z-index: 1;
  top: 10rem;
  bottom: 10rem;
  left: max(1.1rem, calc((100vw - 90rem) / 2));
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(13, 130, 123, 0.36) 5%, rgba(13, 130, 123, 0.2) 95%, transparent);
  pointer-events: none;
}

.signal-spine span {
  position: sticky;
  top: 50vh;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--turquoise-dark);
  box-shadow: 0 0 0 0.35rem rgba(53, 211, 195, 0.15);
  transform: translateX(-50%);
}

.trust {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: 1.1rem max(1.5rem, calc((100vw - 82rem) / 2));
  border-top: 1px solid rgba(159, 184, 194, 0.18);
  background: var(--navy-900);
  color: #c3d4d9;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.trust li {
  position: relative;
  padding: 0.5rem 1.25rem 0.5rem 1.6rem;
  font-size: 0.79rem;
  font-weight: 650;
}

.trust li::before {
  position: absolute;
  top: 1.06rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--turquoise);
  content: "";
}

.trust li + li {
  border-left: 1px solid rgba(159, 184, 194, 0.18);
}

.sec {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), 80rem);
  margin-inline: auto;
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
}

.sec[id],
.card-form[id] {
  scroll-margin-top: 5.5rem;
}

.sec[data-node]::before {
  position: absolute;
  top: 9.8rem;
  left: calc(-1 * max(0.5rem, (100vw - 80rem) / 2));
  display: none;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--turquoise-dark);
  content: "";
}

.sec-head {
  max-width: 58rem;
  margin-bottom: clamp(2.8rem, 6vw, 5.2rem);
}

.sec-head h2 {
  color: var(--ink);
}

.lede {
  max-width: 43rem;
  margin-top: 1.65rem;
  margin-bottom: 0;
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.split-head {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.split-head .lede {
  margin-top: 0;
  padding-left: 1.5rem;
  border-left: 0.2rem solid var(--turquoise-dark);
}

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

.ledger-row {
  display: grid;
  min-height: 12rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 5rem minmax(12rem, 0.7fr) minmax(20rem, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.ledger-no {
  color: var(--turquoise-dark);
}

.ledger-row h3 {
  color: var(--ink);
}

.ledger-row p {
  max-width: 46rem;
  margin-bottom: 0;
}

.sec-services {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  background: var(--navy-900);
  color: var(--white);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.sec-services .sec-head h2,
.sec-services .svc h3 {
  color: var(--white);
}

.sec-services .kicker {
  color: var(--turquoise);
}

.sec-services .lede,
.svc p {
  color: #b9cbd1;
}

.service-map {
  position: relative;
  display: grid;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid rgba(145, 173, 184, 0.23);
  border-radius: 50%;
  place-items: center;
}

.service-map::before,
.service-map::after {
  position: absolute;
  border: 1px solid rgba(53, 211, 195, 0.18);
  border-radius: 50%;
  content: "";
}

.service-map::before { inset: 19%; }
.service-map::after { inset: 36%; }

.service-map span {
  position: absolute;
  display: grid;
  min-width: 4.75rem;
  min-height: 2.3rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(158, 184, 194, 0.34);
  border-radius: 99rem;
  background: var(--navy-900);
  color: #d4e0e3;
  font-family: var(--mono);
  font-size: 0.65rem;
  place-items: center;
}

.service-map .map-core {
  position: relative;
  z-index: 2;
  border-color: var(--turquoise);
  background: var(--turquoise);
  color: var(--navy-950);
  font-weight: 800;
}

.service-map .map-core::after {
  position: absolute;
  inset: -0.55rem;
  border: 1px solid rgba(53, 211, 195, 0.48);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.sec-services.is-live .service-map .map-core::after {
  animation: network-breath 5.6s var(--ease-in-out) infinite -2.1s;
}

@keyframes network-breath {
  0%, 100% { opacity: 0.1; transform: scale(0.92); }
  50% { opacity: 0.72; transform: scale(1.12); }
}

.service-map span:nth-child(2) { top: 2%; left: 50%; transform: translateX(-50%); }
.service-map span:nth-child(3) { top: 28%; right: -2%; }
.service-map span:nth-child(4) { right: 8%; bottom: 10%; }
.service-map span:nth-child(5) { bottom: 4%; left: 18%; }
.service-map span:nth-child(6) { top: 31%; left: -4%; }

.svc-list {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(145, 173, 184, 0.34);
}

.svc {
  position: relative;
  display: grid;
  min-height: 10.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(145, 173, 184, 0.24);
  grid-template-columns: 4rem minmax(14rem, 0.8fr) minmax(21rem, 1.35fr) auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  transition: background-color 240ms ease;
}

.svc::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.svc:hover {
  background: rgba(53, 211, 195, 0.025);
}

.svc:hover::before,
.svc:focus-within::before {
  transform: scaleX(1);
}

.svc .id {
  transition: transform 220ms var(--ease-out), color 220ms ease;
}

.svc:hover .id {
  color: var(--amber);
  transform: translateX(0.3rem);
}

.svc .id {
  color: var(--turquoise);
}

.svc p {
  max-width: 43rem;
  margin: 0;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(145, 173, 184, 0.34);
  border-radius: 99rem;
  color: #a9bec5;
  white-space: nowrap;
}

.segment-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 0.55fr 1fr;
  column-gap: 2rem;
}

.segment-heading .kicker {
  grid-column: 1;
}

.segment-heading h2 {
  grid-column: 1;
}

.segment-heading .lede {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

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

.seg {
  position: relative;
  display: flex;
  min-height: 24rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(247, 250, 249, 0.7);
  flex-direction: column;
  justify-content: space-between;
  transition: transform 240ms var(--ease-out), border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.seg:first-child {
  min-height: 21rem;
  grid-column: 1 / -1;
}

.seg::after {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(13, 130, 123, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 360ms var(--ease-out);
}

.seg::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.22rem;
  background: var(--turquoise-dark);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms var(--ease-out);
}

.seg:hover {
  z-index: 1;
  border-color: var(--turquoise-dark);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-0.25rem);
}

.seg:hover::after {
  transform: scale(1.22);
}

.seg:hover::before,
.seg:focus-visible::before {
  transform: scaleY(1);
}

.seg-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.range {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.range small {
  display: block;
  margin-top: 0.45rem;
  color: var(--turquoise-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seg-code {
  color: var(--line-strong);
  font-size: 1rem;
}

.seg p {
  max-width: 42rem;
  margin: auto 0 2.5rem;
  font-size: 1.04rem;
}

.go {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--ink);
  font-weight: 780;
}

.go svg {
  width: 1rem;
  transition: transform 200ms var(--ease-out);
}

.seg:hover .go svg {
  transform: translateX(0.3rem);
}

.sec-calculator {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  background: var(--paper-2);
}

.calc-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.calc-heading {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

.calc {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-dark);
  color: var(--white);
}

.calc-controls {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.control-head {
  display: flex;
  margin-bottom: 1.1rem;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.calc label {
  display: block;
  color: #d5e1e4;
  font-size: 0.9rem;
  font-weight: 700;
}

.calc .val {
  color: var(--turquoise);
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 620;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  height: 1.4rem;
  margin: 0;
  accent-color: var(--turquoise);
  cursor: pointer;
}

.scale {
  display: flex;
  margin-bottom: 2.2rem;
  justify-content: space-between;
  color: #8ea4ad;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.calc select {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.55rem;
  padding: 0.7rem 2.75rem 0.7rem 0.85rem;
  border: 1px solid rgba(172, 196, 205, 0.42);
  border-radius: var(--radius-sm);
  background: var(--navy-800);
  color: var(--white);
}

.calc-note {
  margin: 1.5rem 0 0;
  color: #94aab3;
  font-size: 0.79rem;
  line-height: 1.55;
}

.calc-out {
  border-top: 1px solid rgba(172, 196, 205, 0.25);
  background: var(--navy-950);
}

.calc-out .row {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
}

.calc-out .lbl {
  color: #9fb3ba;
  font-size: 0.82rem;
}

.calc-out output {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
  text-align: right;
}

.calc-out .alt output {
  color: var(--turquoise);
}

.calc-out.is-updating output {
  animation: value-update 500ms var(--ease-out) both;
}

@keyframes value-update {
  0% { opacity: 0.45; transform: translate3d(0, 0.35rem, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.formula {
  display: grid;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  color: var(--amber);
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.formula span {
  height: 1px;
  background: rgba(243, 187, 98, 0.26);
}

.process-head {
  max-width: 64rem;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
  counter-reset: none;
}

.step {
  position: relative;
  display: grid;
  min-height: 12rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(9rem, 0.36fr) minmax(0, 1fr);
  gap: 2rem;
}

.step::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--turquoise-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}

.step:hover::after {
  transform: scaleX(1);
}

.step .no {
  color: var(--turquoise-dark);
}

.step > div {
  display: grid;
  grid-template-columns: minmax(13rem, 0.55fr) minmax(20rem, 1fr);
  gap: 2rem;
}

.step p {
  max-width: 46rem;
  margin: 0;
}

.compliance {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 3rem), 80rem);
  margin: 0 auto clamp(3rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 0.35rem solid var(--amber);
  background: var(--amber-soft);
  grid-template-columns: minmax(17rem, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.compliance .kicker {
  color: #7d5518;
}

.compliance h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.compliance > p {
  margin: 0;
  color: #574a36;
}

.sec-faq {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.faq details[open] {
  background: rgba(53, 211, 195, 0.045);
}

.faq summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.35;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  width: 1rem;
  height: 1px;
  background: var(--turquoise-dark);
  content: "";
  transition: transform 200ms var(--ease-out);
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq .a {
  max-width: 48rem;
  margin: -0.25rem 0 1.75rem;
  padding-right: 2rem;
}

.faq details[open] .a {
  animation: faq-answer 320ms var(--ease-out) both;
}

@keyframes faq-answer {
  from { opacity: 0; transform: translate3d(0, -0.45rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.finale {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  background: var(--navy-900);
  color: var(--white);
}

.finale-head {
  display: grid;
  max-width: none;
  grid-template-columns: 0.7fr 1.3fr;
  column-gap: 3rem;
}

.finale .kicker {
  color: var(--turquoise);
}

.finale h2,
.finale h3 {
  color: var(--white);
}

.finale-head .kicker,
.finale-head h2 {
  grid-column: 1;
}

.finale-head .lede {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: #b9cbd1;
}

.convert {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: start;
}

.card-form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(157, 184, 194, 0.28);
  border-radius: var(--radius-md);
  background: var(--navy-850);
  transition: border-color 240ms ease, transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.card-form.hot {
  border-color: rgba(53, 211, 195, 0.45);
  background: var(--navy-800);
}

.card-form:focus-within {
  border-color: rgba(53, 211, 195, 0.72);
  box-shadow: 0 1.5rem 4rem rgba(2, 9, 17, 0.22);
  transform: translateY(-0.12rem);
}

.form-index {
  margin-bottom: 2.5rem;
  color: var(--turquoise);
}

.card-form h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.hint {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: #a9bec5;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.f-field {
  min-width: 0;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.f-field label,
.f-field legend {
  display: block;
  margin-bottom: 0.42rem;
  color: #dce6e8;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.f-field:focus-within > label,
.f-field:focus-within > legend {
  color: var(--turquoise);
  transform: translateX(0.18rem);
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(164, 191, 200, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(4, 13, 22, 0.44);
  color: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.f-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: #78919b;
  opacity: 1;
}

.f-field input:hover,
.f-field select:hover,
.f-field textarea:hover {
  border-color: rgba(203, 221, 226, 0.64);
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--turquoise);
  background: rgba(4, 13, 22, 0.72);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.checks label {
  display: inline-flex;
  min-height: 2.6rem;
  margin: 0;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(164, 191, 200, 0.35);
  border-radius: 99rem;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  color: #c7d6da;
  font-size: 0.76rem;
  font-weight: 600;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

.checks label:hover,
.checks label:has(input:checked) {
  border-color: rgba(53, 211, 195, 0.72);
  background: rgba(53, 211, 195, 0.08);
  transform: translateY(-0.08rem);
}

.checks input {
  width: 1rem;
  min-height: auto;
  height: 1rem;
  margin: 0;
  padding: 0;
  accent-color: var(--turquoise);
}

.card-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.privacy-note {
  margin: 0.8rem 0 0;
  color: #829aa4;
  font-size: 0.72rem;
  text-align: center;
}

.privacy-note a,
.form-err a {
  color: var(--turquoise);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form-ok,
.form-err {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

.form-ok {
  border: 1px solid rgba(53, 211, 195, 0.5);
  background: rgba(53, 211, 195, 0.09);
  color: #c8f6ef;
}

.form-err {
  border: 1px solid rgba(255, 164, 164, 0.5);
  background: rgba(155, 44, 44, 0.13);
  color: #ffd9d9;
}

footer {
  position: relative;
  z-index: 2;
  padding: 4rem max(1.5rem, calc((100vw - 80rem) / 2)) 1.5rem;
  border-top: 1px solid rgba(157, 184, 194, 0.19);
  background: var(--navy-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-bottom: 3.5rem;
  grid-template-columns: 0.6fr 0.8fr 1.6fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.footer-main > p {
  margin: 0;
  color: #8fa6af;
  font-size: 0.86rem;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
}

.cols a {
  color: #bdcdd2;
  font-size: 0.82rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.cols a:hover {
  color: var(--white);
  text-decoration-color: var(--turquoise);
}

.fine {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(157, 184, 194, 0.15);
  color: #718b96;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

/* Segment and utility pages */
.page-main {
  padding-top: 4.65rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 9rem) max(1.5rem, calc((100vw - 80rem) / 2));
  background: var(--navy-950);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(53, 211, 195, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(53, 211, 195, 0.025), 0 0 0 10rem rgba(53, 211, 195, 0.018);
  content: "";
}

.page-hero.is-live::before {
  animation: page-orbit 12s var(--ease-in-out) infinite -4.5s;
}

body.js-enabled.page-entered .page-hero .breadcrumbs,
body.js-enabled.page-entered .page-hero-grid > div:first-child > *,
body.js-enabled.page-entered .page-hero .legal > * {
  animation: copy-arrival 760ms var(--ease-out) both;
}

body.js-enabled.page-entered .page-hero .breadcrumbs { animation-delay: 90ms; }
body.js-enabled.page-entered .page-hero-grid > div:first-child > :nth-child(1),
body.js-enabled.page-entered .page-hero .legal > :nth-child(1) { animation-delay: 170ms; }
body.js-enabled.page-entered .page-hero-grid > div:first-child > :nth-child(2),
body.js-enabled.page-entered .page-hero .legal > :nth-child(2) { animation-delay: 270ms; }
body.js-enabled.page-entered .page-hero-grid > div:first-child > :nth-child(3),
body.js-enabled.page-entered .page-hero .legal > :nth-child(3) { animation-delay: 380ms; }
body.js-enabled.page-entered .page-hero-grid > div:first-child > :nth-child(4) { animation-delay: 490ms; }

body.js-enabled.page-entered .segment-mark {
  animation: segment-mark-arrival 980ms 330ms var(--ease-out) both;
}

@keyframes page-orbit {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes segment-mark-arrival {
  from { opacity: 0; transform: translate3d(1.4rem, 0, 0) scale(0.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.page-hero .kicker {
  color: var(--turquoise);
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 3rem;
  gap: 0.5rem;
  color: #8fa6af;
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

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

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.8rem;
  color: var(--white);
}

.page-hero .lede {
  color: #b9cbd1;
}

.segment-mark {
  display: grid;
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid rgba(154, 183, 193, 0.35);
  background: rgba(10, 26, 42, 0.65);
  align-content: space-between;
}

.segment-mark strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.segment-mark span {
  color: var(--turquoise);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.page-section {
  position: relative;
  width: min(calc(100% - 3rem), 80rem);
  margin-inline: auto;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.page-section.alt {
  width: 100%;
  padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  background: var(--paper-2);
}

.priority-grid {
  display: grid;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, 1fr);
}

.priority {
  min-height: 19rem;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms var(--ease-out);
}

.priority:hover {
  background: rgba(53, 211, 195, 0.05);
  transform: translateY(-0.18rem);
}

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

.priority .id {
  display: block;
  margin-bottom: 4rem;
  color: var(--turquoise-dark);
}

.priority h3 {
  margin-bottom: 1rem;
}

.priority p {
  margin-bottom: 0;
}

.decision-table {
  border-top: 1px solid var(--line-strong);
}

.decision-row {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(12rem, 0.72fr) minmax(20rem, 1.28fr);
  gap: 2rem;
  transition: background-color 220ms ease, padding 220ms var(--ease-out);
}

.decision-row:hover {
  padding-inline: 0.75rem;
  background: rgba(53, 211, 195, 0.045);
}

.decision-row h3 {
  font-size: 1.12rem;
}

.decision-row p {
  margin-bottom: 0;
}

.segment-cta {
  display: grid;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--navy-900);
  color: var(--white);
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.segment-cta:hover {
  box-shadow: var(--shadow-dark);
  transform: translateY(-0.18rem);
}

.segment-cta h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.segment-cta p {
  max-width: 42rem;
  margin-bottom: 0;
  color: #a9bec5;
}

.legal {
  max-width: 56rem;
}

.legal h1 {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
}

.legal h2 {
  max-width: none;
  margin: 3rem 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal ul {
  color: var(--ink-soft);
}

.confirm-box {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 0.3rem solid var(--amber);
  background: var(--amber-soft);
  color: #55462f;
}

.thank-you {
  display: grid;
  min-height: calc(100svh - 4.65rem);
  padding: 6rem 1.5rem;
  background: var(--navy-950);
  color: var(--white);
  place-items: center;
}

.thank-you-card {
  width: min(100%, 44rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgba(151, 183, 194, 0.35);
  background: var(--navy-850);
}

body.js-enabled.page-entered .thank-you-card {
  animation: thank-you-arrival 880ms var(--ease-out) both;
}

body.js-enabled.page-entered .thank-you-card > * {
  animation: copy-arrival 680ms var(--ease-out) both;
}

body.js-enabled.page-entered .thank-you-card > :nth-child(1) { animation-delay: 180ms; }
body.js-enabled.page-entered .thank-you-card > :nth-child(2) { animation-delay: 250ms; }
body.js-enabled.page-entered .thank-you-card > :nth-child(3) { animation-delay: 330ms; }
body.js-enabled.page-entered .thank-you-card > :nth-child(4) { animation-delay: 410ms; }
body.js-enabled.page-entered .thank-you-card > :nth-child(5) { animation-delay: 490ms; }

@keyframes thank-you-arrival {
  from { opacity: 0; transform: translate3d(0, 1.4rem, 0) scale(0.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.thank-you-card h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.thank-you-card p {
  color: #b9cbd1;
}

@media (min-width: 91rem) {
  .sec[data-node]::before { display: block; }
}

@media (max-width: 72rem) {
  .trust { grid-template-columns: 1fr 1fr; }
  .trust li:nth-child(3) { border-left: 0; }
  .trust li:nth-child(n + 3) { border-top: 1px solid rgba(159, 184, 194, 0.18); }
  .svc { grid-template-columns: 3rem minmax(13rem, 0.7fr) minmax(18rem, 1.3fr); }
  .svc .tag { grid-column: 2 / -1; }
  .footer-main { grid-template-columns: 0.6fr 1fr; }
  .footer-main .cols { grid-column: 1 / -1; }
}

@media (max-width: 62rem) {
  .nav-shell { flex-wrap: wrap; }
  .nav-links { width: 100%; padding-bottom: 1rem; flex-wrap: wrap; }
  body.js-enabled .nav-toggle { display: inline-flex; }
  body.js-enabled .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    margin: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(163, 188, 199, 0.2);
    background: rgba(6, 17, 29, 0.98);
    box-shadow: 0 1.5rem 3rem rgba(2, 8, 15, 0.3);
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 4.65rem);
    overflow-y: auto;
  }
  body.js-enabled .nav-links.is-open { display: flex; }
  body.js-enabled .nav-links.is-open > li {
    animation: mobile-menu-item 300ms var(--ease-out) both;
  }
  body.js-enabled .nav-links.is-open > li:nth-child(2) { animation-delay: 35ms; }
  body.js-enabled .nav-links.is-open > li:nth-child(3) { animation-delay: 70ms; }
  body.js-enabled .nav-links.is-open > li:nth-child(4) { animation-delay: 105ms; }
  body.js-enabled .nav-links.is-open > li:nth-child(5) { animation-delay: 140ms; }
  body.js-enabled .nav-links.is-open > li:nth-child(6) { animation-delay: 175ms; }
  body.js-enabled .nav-links > li > a { width: 100%; }
  .btn-nav { margin-left: 0; }
  .hs-wrap { grid-template-columns: 1fr 0.8fr; gap: 2rem; }
  .split-head,
  .services-intro,
  .calc-layout,
  .faq-layout,
  .compliance { grid-template-columns: 1fr; }
  .split-head .lede { margin-top: 0; }
  .service-map { margin: 0 auto; }
  .ledger-row { grid-template-columns: 3.5rem minmax(12rem, 0.55fr) minmax(16rem, 1.45fr); gap: 1.25rem; }
  .svc { grid-template-columns: 3rem minmax(12rem, 0.72fr) minmax(15rem, 1.28fr); gap: 1.25rem; }
  .calc-heading,
  .faq-head { position: static; }
  .compliance { gap: 1.5rem; }
  .convert { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr 0.55fr; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority { min-height: 0; }
  .priority + .priority { border-left: 0; }
}

@keyframes mobile-menu-item {
  from { opacity: 0; transform: translate3d(0.7rem, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 48rem) {
  body { font-size: 0.97rem; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.7rem); }
  .nav-shell { width: min(calc(100% - 2rem), 86rem); }
  .hero-static { min-height: 0; }
  .hs-wrap {
    width: min(calc(100% - 2rem), 82rem);
    min-height: auto;
    padding-block: 7.25rem 4rem;
    grid-template-columns: 1fr;
  }
  .hs-visual { min-height: 24rem; border-top: 1px solid rgba(142, 176, 188, 0.24); border-left: 0; }
  .hs-foot { position: static; grid-column: 1; }
  .trust { grid-template-columns: 1fr; padding-inline: 1rem; }
  .trust li + li,
  .trust li:nth-child(3) { border-top: 1px solid rgba(159, 184, 194, 0.18); border-left: 0; }
  .sec { width: min(calc(100% - 2rem), 80rem); padding-block: 5rem; }
  .sec-services,
  .sec-calculator,
  .finale { width: 100%; padding-inline: 1rem; }
  .signal-spine { display: none; }
  .split-head,
  .segment-heading,
  .finale-head { display: block; }
  .split-head .lede { padding-left: 1rem; }
  .segment-heading .lede,
  .finale-head .lede { margin-top: 1.5rem; }
  .ledger-row,
  .svc,
  .step,
  .step > div,
  .decision-row { grid-template-columns: 1fr; }
  .ledger-row { gap: 0.7rem; }
  .ledger-row h3 { margin-bottom: 0.7rem; }
  .svc { gap: 0.75rem; }
  .svc .tag { grid-column: 1; margin-top: 0.5rem; }
  .service-map { width: min(88vw, 22rem); }
  .segs { grid-template-columns: 1fr; }
  .seg:first-child { grid-column: auto; }
  .seg { min-height: 22rem; }
  .calc-out .row { grid-template-columns: 1fr; gap: 0.7rem; }
  .calc-out output { text-align: left; }
  .step { gap: 0.7rem; }
  .compliance { width: min(calc(100% - 2rem), 80rem); }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main .cols { grid-column: auto; }
  .cols { grid-template-columns: 1fr; }
  .page-hero { padding-top: 4rem; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .segment-mark { min-height: 12rem; }
  .page-section { width: min(calc(100% - 2rem), 80rem); padding-block: 5rem; }
  .segment-cta { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 25rem) {
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .hs-visual { min-height: 19rem; }
  .service-map span { min-width: 4rem; font-size: 0.58rem; }
  .service-map span:nth-child(3) { right: 0; }
  .service-map span:nth-child(6) { left: 0; }
  .seg,
  .card-form { padding: 1.25rem; }
  .range { font-size: 2.7rem; }
  .checks { display: grid; }
  .checks label { width: 100%; }
}

@media (max-height: 35rem) {
  .cue,
  .hero-rail { display: none; }
}

@media (max-width: 720px) {
  html.canvas-ready .hero { height: auto; }
  html.canvas-ready .stage { display: none; }
  html.canvas-ready .hero-static { display: block; }
}

@media (orientation: portrait) and (max-width: 1024px) {
  html.canvas-ready .hero { height: auto; }
  html.canvas-ready .stage { display: none; }
  html.canvas-ready .hero-static { display: block; }
}

@media (orientation: portrait) and (pointer: coarse) {
  html.canvas-ready .hero { height: auto; }
  html.canvas-ready .stage { display: none; }
  html.canvas-ready .hero-static { display: block; }
}

@media (orientation: landscape) and (pointer: coarse) and (max-height: 560px) {
  html.canvas-ready .hero { height: auto; }
  html.canvas-ready .stage { display: none; }
  html.canvas-ready .hero-static { display: block; }
}

@media (pointer: coarse) {
  .btn,
  .nav-links > li > a:not(.btn),
  .nav-toggle,
  .faq summary,
  .checks label {
    min-height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.canvas-ready .hero { height: auto; }
  html.canvas-ready .stage { display: none; }
  html.canvas-ready .hero-static { display: block; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }
}

@media print {
  .nav,
  .environment,
  .signal-spine,
  .cue,
  .hero-rail { display: none !important; }
  .page-main { padding-top: 0; }
  .hero-static { min-height: auto; padding-top: 0; background: var(--white); color: var(--ink); }
  .hs-copy h1 { color: var(--ink); }
  .hs-copy .sub { color: var(--ink-soft); }
  .hs-visual { display: none; }
  main,
  .sec-services,
  .sec-calculator,
  .finale,
  footer { background: var(--white); color: var(--ink); }
}
