:root {
  color-scheme: dark;
  --ink: #07111d;
  --ink-2: #0b1828;
  --ink-3: #102238;
  --canvas: #edf3f8;
  --canvas-2: #dfe8f0;
  --white: #f8fbff;
  --muted: #94a7bb;
  --muted-dark: #53667a;
  --line: rgba(197, 218, 237, 0.18);
  --line-dark: rgba(14, 42, 68, 0.17);
  --blue: #146dff;
  --blue-bright: #2a8cff;
  --green: #42d392;
  --orange: #ff9f43;
  --header-height: 76px;
  --gutter: clamp(22px, 5vw, 88px);
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 38px 100px rgba(0, 0, 0, .34);
  --display-font: "Segoe UI Variable Display", "Segoe UI", Aptos, Arial, sans-serif;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  background: var(--ink);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.page-progress {
  position: fixed;
  z-index: 160;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 29, .82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 760;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand small {
  color: var(--muted);
  font: inherit;
  font-weight: 520;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 9px solid var(--blue);
  border-right-color: var(--green);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(24, 103, 216, .22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.site-nav a {
  color: #b9c8d6;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
}

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

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .2s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
  padding: calc(var(--header-height) + 72px) var(--gutter) 96px;
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(112deg, rgba(7,17,29,.98) 0%, rgba(7,17,29,.92) 48%, rgba(10,28,49,.87) 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: .34;
  background-image:
    linear-gradient(rgba(137,174,207,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137,174,207,.065) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  right: -12vw;
  top: 8vh;
  border-radius: 50%;
  background: rgba(20,109,255,.23);
  filter: blur(120px);
}

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

.eyebrow {
  margin: 0 0 22px;
  color: #8db9ff;
  font-size: clamp(.72rem, .8vw, .86rem);
  font-weight: 740;
  letter-spacing: .15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #075ad9;
}

h1,
h2,
h3,
p,
blockquote {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display-font);
  letter-spacing: -.032em;
  line-height: .99;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.45vw, 6.7rem);
  font-weight: 720;
}

.hero-public h1 {
  font-size: clamp(3.15rem, 5.3vw, 6.3rem);
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #c0cfdd;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.57;
}

.hero-qualifier {
  max-width: 700px;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--blue-bright);
  color: #e1ebf5;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 730;
  text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease;
}

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

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(20,109,255,.3);
}

.button-primary:hover {
  background: var(--blue-bright);
}

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

.button-light:hover {
  background: #dfeeff;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #ced9e4;
  font-size: .94rem;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 5px;
}

.contact-note {
  margin: 15px 0 0;
  color: #7f93a7;
  font-size: .73rem;
}

.contact-note code {
  color: var(--orange);
  font: inherit;
  font-weight: 750;
}

.contact-note-light {
  color: rgba(255,255,255,.62);
}

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  perspective: 1300px;
}

.product-window {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(150, 190, 228, .28);
  border-radius: var(--radius);
  color: inherit;
  background: #d9e4ec;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.product-window img {
  width: 100%;
  height: auto;
}

.product-window-hero {
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center left;
}

.motion-ok .product-window-hero {
  transition: transform .7s var(--ease);
}

.motion-ok .product-window-hero:hover {
  transform: rotateY(-1deg) rotateX(0deg) scale(1.01);
}

.window-bar {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  color: #54677a;
  background: #e7eef4;
  font-size: .7rem;
  text-align: left;
}

.window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aab8c5;
}

.window-bar i:first-child {
  background: var(--orange);
}

.window-bar i:last-of-type {
  background: var(--green);
}

.window-bar b {
  margin-left: 8px;
  font-weight: 650;
}

.floating-proof {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #e6eef6;
  background: rgba(7,17,29,.88);
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  font-size: .75rem;
  font-weight: 650;
}

.floating-proof-source {
  left: -30px;
  top: 18%;
}

.floating-proof-export {
  right: -12px;
  bottom: 12%;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.07);
}

