:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-2: #0b1020;
  --ink: #f5f7fb;
  --muted: #9aa7bb;
  --soft: #d6deeb;
  --line: rgba(255, 255, 255, .13);
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .12);
  --blue: #82d8ff;
  --cyan: #6ee7f9;
  --violet: #b894ff;
  --green: #7df0a8;
  --amber: #ffd166;
  --rose: #ff7d96;
  --shadow: 0 34px 100px rgba(0, 0, 0, .46);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(1200px 820px at 14% -8%, rgba(61, 150, 255, .26), transparent 55%),
    radial-gradient(900px 700px at 91% 6%, rgba(184, 148, 255, .22), transparent 56%),
    radial-gradient(1000px 720px at 50% 105%, rgba(68, 211, 255, .12), transparent 58%),
    linear-gradient(145deg, var(--bg) 0%, #0c1324 48%, #05070d 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 72%);
}

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

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, .08);
}

.page-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
  box-shadow: 0 0 24px rgba(110, 231, 249, .55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 13, .72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px) saturate(1.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--soft);
  font-weight: 720;
  letter-spacing: -.02em;
}

.brand strong {
  color: var(--ink);
  font-weight: 820;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(245, 247, 251, .74);
  font-size: .92rem;
  font-weight: 680;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #051018;
  background: linear-gradient(135deg, #f7fbff, #9be8ff);
}

.section-wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: calc(100svh - 74px);
  padding: 78px 0 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 9vw, 8.6rem);
  line-height: .86;
  letter-spacing: -.085em;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(245, 247, 251, .72);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  color: #051018;
  background: linear-gradient(135deg, #fff, #a7ebff 45%, #d8c8ff);
  box-shadow: 0 16px 48px rgba(110, 231, 249, .23);
}

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

.button:hover,
.button:focus-visible,
.sample-card:hover,
.sample-card:focus-visible {
  transform: translateY(-2px);
}

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

.halo {
  position: absolute;
  inset: 5% -5% auto auto;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 38%, rgba(130, 216, 255, .58), transparent 34%),
    radial-gradient(circle at 68% 58%, rgba(184, 148, 255, .52), transparent 36%),
    radial-gradient(circle, rgba(255, 255, 255, .08), transparent 62%);
  filter: blur(20px);
  opacity: .9;
}

.device {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035)),
    rgba(7, 11, 20, .86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.hero-device {
  margin-top: 42px;
  min-height: 500px;
  transform: perspective(1300px) rotateX(7deg) rotateY(-10deg) rotateZ(1deg);
}

.device::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 380px at 16% 6%, rgba(130, 216, 255, .18), transparent 52%),
    radial-gradient(500px 420px at 92% 18%, rgba(184, 148, 255, .16), transparent 54%);
}

.device-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: rgba(245, 247, 251, .62);
  font-size: .82rem;
  font-weight: 760;
}

.device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.device-bar strong {
  margin-left: auto;
  color: rgba(245, 247, 251, .72);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  min-height: 448px;
  padding: 38px;
}

.score-orb {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin: 34px auto 26px;
  border: 1px solid rgba(130, 216, 255, .32);
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, var(--green), var(--cyan), var(--violet), rgba(255, 255, 255, .12) 78%),
    radial-gradient(circle at center, #101828 0 57%, transparent 58%);
  box-shadow: 0 0 70px rgba(130, 216, 255, .2);
}

.score-orb span {
  display: block;
  margin-top: 20px;
  font-size: 4.8rem;
  font-weight: 860;
  letter-spacing: -.08em;
}

.score-orb small {
  margin-top: -38px;
  color: rgba(245, 247, 251, .62);
  font-weight: 720;
}

.hero-lines {
  display: grid;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}

.hero-lines span {
  height: 10px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(130, 216, 255, .24), rgba(130, 216, 255, .85));
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  color: rgba(245, 247, 251, .66);
  background: rgba(5, 7, 13, .68);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  font-size: .82rem;
  font-weight: 680;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.08rem;
}

.card-a {
  top: 105px;
  left: 26px;
}

.card-b {
  right: 22px;
  top: 195px;
}

.card-c {
  left: 70px;
  bottom: 54px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
}

.intro-strip div {
  padding: 24px;
  background: rgba(5, 7, 13, .74);
}

