:root {
  color-scheme: dark;
  --ink: #071015;
  --ink-soft: #0c181e;
  --paper: #eef5f3;
  --paper-bright: #ffffff;
  --muted: #8fa3a5;
  --line: rgba(238, 245, 243, 0.14);
  --line-dark: rgba(7, 16, 21, 0.22);
  --current: #69c6b5;
  --current-dark: #2b776d;
  --signal: #d9a45e;
  --danger: #df786f;
  --max-width: 1240px;
  --side: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --mono: "IBM Plex Mono", Consolas, monospace;
  --sans: "Manrope", "Inter", Arial, sans-serif;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 83% 9%, rgba(105, 198, 181, 0.1), transparent 28rem),
    linear-gradient(rgba(105, 198, 181, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 198, 181, 0.06) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 48px 48px, 48px 48px, auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.5;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0, transparent 16%, transparent 84%, var(--ink) 100%);
}

::selection {
  color: var(--ink);
  background: var(--current);
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--current);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--current);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.section-pad {
  padding-right: var(--side);
  padding-left: var(--side);
}

.prelaunch {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 38px;
  padding: 0.55rem var(--side);
  place-items: center;
  color: var(--ink);
  background: var(--current);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.prelaunch p {
  margin: 0;
}

.prelaunch__pulse {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 rgba(7, 16, 21, 0.4);
  animation: pulse 2s infinite;
}

.prelaunch a {
  margin-left: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 var(--side);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 21, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  width: fit-content;
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: transform 300ms var(--ease);
}

.brand span {
  transition: color 200ms ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.08);
}

.brand:hover span {
  color: var(--current);
}

.site-nav {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3rem);
  color: rgba(238, 245, 243, 0.72);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer__links a {
  position: relative;
}

.site-nav a::after,
.site-footer__links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--current);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover::after,
.site-footer__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

.button [aria-hidden="true"],
.text-link [aria-hidden="true"] {
  display: inline-block;
  transition: transform 220ms var(--ease);
}

.button:hover [aria-hidden="true"],
.text-link:hover [aria-hidden="true"] {
  transform: translate(3px, -3px);
}

.button--nav {
  justify-self: end;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
}

.button--nav:hover,
.button--light:hover {
  background: var(--current);
}

.button--primary {
  color: var(--ink);
  background: var(--current);
}

.button--primary:hover {
  color: var(--paper);
  background: var(--current-dark);
}

.button--outline {
  border-color: var(--line-dark);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button--light {
  min-width: 15rem;
  color: var(--ink);
  background: var(--paper-bright);
}

.eyebrow {
  margin: 0;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - 122px);
  padding: clamp(3rem, 7vw, 7rem) var(--side) 2rem;
  isolation: isolate;
  overflow: hidden;
}

.hero__gridlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(42px, 5vw, 84px) clamp(42px, 5vw, 84px);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__heading-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__heading-wrap > .eyebrow {
  margin: 0 0 1.5rem 0.5vw;
}