.proof-dot-blue {
  background: var(--blue-bright);
}

.proof-dot-green {
  background: var(--green);
}

.hero-facts {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  gap: clamp(20px, 4vw, 72px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #8195aa;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 4vh;
}

.section-intro-wide {
  max-width: 1120px;
}

.section-intro h2,
.control-copy h2,
.limits-heading h2,
.outcome-heading h2,
.offer-main h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 6.6rem);
  font-weight: 690;
}

.section-intro > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.story-section {
  position: relative;
  padding: 12vh var(--gutter) 14vh;
  background: var(--ink);
}

.story-dark {
  background:
    radial-gradient(circle at 84% 28%, rgba(20,109,255,.12), transparent 32%),
    var(--ink);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(560px, 1.24fr);
  gap: clamp(44px, 7vw, 130px);
  align-items: start;
}

.story-step {
  min-height: 69vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 0;
  border-top: 1px solid var(--line);
  opacity: 1;
  transition: opacity .45s ease;
}

.motion-ok .story-step {
  opacity: .36;
}

.story-step.is-active {
  opacity: 1;
}

.step-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: #91a7bb;
  font-size: .74rem;
}

.step-kicker {
  margin: 0 0 10px;
  color: var(--blue-bright);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.story-step h3 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 680;
  line-height: 1.04;
}

.story-step > p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.story-stage {
  position: relative;
  top: auto;
  min-width: 0;
  height: auto;
  max-height: none;
  overflow: visible;
  border: 1px solid rgba(154,191,225,.22);
  border-radius: 22px;
  background: #0a1726;
  box-shadow: 0 42px 100px rgba(0,0,0,.38);
}

.motion-ok .story-stage {
  position: sticky;
  top: 12vh;
  height: 76vh;
  max-height: 820px;
  overflow: hidden;
}

.stage-chrome {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #92a6ba;
  background: rgba(7,17,29,.9);
  font-size: .72rem;
  letter-spacing: .03em;
  backdrop-filter: blur(10px);
}

.motion-ok .stage-chrome {
  display: flex;
}

.stage-chrome b {
  color: #d6e2ee;
  font-weight: 650;
}

.story-frame {
  position: relative;
  margin: 0;
  padding-top: 48px;
  background: #122238;
}

.story-frame + .story-frame {
  margin-top: 22px;
}

.story-frame img,
.story-frame video {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left top;
}

.motion-ok .story-frame img,
.motion-ok .story-frame video {
  height: calc(76vh - 48px);
  max-height: 772px;
  object-fit: cover;
}

.motion-ok .story-frame-video video {
  object-fit: contain;
  background: #07111d;
}

.story-frame figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #e8eff7;
  background: rgba(7,17,29,.84);
  font-size: .72rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.motion-ok .story-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  clip-path: inset(5% 5% 5% 5% round 14px);
  transform: scale(1.035) translateY(12px);
  transition: opacity .55s ease, transform .75s var(--ease), clip-path .75s var(--ease);
  pointer-events: none;
}

.motion-ok .story-frame.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.control-section {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 150px);
  padding: 12vh var(--gutter);
  color: var(--ink);
  background: var(--canvas);
}

.control-copy h2 {
  max-width: 720px;
}

.large-copy {
  max-width: 660px;
  color: #40546a;
  font-size: clamp(1.06rem, 1.4vw, 1.32rem);
}