.intro-strip span,
.sample-card span,
.trust-matrix span,
.deck-stack span,
.priority span,
.pipeline-node span,
.mini-header span {
  display: block;
  color: var(--cyan);
  font-size: .74rem;
  font-weight: 830;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.intro-strip strong {
  display: block;
  margin-top: 9px;
  color: rgba(245, 247, 251, .82);
  font-size: 1.02rem;
  line-height: 1.35;
}

.story-shell {
  position: relative;
  padding: 70px 0 110px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(0, .85fr);
  gap: clamp(32px, 6vw, 86px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.sticky-stage {
  position: sticky;
  top: 104px;
  align-self: start;
}

.stage-frame {
  overflow: hidden;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(7, 11, 20, .84);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .13);
  backdrop-filter: blur(22px);
}

.stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.stage-topline span {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 840;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stage-topline strong {
  max-width: 290px;
  text-align: right;
  color: rgba(245, 247, 251, .74);
  font-size: .94rem;
}

.stage-screen {
  position: relative;
  min-height: 548px;
  padding: 30px;
}

.stage-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 430px at 20% 12%, rgba(130, 216, 255, .18), transparent 55%),
    radial-gradient(520px 420px at 94% 12%, rgba(184, 148, 255, .18), transparent 55%);
}

.scene {
  position: absolute;
  inset: 30px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}

.stage-screen[data-scene="problem"] .scene-problem,
.stage-screen[data-scene="squad"] .scene-squad,
.stage-screen[data-scene="need"] .scene-need,
.stage-screen[data-scene="deck"] .scene-deck,
.stage-screen[data-scene="window"] .scene-window,
.stage-screen[data-scene="trust"] .scene-trust {
  opacity: 1;
  transform: none;
}

.fragment-grid {
  position: relative;
  width: min(100%, 480px);
  min-height: 420px;
}

.fragment {
  position: absolute;
  width: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  color: rgba(245, 247, 251, .82);
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
  font-weight: 790;
}

.fragment::after {
  content: "";
  display: block;
  width: 72%;
  height: 8px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.fragment.sheet { left: 12px; top: 20px; }
.fragment.clip { right: 0; top: 56px; transform: rotate(5deg); }
.fragment.data { left: 92px; top: 168px; transform: rotate(-4deg); }
.fragment.scout { right: 44px; bottom: 32px; }
.fragment.finance { left: 8px; bottom: 58px; transform: rotate(4deg); }

.roster-card,
.deck-stack,
.window-pack,
.trust-matrix {
  width: min(100%, 500px);
}

.roster-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(5, 7, 13, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.mini-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.mini-header strong {
  color: rgba(245, 247, 251, .78);
}

.roster-row {
  display: grid;
  grid-template-columns: 1fr auto 92px;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.roster-row span {
  color: rgba(245, 247, 251, .84);
  font-weight: 720;
}

.roster-row strong {
  color: var(--muted);
}

.roster-row i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(184, 148, 255, .68));
}

.pipeline {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1.12fr;
  align-items: center;
  width: min(100%, 560px);
}

.pipeline-node {
  display: grid;
  align-content: center;
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
}

.pipeline-node strong {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.08;
}

.pipeline-node.target {
  border-color: rgba(125, 240, 168, .36);
  box-shadow: 0 0 60px rgba(125, 240, 168, .12);
}

.pipeline-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(130, 216, 255, .18), rgba(130, 216, 255, .88));
}

.deck-stack {
  display: grid;
  gap: 16px;
}

.deck-stack article {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.deck-stack strong {
  display: block;
  margin-top: 10px;
  font-size: 1.26rem;
  line-height: 1.14;
}

.window-pack {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  background: rgba(5, 7, 13, .58);
}

.priority {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.priority strong {
  display: block;
  margin-top: 8px;
  color: rgba(245, 247, 251, .86);
}

.priority em {
  display: block;
  width: 70%;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.priority:nth-child(2) em { width: 54%; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.priority:nth-child(3) em { width: 42%; background: linear-gradient(90deg, var(--amber), var(--rose)); }

.window-ribbon {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(125, 240, 168, .3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(125, 240, 168, .08);
  font-size: .78rem;
  font-weight: 820;
}

.trust-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-matrix div {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
}

.trust-matrix strong {
  display: block;
  margin-top: 12px;
  color: rgba(245, 247, 251, .86);
  font-size: 1.18rem;
  line-height: 1.14;
}

.scene-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 0 24px 24px;
}

.scene-progress span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.scene-progress span.is-active {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(130, 216, 255, .36);
}

.story-copy {
  display: grid;
  gap: 24px;
}

.story-card {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .045);
  opacity: .56;
  transition: opacity .35s ease, border-color .35s ease, background .35s ease;
}

.story-card.is-active {
  border-color: rgba(130, 216, 255, .32);
  background: rgba(255, 255, 255, .075);
  opacity: 1;
}

.story-card h2,
.section-heading h2,
.pilot-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.story-card p:not(.eyebrow),
.section-heading p,
.pilot-cta p {
  max-width: 680px;
  color: rgba(245, 247, 251, .68);
  font-size: 1.08rem;
  line-height: 1.62;
}

.samples {
  padding: 40px 0 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sample-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .04)),
    rgba(5, 7, 13, .62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .24);
  transition: transform .25s ease, border-color .25s ease;
}

.sample-card:hover,
.sample-card:focus-visible {
  border-color: rgba(130, 216, 255, .34);
}

.sample-card strong {
  display: block;
  margin: 42px 0 12px;
  font-size: 1.54rem;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.sample-card small {
  display: block;
  color: rgba(245, 247, 251, .62);
  font-size: .98rem;
  line-height: 1.5;
}

.sample-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(245, 247, 251, .86);
  font-size: .88rem;
  font-style: normal;
  font-weight: 780;
}

.sample-card em::after {
  content: "->";
  color: var(--cyan);
  transition: transform .25s ease;
}

.sample-card:hover em::after,
.sample-card:focus-visible em::after {
  transform: translateX(3px);
}

.pilot-cta {
  margin-bottom: 80px;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  background:
    radial-gradient(740px 460px at 86% 12%, rgba(130, 216, 255, .18), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
}

.pilot-cta p {
  margin-bottom: 28px;
}

.request-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .48fr);
  align-items: end;
  gap: clamp(30px, 5vw, 68px);
  padding: 90px 0 58px;
}