.hero__title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(4rem, 11vw, 10.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero__line {
  display: block;
}

.hero__line--two {
  color: var(--current);
}

.hero__lower {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(28rem, 1.35fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  width: min(100%, var(--max-width));
  margin: clamp(3.25rem, 7vw, 7.5rem) auto 0;
}

.hero__intro {
  padding-bottom: clamp(1rem, 3vw, 3rem);
}

.hero__lede {
  max-width: 34rem;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.hero__aside {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.text-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  border-color: var(--current);
  color: var(--current);
}

.plan-stage {
  position: relative;
  min-height: clamp(24rem, 40vw, 38rem);
  border: 1px solid var(--line);
  background: rgba(238, 245, 243, 0.025);
}

.plan-stage::before,
.plan-stage::after {
  position: absolute;
  content: "";
  background: var(--line);
}

.plan-stage::before {
  top: 0;
  bottom: 0;
  left: 3.5rem;
  width: 1px;
}

.plan-stage::after {
  right: 0;
  bottom: 3.25rem;
  left: 0;
  height: 1px;
}

.plan-stage__label {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  left: 4.75rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.13em;
}

.plan-stage__label strong {
  color: var(--paper);
  font-weight: 500;
}

.plan-stage__sheet {
  position: absolute;
  top: 4rem;
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: 5.25rem;
  left: clamp(5rem, 7vw, 7.5rem);
  padding: 1.1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.22);
  transform: rotate(-1.2deg);
  transition: transform 700ms var(--ease);
  overflow: hidden;
}

.plan-stage:hover .plan-stage__sheet {
  transform: rotate(0deg) translateY(-4px);
}

.plan-stage__drawing {
  width: 100%;
  height: 100%;
}

.plan-grid {
  fill: none;
  stroke: rgba(7, 16, 21, 0.08);
  stroke-width: 1;
}

.plan-walls-outline {
  fill: rgba(7, 16, 21, 0.045);
  stroke: var(--ink);
  stroke-width: 4.5;
  stroke-linejoin: round;
}

.plan-walls-interior {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-symbols {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-grid-ref circle {
  fill: var(--paper);
  stroke: rgba(7, 16, 21, 0.55);
  stroke-width: 1.4;
}

.plan-grid-ref .grid-ref-tick {
  fill: none;
  stroke: rgba(7, 16, 21, 0.3);
  stroke-width: 1;
  stroke-dasharray: 2 2;
}

.plan-grid-ref text {
  fill: rgba(7, 16, 21, 0.65);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
}

.plan-title .title-rule {
  stroke: rgba(7, 16, 21, 0.3);
  stroke-width: 1;
}

.plan-title-text {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.plan-subtitle {
  fill: rgba(7, 16, 21, 0.5);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
}

.scale-bar path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
}

.scale-bar text {
  fill: rgba(7, 16, 21, 0.6);
  font-family: var(--mono);
  font-size: 6.5px;
  text-anchor: middle;
}

.north-arrow circle {
  fill: var(--paper);
  stroke: rgba(7, 16, 21, 0.4);
  stroke-width: 1.2;
}

.north-arrow path {
  fill: var(--ink);
  stroke: none;
}

.north-arrow text {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 700;
  text-anchor: middle;
}

.plan-legend-panel .legend-frame {
  fill: rgba(7, 16, 21, 0.02);
  stroke: rgba(7, 16, 21, 0.3);
  stroke-width: 1;
}

.plan-legend-panel .legend-heading {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan-legend-panel .legend-rule {
  stroke: rgba(7, 16, 21, 0.3);
  stroke-width: 1;
}

.plan-legend-panel circle:not(.legend-down):not(.legend-current-dot),
.plan-legend-panel rect {
  fill: none;
  stroke: rgba(7, 16, 21, 0.55);
  stroke-width: 1.4;
}

.plan-legend-panel .legend-mark {
  fill: none;
  stroke: rgba(7, 16, 21, 0.55);
  stroke-width: 1.2;
}

.plan-legend-panel .legend-down,
.plan-legend-panel .legend-current-dot {
  fill: var(--current-dark);
  stroke: none;
}

.plan-legend-panel .legend-current {
  fill: none;
  stroke: var(--current-dark);
  stroke-width: 2;
}

.plan-legend-panel text {
  fill: rgba(7, 16, 21, 0.62);
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.plan-legend-panel .legend-note {
  fill: rgba(7, 16, 21, 0.45);
  font-size: 6.2px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
}

.js .plan-symbols > * {
  opacity: 0;
}

.plan-stage.is-visible .plan-symbols > * {
  animation: symbol-in 460ms var(--ease) forwards;
}

.plan-symbols > *:nth-child(1) { animation-delay: 0ms; }
.plan-symbols > *:nth-child(2) { animation-delay: 40ms; }
.plan-symbols > *:nth-child(3) { animation-delay: 80ms; }
.plan-symbols > *:nth-child(4) { animation-delay: 120ms; }
.plan-symbols > *:nth-child(5) { animation-delay: 160ms; }
.plan-symbols > *:nth-child(6) { animation-delay: 200ms; }
.plan-symbols > *:nth-child(7) { animation-delay: 240ms; }
.plan-symbols > *:nth-child(8) { animation-delay: 280ms; }
.plan-symbols > *:nth-child(9) { animation-delay: 320ms; }
.plan-symbols > *:nth-child(10) { animation-delay: 360ms; }
.plan-symbols > *:nth-child(11) { animation-delay: 400ms; }
.plan-symbols > *:nth-child(12) { animation-delay: 440ms; }
.plan-symbols > *:nth-child(13) { animation-delay: 480ms; }
.plan-symbols > *:nth-child(14) { animation-delay: 520ms; }
.plan-symbols > *:nth-child(15) { animation-delay: 560ms; }
.plan-symbols > *:nth-child(16) { animation-delay: 600ms; }
.plan-symbols > *:nth-child(17) { animation-delay: 640ms; }
.plan-symbols > *:nth-child(18) { animation-delay: 680ms; }
.plan-symbols > *:nth-child(19) { animation-delay: 720ms; }

.plan-symbols .sym-down {
  fill: var(--ink);
  stroke: none;
}

.plan-symbols .sym-fan path {
  stroke-width: 1.3;
}

.plan-dim {
  stroke: rgba(7, 16, 21, 0.38);
  stroke-width: 1;
}

.plan-dim path {
  fill: none;
}

.plan-dim text {
  fill: rgba(7, 16, 21, 0.5);
  stroke: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-anchor: middle;
}

.plan-labels text {
  fill: rgba(7, 16, 21, 0.4);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.plan-current {
  fill: var(--current-dark);
  stroke: var(--current-dark);
  stroke-width: 4;
}

.plan-current .trace {
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  cursor: help;
  transition: stroke-width 200ms ease, filter 200ms ease;
}

.plan-current .trace:hover {
  stroke-width: 6;
  filter: drop-shadow(0 0 6px rgba(105, 198, 181, 0.55));
}

.plan-stage.is-visible .plan-current .trace {
  animation: draw-trace 1.6s var(--ease) forwards;
  animation-delay: 850ms;
}

.plan-stage.is-visible .plan-current .trace--two {
  animation-delay: 1100ms;
}

.plan-stage.is-visible .plan-current .trace--three {
  animation-delay: 1350ms;
}

.plan-stage.is-visible .plan-current .trace--four {
  animation-delay: 1600ms;
}

.plan-stage.is-visible .plan-current .trace--five {
  animation-delay: 1800ms;
}

.plan-current circle {
  opacity: 0;
  transition: opacity 260ms ease;
}

.plan-stage.is-visible .plan-current circle {
  opacity: 1;
  transition-delay: 2350ms;
}

.plan-doors path {
  fill: none;
  stroke: rgba(7, 16, 21, 0.4);
  stroke-width: 1;
  stroke-dasharray: 3 2;
}

.plan-symbols .hit {
  fill: transparent;
  stroke: none;
  pointer-events: all;
  cursor: help;
}

.plan-symbols g {
  transition: filter 200ms ease;
}

.plan-symbols g:hover {
  filter: drop-shadow(0 0 7px rgba(105, 198, 181, 0.6));
}

.plan-symbols g:hover circle:not(.hit),
.plan-symbols g:hover rect:not(.hit),
.plan-symbols g:hover path {
  stroke: var(--current-dark);
}

.plan-symbols .sym-down {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 200ms var(--ease), fill 200ms ease;
  cursor: help;
}

.plan-symbols .sym-down:hover {
  fill: var(--current-dark);
  transform: scale(1.7);
}

.plan-stage__stamp {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  padding: 0.45rem 0.7rem;
  border: 2px solid rgba(43, 119, 109, 0.55);
  color: rgba(43, 119, 109, 0.7);
  font-family: var(--mono);
  font-size: clamp(0.45rem, 0.7vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-5deg);
}

.plan-stage__scan {
  position: absolute;
  z-index: 3;
  top: 4.4rem;
  right: clamp(1.4rem, 4.4vw, 4.9rem);
  left: clamp(5.4rem, 7.4vw, 7.9rem);
  height: 2px;
  background: var(--current);
  box-shadow: 0 0 18px 4px rgba(105, 198, 181, 0.38);
  animation: scan 4.4s ease-in-out infinite;
}

.plan-stage__status {
  position: absolute;
  bottom: 1.05rem;
  left: 4.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-stage__status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--current);
  box-shadow: 0 0 0 5px rgba(105, 198, 181, 0.1);
  animation: pulse 2.2s ease-out infinite;
}

.plan-stage__status-text {
  font-style: normal;
}

.plan-stage__reads {
  position: absolute;
  bottom: 1.05rem;
  right: 1.1rem;
  z-index: 3;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(105, 198, 181, 0.4);
  background: rgba(10, 20, 26, 0.85);
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.js .plan-stage__reads {
  opacity: 0;
}

.plan-stage__reads strong {
  margin-right: 0.15rem;
  font-size: 0.78rem;
}

.plan-stage__reads.is-settled {
  animation: reads-settle 520ms var(--ease) forwards;
}

.plan-stage__corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-color: var(--current);
}

.plan-stage__corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.plan-stage__corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.statement {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(7rem, 13vw, 13rem);
  padding-bottom: clamp(7rem, 10vw, 11rem);
  color: var(--ink);
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.statement::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  z-index: -1;
  width: 1px;
  content: "";
  background: var(--line-dark);
  box-shadow: 28vw 0 var(--line-dark), 58vw 0 var(--line-dark);
}

.statement__meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.statement__title {
  max-width: 13ch;
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  font-family: var(--sans);
  font-size: clamp(4.2rem, 10.8vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.statement__title span {
  display: block;
  margin-left: clamp(0rem, 12vw, 12rem);
  color: var(--current-dark);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.statement__copy {
  display: grid;
  grid-template-columns: minmax(16rem, 34rem) auto;
  gap: 2rem;
  align-items: end;
  justify-content: end;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.statement__copy > p:first-child {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.3rem, 2.4vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.microcopy {
  margin: 0 0 0.25rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process {
  position: relative;
  background: var(--ink);
}

.process__intro {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 3rem;
  align-items: end;
  min-height: 78svh;
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
  border-bottom: 1px solid var(--line);
}

.display-title {
  margin: 1.5rem 0 0;
  font-family: var(--sans);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.display-title span {
  color: var(--current);
}

.process__intro-copy {
  max-width: 28rem;
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(13rem, 21vw) 1fr;
}

.process__rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100svh;
  padding: 3rem clamp(1.25rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  background: var(--ink);
}

.process__rail-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
}

.process__rail ol {
  display: grid;
  gap: 1.1rem;
  margin: auto 0;
  padding: 0;
  list-style: none;
}

.process__rail li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(238, 245, 243, 0.3);
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: default;
  transition: color 300ms ease, transform 300ms var(--ease);
}

.process__rail li span {
  font-size: 0.56rem;
  font-weight: 500;
}

.process__rail li.is-active {
  color: var(--current);
  transform: translateX(0.5rem);
}

.process__meter {
  position: absolute;
  top: 3rem;
  right: -1px;
  bottom: 3rem;
  width: 2px;
  background: var(--line);
}

.process__meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--current);
  transform: scaleY(0.333);
  transform-origin: top;
  transition: transform 700ms var(--ease);
}

.process__rail-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.process__beats {
  min-width: 0;
}

.beat {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(28rem, 1.3fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  min-height: 110svh;
  padding: clamp(5rem, 9vw, 9rem) var(--side);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.beat__number {
  margin: 0 0 2.2rem;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.beat__copy h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.beat__copy h3 em {
  color: var(--current);
  font-style: normal;
}

.beat__copy > p:last-child {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}

.beat__visual {
  min-width: 0;
}

.upload-visual {
  position: relative;
  display: grid;
  min-height: clamp(32rem, 52vw, 50rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #131713;
  background-size: 48px 48px;
  place-items: center;
}

.upload-visual::before {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(105, 198, 181, 0.28);
  content: "";
}

.upload-visual__target {
  position: relative;
  z-index: 1;
  width: min(70%, 30rem);
}

.file-card {
  position: relative;
  padding: 1.1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 1.5rem 1.5rem 0 rgba(105, 198, 181, 0.12);
  transform: rotate(-2.5deg);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.upload-visual:hover .file-card {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 2rem 2rem 0 rgba(105, 198, 181, 0.2);
}

.file-card__top,
.file-card__name {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.11em;
}

.file-card__top {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-dark);
}

.file-card svg {
  width: 100%;
  margin: 0.8rem 0;
}

.mini-walls,
.mini-symbols {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
}

.mini-symbols {
  fill: var(--current-dark);
  stroke: none;
}

.file-card__name {
  align-items: end;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-dark);
}

.file-card__name strong {
  color: var(--current-dark);
}

.upload-visual__arrow {
  margin: 1rem 0 0;
  color: var(--current);
  font-family: var(--mono);
  font-size: 2rem;
  text-align: center;
}

.upload-visual__target > p {
  margin: 0.25rem 0 0;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-align: center;
}

.upload-visual__cross {
  position: absolute;
  width: 1rem;
  height: 1rem;
}

.upload-visual__cross::before,
.upload-visual__cross::after {
  position: absolute;
  background: var(--current);
  content: "";
}

.upload-visual__cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.upload-visual__cross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.upload-visual__cross--a { top: -4rem; left: -4rem; }
.upload-visual__cross--b { top: -4rem; right: -4rem; }
.upload-visual__cross--c { right: -4rem; bottom: -4rem; }
.upload-visual__cross--d { bottom: -4rem; left: -4rem; }

.beat--crosscheck {
  background: var(--paper);
}

.beat--crosscheck .beat__copy h3,
.beat--crosscheck .crosscheck-visual {
  color: var(--ink);
}

.beat--crosscheck .beat__copy > p:last-child {
  color: rgba(7, 16, 21, 0.64);
}

.beat--crosscheck .beat__copy h3 em,
.beat--crosscheck .beat__number {
  color: var(--current-dark);
}

.crosscheck-visual {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
  background: rgba(250, 248, 239, 0.7);
  box-shadow: 1.25rem 1.25rem 0 rgba(7, 16, 21, 0.06);
}

.crosscheck-visual__head,
.order-visual__columns {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.read-lanes {
  display: grid;
  gap: 0.75rem;
  padding: 2rem 0;
}

.read-lane {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.35fr 0.55fr;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-dark);
  background: var(--paper-bright);
  font-family: var(--mono);
  transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease;
}

.read-lane:hover {
  transform: translateX(6px);
  border-color: var(--current-dark);
  box-shadow: -6px 0 0 var(--current-dark);
}

.read-lane__id {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.read-lane strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.read-lane__count {
  font-size: 1.45rem;
  font-weight: 600;
}

.read-lane__state {
  justify-self: end;
  padding: 0.4rem 0.5rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.read-lane__state--agree {
  color: var(--current-dark);
  background: rgba(105, 198, 181, 0.16);
}

.crosscheck-visual__junction {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 70%;
  height: 4rem;
  margin: -1rem auto 0;
}

.crosscheck-visual__junction span {
  border-bottom: 1px solid var(--current-dark);
  border-left: 1px solid var(--current-dark);
}

.crosscheck-visual__junction span:last-of-type {
  border-right: 1px solid var(--current-dark);
}

.crosscheck-visual__junction i {
  position: absolute;
  bottom: -0.3rem;
  left: calc(50% - 0.3rem);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--current-dark);
  box-shadow: 0 0 0 7px rgba(105, 198, 181, 0.15);
}

.crosscheck-visual__result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--mono);
}

.result-light {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--current);
  box-shadow: 0 0 0 6px rgba(105, 198, 181, 0.15);
}

.crosscheck-visual__result div {
  display: grid;
}

.crosscheck-visual__result small {
  color: var(--muted);
  font-size: 0.47rem;
  letter-spacing: 0.13em;
}

.crosscheck-visual__result strong {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.result-tag {
  padding: 0.4rem 0.55rem;
  color: var(--ink);
  background: var(--current);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.review-example {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-dark);
}

.review-example__icon {
  display: grid;
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  place-items: center;
}

.review-example p {
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.45;
}

.review-example p span {
  color: var(--signal);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.order-visual {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: 1.25rem 1.25rem 0 rgba(105, 198, 181, 0.09);
}

.order-visual__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-bottom: 2rem;
}

.order-visual__head div {
  display: grid;
}

.order-visual__head small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.51rem;
  letter-spacing: 0.14em;
}

.order-visual__head strong {
  margin-top: 0.45rem;
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.03em;
}

.order-visual__head > span {
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: var(--current);
  font-family: var(--mono);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.order-visual__columns {
  display: grid;
  grid-template-columns: 1fr 0.25fr 0.35fr;
  color: var(--muted);
  border-color: var(--line);
}

.order-visual__columns span:nth-child(n+2) {
  text-align: right;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr 0.25fr 0.35fr;
  gap: 1rem;
  align-items: center;
  min-height: clamp(4.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.order-row:hover {
  background: rgba(105, 198, 181, 0.06);
}

.order-row--flag:hover {
  background: rgba(217, 164, 94, 0.1);
}

.order-row__detail {
  grid-column: 1 / -1;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: max-height 320ms var(--ease), opacity 260ms ease, margin-top 320ms var(--ease);
}

.order-row:hover .order-row__detail {
  max-height: 2.4rem;
  margin-top: 0.5rem;
  opacity: 1;
}

.order-row--flag .order-row__detail {
  color: var(--signal);
}

.order-row > span {
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
}

.order-row strong {
  justify-self: end;
  font-family: var(--mono);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
}

.order-row em {
  justify-self: end;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.order-row .order-row__ok {
  color: var(--current);
}

.order-row--flag {
  margin: 0 -0.7rem;
  padding: 0 0.7rem;
  border-bottom-color: var(--signal);
  background: rgba(217, 164, 94, 0.07);
}

.order-visual__foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.25rem;
}

.order-visual__foot p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-visual__foot p span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--current);
}

.order-visual__foot button {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.result {
  min-height: 100svh;
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
  color: var(--ink);
  background: var(--current);
}

.result__topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(7, 16, 21, 0.32);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.result__title {
  max-width: 20ch;
  margin: clamp(3rem, 6vw, 6rem) 0;
  font-family: var(--sans);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.result__split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.result__lead {
  max-width: 35rem;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.result__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(7, 16, 21, 0.35);
  list-style: none;
}

.result__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(7, 16, 21, 0.35);
}

.result__list > li > span {
  padding-top: 0.25rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.result__list strong {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  letter-spacing: -0.02em;
}

.result__list p {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
}

.pricing {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
  background: var(--ink);
}

.pricing__intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}

.pricing__note {
  max-width: 28rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(238, 245, 243, 0.025);
}

.pricing__note-dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--current);
  box-shadow: 0 0 0 6px rgba(105, 198, 181, 0.1);
}

.pricing__note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing__note a {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--current);
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: var(--ink);
  transition: background 300ms ease, transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.price-card::before,
.price-card::after {
  position: absolute;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border-color: var(--current);
  opacity: 0;
  content: "";
  transition: opacity 250ms ease;
}

.price-card::before {
  top: 0.6rem;
  left: 0.6rem;
  border-top: 2px solid;
  border-left: 2px solid;
}

.price-card::after {
  right: 0.6rem;
  bottom: 0.6rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.price-card:hover {
  background: var(--ink-soft);
  transform: translateY(-8px);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35), inset 0 4px var(--current);
}

.price-card:hover::before,
.price-card:hover::after {
  opacity: 1;
}

.price-card--featured {
  background: #0a141a;
  box-shadow: inset 0 4px var(--current);
}

.price-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.4rem 0.55rem;
  color: var(--ink);
  background: var(--current);
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-card__badge--outline {
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
}

.price-card__top > p {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.13em;
}

.price-card__top h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-card__top > span {
  display: block;
  min-height: 3.5em;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.price-card__price {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  margin: 2.3rem 0 1.2rem;
}

.price-card__price strong {
  font-family: var(--mono);
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.price-card__price span {
  color: var(--muted);
  font-size: 0.72rem;
}

.price-card__capacity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 4rem;
  margin-bottom: 1.7rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card__capacity span {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__capacity span + span {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.price-card ul {
  display: grid;
  gap: 0.78rem;
  margin: 0 0 2rem;
  padding: 0;
  color: rgba(238, 245, 243, 0.78);
  font-size: 0.76rem;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.2rem;
}

.price-card li::before {
  position: absolute;
  top: 0.33em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--current);
  border-radius: 50%;
  content: "";
}

.price-card .is-not-included {
  color: rgba(238, 245, 243, 0.32);
}

.price-card .is-not-included::before {
  top: 0.62em;
  width: 0.5rem;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: currentColor;
}

.button--plan {
  width: 100%;
  margin-top: auto;
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}

.price-card--featured .button--plan,
.button--plan:hover {
  border-color: var(--current);
  color: var(--ink);
  background: var(--current);
}

.pricing__disclaimer {
  max-width: 60rem;
  margin: 1.2rem 0 0;
  color: rgba(238, 245, 243, 0.45);
  font-size: 0.68rem;
  line-height: 1.55;
}

.setup-addon {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.4fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(5rem, 8vw, 8rem);
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background: linear-gradient(155deg, var(--paper) 60%, rgba(105, 198, 181, 0.14));
  border: 1px solid rgba(43, 119, 109, 0.35);
  box-shadow: 0 0 0 1px rgba(105, 198, 181, 0.08), 0 2rem 5rem rgba(7, 16, 21, 0.16);
  overflow: hidden;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}

.setup-addon:hover {
  transform: translateY(-4px);
  border-color: var(--current);
  box-shadow: 0 0 0 1px rgba(105, 198, 181, 0.22), 0 2.5rem 6rem rgba(7, 16, 21, 0.22);
}

.setup-addon__badge {
  position: absolute;
  top: clamp(1.2rem, 2vw, 2rem);
  right: clamp(1.2rem, 2vw, 2rem);
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--current-dark);
  border-radius: 999px;
  color: var(--current-dark);
  background: rgba(105, 198, 181, 0.14);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.setup-addon__price {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.setup-addon__price > span,
.setup-addon__note {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.setup-addon__price strong {
  font-family: var(--mono);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.setup-addon__price small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.setup-addon__body {
  position: relative;
  z-index: 2;
}

.setup-addon__body .eyebrow {
  color: var(--current-dark);
}

.setup-addon__body h3 {
  margin: 0.5rem 0 0.8rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.setup-addon__body > p:not(.eyebrow):not(.setup-addon__note) {
  max-width: 42rem;
  margin: 0 0 1.1rem;
  color: rgba(7, 16, 21, 0.7);
  font-size: 0.85rem;
  line-height: 1.65;
}

.setup-addon__benefits {
  display: grid;
  gap: 0.55rem;
  max-width: 30rem;
  margin: 0 0 0.6rem;
  padding: 0;
  color: rgba(7, 16, 21, 0.78);
  font-size: 0.8rem;
  list-style: none;
}

.setup-addon__benefits li {
  position: relative;
  padding-left: 1.2rem;
}

.setup-addon__benefits li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--current-dark);
  border-radius: 50%;
  background: rgba(105, 198, 181, 0.3);
  content: "";
}

.setup-addon__note {
  margin: 1rem 0 0;
  color: var(--signal);
}

.setup-addon .button {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.setup-addon svg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28rem;
  color: rgba(43, 119, 109, 0.32);
}

.setup-addon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.setup-addon.is-visible svg path {
  animation: draw-trace 2s 400ms var(--ease) forwards;
}

.setup-addon svg circle {
  fill: var(--paper);
  stroke: currentColor;
  stroke-width: 2;
}

.setup-addon__spark {
  fill: var(--current) !important;
  stroke: none !important;
  filter: drop-shadow(0 0 6px rgba(105, 198, 181, 0.85));
  opacity: 0;
  offset-path: path("M0 95H80V28H167V95H245V50H320");
  offset-rotate: 0deg;
}

.setup-addon.is-visible svg .setup-addon__spark {
  animation: addon-spark 3.6s 2.4s ease-in-out infinite;
}

@keyframes addon-spark {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 90svh;
  color: var(--ink);
  background: var(--current);
  place-items: center;
  overflow: hidden;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  max-width: 18ch;
  margin: 2.5rem 0 0;
  font-family: var(--sans);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.final-cta__bottom {
  display: flex;
  justify-content: flex-end;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.final-cta__bottom p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 130px;
  padding: 2rem var(--side);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink);
}

.brand--footer {
  color: var(--paper);
}

.site-footer > p {
  margin: 0;
  font-size: 0.7rem;
}

.site-footer__links {
  display: flex;
  justify-self: end;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modal[hidden],
[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 1rem;
  place-items: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 15, 0.84);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: calc(100svh - 2rem);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  color: var(--paper);
  background: rgba(8, 18, 23, 0.97);
  border: 1px solid var(--current-dark);
  box-shadow: 1rem 1rem 0 rgba(105, 198, 181, 0.14);
  overflow-y: auto;
}

.modal__dialog::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--current);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 1.5rem;
  cursor: pointer;
  place-items: center;
}

.modal__close:hover {
  color: var(--paper);
  background: var(--ink);
}

.modal__kicker {
  margin: 0 0 2rem;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.modal h2 {
  max-width: 11ch;
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.modal__plan-label {
  min-height: 1em;
  margin: 0 0 1.75rem;
  color: var(--current);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal h3 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 2rem;
}

.modal form {
  display: grid;
  gap: 0.65rem;
}

.modal form > label:not(.checkbox-row) {
  margin-top: 0.65rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modal input[type="email"],
.modal input[type="password"] {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
}

.modal input:focus {
  border-color: var(--current);
  outline: 1px solid var(--current);
}

.modal form .button {
  width: 100%;
  margin-top: 1rem;
}

#signed-in-notice,
.form-error {
  font-size: 0.76rem;
}

#signout-link {
  color: var(--current);
  text-decoration: underline;
}

.form-error {
  min-height: 1.2em;
  margin: 0.8rem 0 0;
  color: #df786f;
}

#checkout-container {
  min-height: 18rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: 0.78rem;
  line-height: 1.55;
}

.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--current);
}

.checkbox-row a {
  color: var(--current);
  text-decoration: underline;
}

#terms-done p {
  color: rgba(238, 245, 243, 0.68);
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 800ms var(--ease), transform 900ms var(--ease);
}

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

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

@keyframes symbol-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes reads-settle {
  0% { opacity: 0; transform: translateY(4px) scale(0.92); }
  60% { opacity: 1; transform: translateY(0) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scan {
  0%, 12% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  78% { opacity: 1; }
  88%, 100% { transform: translateY(clamp(15rem, 28vw, 27rem)); opacity: 0; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(7, 16, 21, 0.35); }
  70% { box-shadow: 0 0 0 7px rgba(7, 16, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(7, 16, 21, 0); }
}

@media (max-width: 1100px) {
  .hero__lower,
  .beat {
    gap: 3rem;
  }

  .process__rail {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .beat {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(24rem, 1.3fr);
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .price-card {
    padding: 1.6rem;
  }

  .setup-addon {
    grid-template-columns: 0.55fr 1.25fr;
  }

  .setup-addon .button {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__lower,
  .process__intro,
  .pricing__intro,
  .result__split {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(4rem, 16vw, 7.8rem);
    line-height: 0.78;
  }

  .hero__line--two {
    text-align: left;
  }

  .hero__lower {
    margin-top: 4rem;
  }

  .plan-stage {
    min-height: 30rem;
  }

  .statement__copy {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .statement__title span {
    margin-left: 0;
    white-space: normal;
  }

  .process__intro {
    min-height: auto;
  }

  .process__layout {
    display: block;
  }

  .process__rail {
    position: sticky;
    top: 0;
    z-index: 10;
    display: block;
    height: auto;
    padding: 1rem var(--side);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process__rail-label,
  .process__rail-note {
    display: none;
  }

  .process__rail ol {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0;
  }

  .process__rail li {
    gap: 0.4rem;
    font-size: 0.62rem;
  }

  .process__rail li.is-active {
    transform: none;
  }

  .process__meter {
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .process__meter span {
    transform: scaleX(0.333) !important;
    transform-origin: left;
  }

  .process__rail:has([data-process-link="2"].is-active) .process__meter span { transform: scaleX(0.666) !important; }
  .process__rail:has([data-process-link="3"].is-active) .process__meter span { transform: scaleX(1) !important; }

  .beat {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6rem var(--side);
  }

  .beat__copy {
    max-width: 38rem;
  }

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

  .price-card__top > span {
    min-height: 0;
  }

  .setup-addon {
    grid-template-columns: 1fr;
  }

  .setup-addon .button {
    grid-column: auto;
  }

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

  .site-footer > p {
    grid-row: 2;
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .prelaunch {
    font-size: 0.64rem;
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .brand img {
    width: 1.75rem;
    height: 1.75rem;
  }

  .button--nav {
    min-height: 38px;
    padding: 0.6rem 0.7rem;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__heading-wrap > .eyebrow {
    max-width: 18rem;
  }

  .hero__title {
    font-size: clamp(3.25rem, 16.5vw, 5.4rem);
    letter-spacing: -0.075em;
    line-height: 0.82;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .plan-stage {
    min-height: 23rem;
  }

  .plan-stage::before {
    left: 2rem;
  }

  .plan-stage__label {
    left: 2.75rem;
  }

  .plan-stage__sheet {
    top: 4rem;
    right: 1rem;
    bottom: 5rem;
    left: 3rem;
  }

  .plan-stage__scan {
    right: 1.4rem;
    left: 3.4rem;
  }

  .plan-stage__status {
    left: 2.75rem;
    max-width: 65%;
  }

  .plan-stage__status-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .plan-stage__reads {
    display: none;
  }

  .statement__title,
  .display-title,
  .result__title,
  .final-cta h2 {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .upload-visual {
    min-height: 30rem;
  }

  .upload-visual__target {
    width: 76%;
  }

  .upload-visual__cross--a { top: -2.5rem; left: -2.5rem; }
  .upload-visual__cross--b { top: -2.5rem; right: -2.5rem; }
  .upload-visual__cross--c { right: -2.5rem; bottom: -2.5rem; }
  .upload-visual__cross--d { bottom: -2.5rem; left: -2.5rem; }

  .crosscheck-visual,
  .order-visual {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    padding: 1rem;
  }

  .read-lane {
    grid-template-columns: 0.7fr 1.25fr 0.3fr;
    gap: 0.5rem;
    min-height: 4.5rem;
    padding: 0.65rem;
  }

  .read-lane__state {
    display: none;
  }

  .read-lane strong {
    font-size: 0.65rem;
  }

  .order-row,
  .order-visual__columns {
    grid-template-columns: 1fr 0.22fr 0.32fr;
    gap: 0.5rem;
  }

  .order-row {
    min-height: 4.7rem;
  }

  .order-visual__head {
    align-items: start;
    flex-direction: column;
  }

  .order-visual__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .order-visual__foot button {
    min-height: 2.75rem;
  }

  .result__topline span:last-child {
    display: none;
  }

  .pricing__intro {
    margin-bottom: 4rem;
  }

  .price-card {
    padding: 1.35rem;
  }

  .setup-addon {
    padding: 1.5rem;
  }

  .setup-addon .button {
    width: 100%;
    white-space: normal;
  }

  .final-cta__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button--light {
    width: 100%;
  }

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

  .site-footer__links {
    justify-self: start;
  }

  .site-footer > p {
    grid-row: auto;
    grid-column: auto;
  }
}

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

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__line,
  .plan-stage,
  .file-card,
  .upload-visual__arrow,
  .process__rail li,
  .price-card,
  .read-lane,
  .brand img,
  .button [aria-hidden="true"],
  .text-link [aria-hidden="true"],
  .plan-symbols .sym-down {
    transform: none !important;
  }

  .plan-current .trace,
  .setup-addon svg path {
    stroke-dashoffset: 0 !important;
  }

  .plan-stage__scan {
    display: none;
  }
}

/* =========================================================================
   SHARED SUBPAGE CHROME
   (waitlist / inquire / privacy / terms / thanks / waitlist-thanks /
   accept-invite — same design system as index.html: sharp-edged paper
   panels on the dark ink field, Space Grotesk display type, current-green
   / signal-orange accents.)
   ========================================================================= */

.button--nav-outline {
  justify-self: end;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}

/* header variant for pages with no in-page nav links (success / invite pages) */
.site-header--split {
  grid-template-columns: 1fr auto;
}

.button--nav-outline:hover {
  border-color: var(--current);
  color: var(--current);
  background: transparent;
}

.crumb-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  margin: clamp(3.5rem, 6vw, 5.5rem) auto 0;
}

.crumb-back--top {
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

/* ---- panel: the paper card used for forms / legal / success content ---- */
.panel {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  color: var(--paper);
  background: rgba(8, 18, 23, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0.9rem 0.9rem 0 rgba(105, 198, 181, 0.1);
}

.panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--current);
}

/* ---- form pages (waitlist / inquire) ---- */
.form-page {
  padding: clamp(6rem, 10vw, 9rem) var(--side) clamp(4rem, 8vw, 7rem);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.form-copy {
  max-width: 34rem;
  padding-top: 0.5rem;
}

.form-copy h1 {
  margin: 1.4rem 0 1.75rem;
  font-family: var(--sans);
  font-size: clamp(2.75rem, 5.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.form-copy__lead {
  max-width: 32rem;
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.form-copy__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0 0 2.25rem;
}

.form-copy__price strong {
  font-family: var(--mono);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--current);
  letter-spacing: -0.05em;
}

.form-copy__price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.form-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-list li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--current);
  border-radius: 50%;
  content: "";
}

.form-note {
  padding: 1.35rem 1.5rem;
  border-left: 2px solid var(--signal);
  background: rgba(217, 164, 94, 0.06);
}

.form-note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.form-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-card__kicker {
  margin: 0 0 0.6rem;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel h2 {
  max-width: 16ch;
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.form-card__intro {
  margin: 0 0 2rem;
  color: rgba(238, 245, 243, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 1.35rem;
}

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

.field label {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field label small {
  color: rgba(238, 245, 243, 0.5);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 6.5rem;
  line-height: 1.5;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--current);
  outline: none;
  box-shadow: 0 0 0 3px rgba(105, 198, 181, 0.16);
}

.field[hidden] {
  display: none;
}

.field-note {
  margin: 0;
  color: rgba(238, 245, 243, 0.55);
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-fieldset legend {
  margin-bottom: 0.7rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.4rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.contact-option:hover {
  border-color: var(--current);
}

.contact-option:has(input:checked) {
  border-color: var(--current);
  background: rgba(105, 198, 181, 0.1);
}

.contact-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--current);
}

.contact-option span {
  display: grid;
  gap: 0.15rem;
}

.contact-option strong {
  font-size: 0.85rem;
}

.contact-option small {
  color: rgba(238, 245, 243, 0.55);
  font-size: 0.72rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  justify-content: center;
}

.form-fine-print {
  margin: 0;
  color: rgba(238, 245, 243, 0.5);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

/* ---- custom-setup "what can be customised" grid (inquire.html) ---- */
.setup-grid-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.setup-grid-header {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.setup-grid-header h2 {
  margin: 1rem 0 0.9rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.setup-grid-header p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.setup-grid-item {
  min-height: 13rem;
  padding: 1.6rem;
  background: var(--ink);
}

.setup-grid-item span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--current);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.setup-grid-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
}

.setup-grid-item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ---- legal pages ---- */
.legal-page {
  padding: clamp(7rem, 10vw, 9rem) var(--side) clamp(5rem, 8vw, 7rem);
}

.legal-content {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-notice {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  color: var(--paper);
  background: var(--current);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.55;
}

.legal-notice strong {
  font-weight: 800;
  text-transform: uppercase;
}

.legal-content h1 {
  margin: 0 0 0.6rem;
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.legal-updated {
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-content h2 {
  margin: 2.6rem 0 0.9rem;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
}

.legal-content p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: var(--current);
  text-decoration: underline;
}

/* ---- success / invite pages ---- */
.success-page {
  display: grid;
  min-height: calc(100svh - 84px);
  padding: clamp(3rem, 8vw, 6rem) var(--side);
  place-items: center;
}

.success-card {
  width: min(100%, 34rem);
  text-align: center;
}

.success-card__mark {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--current);
  color: var(--current);
  background: rgba(105, 198, 181, 0.12);
  font-size: 1.5rem;
  font-weight: 700;
  place-items: center;
}

.success-card .eyebrow {
  color: var(--current);
}

.success-card h1 {
  margin: 0.9rem 0 1rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.success-card p {
  max-width: 28rem;
  margin: 0 auto;
  color: rgba(238, 245, 243, 0.68);
  line-height: 1.6;
}

.success-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.success-card__actions .button {
  justify-content: center;
}

.success-card__actions .text-link {
  color: var(--current);
  border-color: rgba(238, 245, 243, 0.25);
}

.success-card__actions .text-link:hover {
  color: var(--current);
  border-color: var(--current);
}

/* accept-invite: form lives inside a .panel, styled like the modal form */
.invite-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
  text-align: left;
}

.invite-form input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
}

.invite-form input:focus {
  border-color: var(--current);
  outline: none;
  box-shadow: 0 0 0 3px rgba(105, 198, 181, 0.16);
}

.invite-error {
  min-height: 1.1em;
  margin: 0;
  color: #df786f;
  font-size: 0.82rem;
}

/* ---- footer variant for subpages without the featured price grid above it ---- */
.site-footer--plain {
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

@media (max-width: 640px) {
  .form-page {
    padding-top: 4rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

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

  .setup-grid-item {
    min-height: 0;
  }

  .success-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================================
   ELECTRICAL PLAN MOTION SET
   Posters render immediately. script.js swaps in each GIF near the viewport.
   ========================================================================= */

.motion-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.is-motion::before,
.is-motion::after,
.is-motion > :not(.motion-visual__img) {
  display: none !important;
}

.motion-visual__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.plan-stage.motion-visual {
  min-height: 0;
  padding: 0;
  background: var(--ink-soft);
}

.beat__visual.motion-visual {
  display: block;
  min-height: 0;
  padding: 0;
}

.motion-visual--upload {
  background: #101b20;
}

.motion-visual--paper {
  border-color: var(--line-dark);
  background: var(--paper);
  box-shadow: 1.25rem 1.25rem 0 rgba(7, 16, 21, 0.06);
}

.motion-visual--dark {
  background: var(--ink-soft);
  box-shadow: 1.25rem 1.25rem 0 rgba(105, 198, 181, 0.09);
}

.result__visual {
  margin-top: clamp(3rem, 7vw, 7rem);
}

.motion-visual--wide {
  border-color: rgba(7, 16, 21, 0.24);
  background: var(--ink-soft);
  box-shadow: 1.25rem 1.25rem 0 rgba(7, 16, 21, 0.08);
}

@media (max-width: 760px) {
  .motion-visual--paper,
  .motion-visual--dark,
  .motion-visual--wide {
    box-shadow: 0.65rem 0.65rem 0 rgba(7, 16, 21, 0.08);
  }
}