.control-copy blockquote {
  max-width: 680px;
  margin: 44px 0 0;
  padding: 28px 0 0;
  border-top: 2px solid var(--blue);
  color: #132b44;
  font-size: clamp(1.45rem, 2.2vw, 2.5rem);
  font-weight: 640;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.control-media {
  min-width: 0;
}

.control-media .product-window {
  transform: rotate(1deg);
}

.control-media video {
  width: 65%;
  margin: -12% 0 0 -8%;
  border: 1px solid rgba(9,31,52,.24);
  border-radius: 14px;
  background: #0a1623;
  box-shadow: 0 28px 70px rgba(19,46,72,.22);
}

.media-caption {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: .8rem;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-right: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status-confirmed {
  color: #075b3c;
  background: rgba(66,211,146,.22);
}

.status-ambiguous {
  color: #854600;
  background: rgba(255,159,67,.24);
}

.audience-section {
  min-height: 100svh;
  padding: 13vh var(--gutter);
  background:
    linear-gradient(130deg, rgba(20,109,255,.08), transparent 42%),
    var(--ink-2);
}

.audience-list {
  margin-top: 8vh;
  border-bottom: 1px solid var(--line);
}

.audience-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  border-top: 1px solid var(--line);
}

.audience-row > span {
  color: #61798f;
  font: 650 .72rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.audience-row h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.3vw, 4.1rem);
  font-weight: 570;
  line-height: 1.08;
}

.limits-section {
  min-height: 90svh;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  grid-template-areas:
    "head line"
    "copy copy";
  align-content: center;
  gap: 8vh 8vw;
  padding: 12vh var(--gutter);
  color: var(--ink);
  background: var(--canvas);
}

.limits-heading {
  grid-area: head;
}

.limits-heading h2 {
  max-width: 720px;
}

.requirements-line {
  grid-area: line;
  border-bottom: 1px solid var(--line-dark);
}

.requirements-line > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.requirements-line strong {
  color: #16314a;
  font-size: 1rem;
  text-align: right;
}

.limits-copy {
  grid-area: copy;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding-top: 7vh;
  border-top: 1px solid var(--line-dark);
}

.limits-copy p {
  max-width: 720px;
  margin: 0;
  color: #344b61;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  line-height: 1.4;
}

.final-cta {
  position: relative;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh var(--gutter);
  overflow: hidden;
  background: var(--blue);
}

.final-cta::after {
  position: absolute;
  width: 46vw;
  height: 46vw;
  right: -12vw;
  bottom: -26vw;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 8vw rgba(255,255,255,.025), 0 0 0 16vw rgba(255,255,255,.025);
}

.final-cta .eyebrow {
  color: rgba(255,255,255,.72);
}

.final-cta h2 {
  z-index: 1;
  max-width: 1200px;
  margin: 0 0 30px;
  font-size: clamp(3.5rem, 7vw, 8.8rem);
  font-weight: 710;
  letter-spacing: -.055em;
  line-height: .94;
}

.final-cta > p:not(.eyebrow):not(.contact-note) {
  z-index: 1;
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.83);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
}

.final-cta .button,
.final-cta .contact-note {
  z-index: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
  color: #6f8499;
  background: var(--ink);
  font-size: .76rem;
}

/* Proposal */
.hero-proposal {
  min-height: 108svh;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  padding-top: calc(var(--header-height) + 42px);
}

.proposal-identity {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #87a0b8;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proposal-identity span:first-child {
  color: #9fc8ff;
  font-size: .84rem;
  letter-spacing: .15em;
}

.hero-proposal .hero-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding: 7vh 0 4vh;
}

.hero-proposal h1 {
  font-size: clamp(3.1rem, 4.7vw, 5.8rem);
}

.proposal-terms {
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  gap: 1px;
  margin-top: 4vh;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
}

.proposal-terms > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(8,20,34,.88);
}

.proposal-terms strong {
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2.05vw, 2.35rem);
  letter-spacing: -.028em;
  line-height: 1;
}

.proposal-terms span {
  color: var(--muted);
  font-size: .72rem;
}

@media (min-width: 721px) {
  .proposal-terms > div > span {
    font-size: .86rem;
    line-height: 1.3;
  }
}

.proposal-terms .proposal-terms-cta {
  grid-column: 1 / -1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  font-size: .8rem;
  font-weight: 750;
  text-decoration: none;
}

.proposal-terms .proposal-terms-cta span {
  color: var(--white);
  font-size: 1rem;
}

.proposal-hero-product {
  z-index: 4;
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-top: 34vh;
  pointer-events: auto;
}