.request-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: .88;
}

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

.request-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-proof span,
.access-roles span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(245, 247, 251, .76);
  background: rgba(255, 255, 255, .06);
  font-size: .86rem;
  font-weight: 720;
}

.request-panel,
.access-form,
.request-checklist div {
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(5, 7, 13, .64);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .24);
}

.request-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.request-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(130, 216, 255, .25), transparent 62%);
  pointer-events: none;
}

.panel-kicker {
  position: relative;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 840;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.access-roles {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.window-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(125, 240, 168, .24);
  border-radius: 24px;
  background: rgba(125, 240, 168, .075);
}

.window-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.window-card p {
  margin-bottom: 0;
  color: rgba(245, 247, 251, .68);
  line-height: 1.5;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(320px, .44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 66px);
  padding: 28px 0 90px;
}

.request-context {
  align-self: start;
  position: sticky;
  top: 112px;
}

.request-context h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.request-context > p:not(.eyebrow) {
  color: rgba(245, 247, 251, .68);
  font-size: 1.06rem;
  line-height: 1.62;
}

.request-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.request-checklist div {
  padding: 18px;
  border-radius: 22px;
}

.request-checklist span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #051018;
  background: linear-gradient(135deg, #fff, #9be8ff);
  font-weight: 850;
}

.request-checklist strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 251, .88);
}

.request-checklist p {
  margin-bottom: 0;
  color: rgba(245, 247, 251, .62);
  line-height: 1.45;
}

.access-form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.access-form label,
.access-form fieldset {
  display: grid;
  gap: 10px;
}

.access-form label > span,
.access-form legend {
  color: rgba(245, 247, 251, .84);
  font-size: .9rem;
  font-weight: 780;
}

.access-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.access-form input[type="text"],
.access-form input[type="email"],
.access-form select,
.access-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(5, 7, 13, .58);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.access-form input[type="text"],
.access-form input[type="email"],
.access-form select {
  height: 52px;
  padding: 0 15px;
}

.access-form textarea {
  resize: vertical;
  min-height: 116px;
  padding: 14px 15px;
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: rgba(245, 247, 251, .36);
}

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  border-color: rgba(130, 216, 255, .56);
  background: rgba(5, 7, 13, .72);
  box-shadow: 0 0 0 4px rgba(130, 216, 255, .12);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-grid label,
.radio-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  color: rgba(245, 247, 251, .76);
  background: rgba(255, 255, 255, .045);
  line-height: 1.35;
}

.access-form input[type="checkbox"],
.access-form input[type="radio"] {
  flex: 0 0 auto;
  accent-color: var(--cyan);
  margin-top: 2px;
}

.radio-list {
  display: grid;
  gap: 10px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(245, 247, 251, .68);
  font-size: .94rem;
}

.email-fallback {
  margin: 0;
  padding-top: 4px;
  color: rgba(245, 247, 251, .58);
  font-size: .94rem;
  line-height: 1.5;
}

.email-fallback a {
  color: var(--cyan);
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(245, 247, 251, .5);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .story-grid,
  .sample-grid,
  .request-hero,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-device {
    min-height: 430px;
    transform: none;
  }

  .story-grid {
    gap: 24px;
  }

  .sticky-stage {
    position: relative;
    top: auto;
  }

  .request-context {
    position: relative;
    top: auto;
  }

  .story-card {
    min-height: auto;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: .84rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-dashboard {
    padding: 22px;
  }

  .score-orb {
    width: 172px;
    height: 172px;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-top: 12px;
  }

  .stage-frame {
    min-height: auto;
  }

  .stage-screen {
    min-height: 520px;
    padding: 18px;
  }

  .scene {
    inset: 18px;
  }

  .fragment-grid {
    min-height: 430px;
  }

  .fragment {
    width: 178px;
    padding: 18px;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pipeline-line {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .pipeline-node {
    min-height: 118px;
  }

  .trust-matrix {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

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

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