.proposal-hero-product .product-window {
  width: min(100%, 760px);
  margin-left: auto;
}

.hero-summary {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #d8e5f0;
  font-size: clamp(.75rem, 1vw, .95rem);
  font-weight: 740;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-summary i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-bright);
}

.premise-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-content: center;
  gap: 7vh 8vw;
  padding: 12vh var(--gutter);
  background:
    radial-gradient(circle at 20% 62%, rgba(20,109,255,.17), transparent 34%),
    var(--ink-2);
}

.premise-lead {
  grid-column: 1 / -1;
}

.display-statement {
  margin: 0 0 14px;
  color: #71869a;
  font-size: clamp(2rem, 4vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.premise-lead h2 {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(3.4rem, 6.8vw, 8.6rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .91;
}

.logic-stream {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.logic-stream span {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a6b7c8;
  font-size: .83rem;
}

.logic-stream .logic-source-primary {
  border-color: rgba(42,140,255,.7);
  color: white;
  background: rgba(20,109,255,.2);
}

.premise-copy {
  max-width: 700px;
  color: #b5c4d3;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
}

.premise-copy p:first-child {
  margin-top: 0;
}

.story-quote {
  margin: 0 0 12vh;
  padding: 24px 0 0;
  border-top: 2px solid var(--blue);
  color: #dce8f3;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 620;
  letter-spacing: -.025em;
  line-height: 1.28;
}

.story-demo-video {
  width: 100%;
  margin: -7vh 0 0;
  border: 1px solid rgba(154,191,225,.22);
  border-radius: 14px;
  background: var(--ink-3);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.story-demo-caption {
  margin: 14px 0 10vh;
  color: #6f8499;
  font-size: .76rem;
}

.route-section {
  min-height: 100svh;
  padding: 13vh var(--gutter);
  color: var(--ink);
  background: var(--canvas);
}

.route-section .section-intro > p:last-child {
  color: var(--muted-dark);
}

.route-line {
  position: relative;
  max-width: 1240px;
  margin: 9vh 0 0 auto;
  padding: 0;
  list-style: none;
  border-left: 1px solid #a7b8c8;
}

.route-line li {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 250px;
  padding: 16px 0 54px 60px;
}

.route-line li::before {
  position: absolute;
  top: 24px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.route-line .route-finish::before {
  background: var(--green);
  box-shadow: 0 0 0 1px #169866;
}

.route-number {
  color: #70859a;
  font: 650 .8rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.route-line li p:first-child {
  margin: 0 0 10px;
  color: #075ad9;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.route-line h3 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 4.4rem);
  font-weight: 630;
}

.route-line li p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1rem;
}

.route-start {
  max-width: 920px;
  margin: 5vh 0 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  color: #314a61;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.outcome-section {
  min-height: 100svh;
  padding: 13vh var(--gutter);
  background:
    radial-gradient(circle at 75% 52%, rgba(20,109,255,.15), transparent 38%),
    var(--ink);
}

.outcome-heading {
  max-width: 1050px;
}

.outcome-columns {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 1px;
  margin-top: 8vh;
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome-column {
  min-height: 490px;
  padding: clamp(28px, 4vw, 64px);
  background: rgba(8,20,34,.94);
}

.outcome-label {
  margin: 0 0 34px;
}

.outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding: 17px 0 17px 32px;
  border-top: 1px solid var(--line);
  color: #dce7f1;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.outcome-list li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.outcome-conditional h3 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 4vw, 5.2rem);
  font-weight: 650;
}

.outcome-conditional > p:not(.outcome-label) {
  max-width: 620px;
  color: #aebfd0;
  font-size: 1.05rem;
}

.outcome-conditional .fine-print {
  margin-top: 34px;
  color: #71869b;
  font-size: .78rem;
}

.boundaries-section {
  min-height: 100svh;
  padding: 13vh var(--gutter);
  color: var(--ink);
  background: var(--canvas);
}

.commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: 8vh;
  padding-top: 7vh;
  border-top: 1px solid var(--line-dark);
}

.commitment-side {
  display: block;
  margin-bottom: 24px;
  color: #075ad9;
  font-size: .75rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.commitments h3 {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 620;
}

.commitments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitments li {
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  color: #435a70;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.5;
}

.exclusions {
  margin-top: 12vh;
  padding-top: 28px;
  border-top: 2px solid #173856;
}

.exclusions-title {
  margin: 0 0 20px;
  color: #6c8195;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.exclusion-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.exclusion-ticker span {
  padding: 9px 14px;
  border: 1px solid #b2c1cf;
  border-radius: 999px;
  color: #2a435b;
  font-size: .84rem;
}

.exclusions > p:last-child {
  margin: 26px 0 0;
  color: #7a4c15;
  font-weight: 620;
}

.offer-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 10vh var(--gutter);
  background:
    radial-gradient(circle at 82% 0%, rgba(20,109,255,.22), transparent 34%),
    var(--ink);
}

.offer-panel {
  width: min(100%, 1520px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  border: 1px solid rgba(139,180,217,.25);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(12,29,47,.9);
  box-shadow: 0 50px 130px rgba(0,0,0,.34);
}

.offer-main,
.offer-terms,
.offer-next {
  padding: clamp(30px, 5vw, 78px);
}

.offer-main {
  border-right: 1px solid var(--line);
}

.offer-main h2 {
  max-width: 900px;
  font-size: clamp(3.25rem, 5.7vw, 7rem);
}

.offer-main > p:last-child {
  max-width: 760px;
  color: #aebfd0;
  font-size: 1.05rem;
}

.offer-terms > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.offer-terms > div:first-child {
  border-top: 0;
}

.offer-terms span {
  color: #748a9f;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-terms strong {
  color: #e7eff7;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
}

.offer-next {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px 32px;
  border-top: 1px solid var(--line);
  background: var(--blue);
}

.offer-next > p:first-child {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 640;
}

.offer-next i {
  padding: 0 7px;
  font-style: normal;
}

.offer-next .contact-note {
  grid-column: 1 / -1;
  margin: 0;
}

.lightbox {
  width: min(94vw, 1600px);
  max-width: none;
  max-height: 92vh;
  padding: 44px 10px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: white;
  background: #07111d;
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
}

.lightbox::backdrop {
  background: rgba(1,6,11,.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 54px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 5px;
  right: 9px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 1.4rem;
}

@supports (animation-timeline: view()) {
  .motion-ok .audience-row,
  .motion-ok .route-line li {
    animation: enter-row linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }

  @keyframes enter-row {
    from { opacity: .18; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 42px;
  }

  .story-layout {
    grid-template-columns: minmax(270px, .72fr) minmax(500px, 1.28fr);
    gap: 50px;
  }

  .control-section {
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 110px;
  }

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

  .hero-product {
    width: min(100%, 900px);
  }

  .product-window-hero {
    transform: none;
  }

  .proposal-identity,
  .hero-summary {
    grid-column: 1;
  }

  .hero-proposal .hero-copy,
  .proposal-terms,
  .proposal-hero-product,
  .hero-summary {
    grid-column: 1;
    grid-row: auto;
  }

  .proposal-terms {
    grid-row: auto;
    margin-top: 0;
  }

  .proposal-hero-product {
    margin-top: 0;
  }

  .story-layout {
    grid-template-columns: minmax(240px, .7fr) minmax(430px, 1.3fr);
    gap: 34px;
  }

  .story-stage {
    height: 66vh;
  }

  .story-frame img {
    height: calc(66vh - 48px);
  }

  .control-section,
  .limits-section,
  .premise-section {
    grid-template-columns: 1fr;
  }

  .control-section {
    align-items: start;
  }

  .limits-section {
    grid-template-areas: "head" "line" "copy";
  }

  .premise-lead {
    grid-column: 1;
  }

  .offer-panel {
    grid-template-columns: 1fr;
  }

  .offer-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
    --gutter: 20px;
    --radius: 12px;
  }

  html {
    scroll-behavior: auto;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(7,17,29,.97);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 15px 2px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }

  .menu-open .menu-toggle > span:not(.sr-only):nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:not(.sr-only):last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    gap: 38px;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 88px;
  }

  .hero::before {
    background-size: 34px 34px;
  }

  h1,
  .hero-public h1,
  .hero-proposal h1 {
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
    line-height: .96;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .floating-proof {
    display: none;
  }

  .window-bar {
    height: 34px;
  }

  .hero-facts {
    position: static;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
  }

  .hero-public .hero-facts {
    grid-column: 1;
  }

  .section-intro h2,
  .control-copy h2,
  .limits-heading h2,
  .outcome-heading h2,
  .offer-main h2 {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: .98;
  }

  .story-section,
  .control-section,
  .audience-section,
  .limits-section,
  .final-cta,
  .premise-section,
  .route-section,
  .outcome-section,
  .boundaries-section,
  .offer-section {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .story-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .story-step {
    min-height: auto;
    padding: 38px 0;
    opacity: 1;
  }

  .story-step h3 {
    font-size: 2.15rem;
  }

  .story-stage {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .stage-chrome {
    display: none;
  }

  .motion-ok .story-frame,
  .story-frame {
    position: relative;
    inset: auto;
    margin: 0 0 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    opacity: 1;
    clip-path: none;
    transform: none;
    pointer-events: auto;
  }

  .story-frame img,
  .story-frame video {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .story-frame figcaption {
    position: static;
    border: 0;
    border-radius: 0;
    background: #102238;
  }

  .control-section {
    gap: 52px;
  }

  .control-copy blockquote {
    margin-top: 32px;
    font-size: 1.5rem;
  }

  .control-media video {
    width: 92%;
    margin: 18px auto 0;
  }

  .audience-list {
    margin-top: 50px;
  }

  .audience-row {
    grid-template-columns: 40px 1fr;
    min-height: 100px;
  }

  .audience-row h3 {
    font-size: 1.65rem;
  }

  .limits-section {
    gap: 44px;
  }

  .requirements-line > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .requirements-line strong {
    text-align: left;
  }

  .limits-copy {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 40px;
  }

  .limits-copy p {
    font-size: 1.1rem;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .proposal-identity {
    gap: 15px;
    flex-direction: column;
  }

  .proposal-terms {
    grid-template-columns: 1fr 1fr;
  }

  .proposal-terms > div {
    min-height: 96px;
  }

  .proposal-hero-product {
    margin: 0;
  }

  .hero-summary {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px 14px;
  }

  .premise-section {
    gap: 44px;
  }

  .display-statement {
    font-size: 2rem;
  }

  .premise-lead h2 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .story-quote {
    margin-bottom: 0;
  }

  .story-demo-video {
    margin-top: 24px;
  }

  .story-demo-caption {
    margin-bottom: 0;
  }

  .route-line {
    margin-top: 54px;
    margin-left: 5px;
  }

  .route-line li {
    grid-template-columns: 40px 1fr;
    min-height: 230px;
    padding-left: 24px;
  }

  .route-line h3 {
    font-size: 2.15rem;
  }

  .outcome-columns,
  .commitments {
    grid-template-columns: 1fr;
  }

  .outcome-column {
    min-height: auto;
  }

  .outcome-conditional h3 {
    font-size: 2.5rem;
  }

  .commitments {
    gap: 70px;
  }

  .commitments h3 {
    font-size: 2.3rem;
  }

  .offer-section {
    padding-inline: 12px;
  }

  .offer-panel {
    border-radius: 16px;
  }

  .offer-next {
    grid-template-columns: 1fr;
  }

  .offer-next .contact-note {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .proposal-terms {
    grid-template-columns: 1fr;
  }

  .hero-summary i {
    display: none;
  }

  .hero-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .product-window-hero {
    transform: none;
  }
}
