:root {
  color-scheme: dark;
  --bg: #050b14;
  --bg-deep: #091423;
  --panel: rgba(8, 18, 32, 0.64);
  --panel-strong: rgba(9, 23, 40, 0.82);
  --line: rgba(137, 223, 255, 0.14);
  --line-strong: rgba(137, 223, 255, 0.28);
  --text: #f3f8ff;
  --muted: #9caec6;
  --muted-strong: #d6e3f4;
  --green: #62e3a7;
  --cyan: #70dfff;
  --blue: #2b74ff;
  --shadow: 0 30px 80px rgba(1, 8, 18, 0.48);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(98, 227, 167, 0.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(43, 116, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #07101c 0%, var(--bg) 48%, #07101a 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

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

a {
  color: inherit;
}

p,
li {
  line-height: 1.72;
}

p,
a,
li,
dd,
dt,
label {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  max-width: none;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  line-height: 1;
}

h3 {
  font-size: 1.25rem;
}

.skip-link,
.button,
.nav-cta,
.nav-toggle,
.access-row input {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.skip-link {
  position: fixed;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

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

.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;
}

.shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-chrome {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.chrome-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.72;
}

.chrome-orb-left {
  top: 6rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(98, 227, 167, 0.4), transparent 68%);
}

.chrome-orb-right {
  top: 12rem;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(43, 116, 255, 0.34), transparent 70%);
}

.chrome-mark {
  position: absolute;
  top: 8rem;
  right: 8%;
  width: min(36vw, 22rem);
  opacity: 0.05;
  filter: blur(1px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(131, 211, 255, 0.14);
  background: rgba(5, 11, 20, 0.7);
  backdrop-filter: blur(20px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  flex-shrink: 0;
  width: clamp(9rem, 14vw, 11rem);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.78rem 1.08rem;
  border: 1px solid rgba(131, 211, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(131, 211, 255, 0.44);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(131, 211, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.26rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 8.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow,
.mini-kicker,
.stage-label {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-lede,
.section-heading > p:last-child {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: var(--muted-strong);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.access-required-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.64rem 0.9rem;
  border: 1px solid rgba(98, 237, 168, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(98, 237, 168, 0.1), rgba(70, 172, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.access-required-badge::before {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(98, 237, 168, 0.7);
  content: "";
}

.hero-risk-note {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.signal-row span,
.contract-bullets span {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(131, 211, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
}

.stage-frame {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  inset: 10% 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(98, 227, 167, 0.28), transparent 46%),
    radial-gradient(circle at 70% 40%, rgba(43, 116, 255, 0.34), transparent 42%);
  filter: blur(24px);
}

.stage-core {
  position: absolute;
  inset: 12% 14% 22%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 211, 255, 0.16);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(5, 14, 26, 0.7);
  box-shadow: var(--shadow);
}

.stage-core::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  content: "";
}

.stage-icon {
  width: min(70%, 20rem);
  opacity: 0.96;
  animation: floatMark 7s ease-in-out infinite;
}

.stage-card {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(100%, 22rem);
}

.glass-card {
  border: 1px solid rgba(131, 211, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stage-card,
.step-card,
.access-panel,
.example-card,
.benefit-chip,
.risk-panel,
.final-cta {
  padding: 1.35rem;
}

.stage-card-head,
.example-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(98, 227, 167, 0.12);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-list,
.example-grid {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
}

.metric-list div,
.example-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-list dt,
.example-grid dt {
  color: var(--muted);
}

.metric-list dd,
.example-grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.section {
  padding: 2.5rem 0 0;
}

.section-contrast {
  padding-top: 3.5rem;
}

.section-stack {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 48rem;
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.85fr);
  gap: 1.4rem;
  align-items: center;
}

.access-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.access-row {
  display: flex;
  gap: 0.9rem;
}

.access-row input {
  width: 100%;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(131, 211, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.access-row input::placeholder {
  color: #7d8faa;
}

.access-row input:focus-visible {
  outline: none;
  border-color: rgba(112, 223, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(112, 223, 255, 0.12);
}

.access-caption,
.access-message,
.example-note,
.site-footer p {
  margin: 0.95rem 0 0;
  color: var(--muted);
}

.access-message {
  min-height: 1.5rem;
}

.access-message.is-visible {
  color: var(--green);
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  min-height: 100%;
}

.step-number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(98, 227, 167, 0.22), rgba(43, 116, 255, 0.2));
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
}

.step-card p,
.benefit-chip span,
.final-cta p {
  color: var(--muted-strong);
}

.contract-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

.contract-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-chip {
  min-height: 7rem;
  display: grid;
  place-items: center start;
}

.benefit-chip span {
  font-size: 1.06rem;
  font-weight: 700;
}

.risk-section,
.final-cta-section {
  padding-top: 3.5rem;
}

.risk-panel {
  padding: 1.6rem;
}

.risk-panel h2,
.final-cta h2 {
  max-width: 12ch;
}

.final-cta {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  text-align: center;
  justify-items: center;
}

.site-footer {
  padding: 4rem 0 2.2rem;
}

.footer-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(131, 211, 255, 0.12);
}

.footer-logo {
  width: 8.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.98rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan) 46%, var(--blue));
  color: #041019;
  box-shadow: 0 18px 40px rgba(61, 150, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(61, 150, 255, 0.3);
}

.button-secondary {
  border-color: rgba(131, 211, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(131, 211, 255, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.018);
  }
}

@media (max-width: 1024px) {
  .card-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .contract-layout,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
  }

  .stage-frame {
    min-height: 27rem;
  }

  .stage-card {
    right: 1rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-shell {
    padding: 0.9rem 0;
  }

  .brand {
    width: 8.8rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(131, 211, 255, 0.16);
    border-radius: 24px;
    background: rgba(4, 10, 19, 0.94);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.2rem 0;
  }

  .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero {
    padding-top: 7.25rem;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-stage {
    display: none;
  }

  .hero-actions,
  .access-row,
  .footer-shell,
  .footer-links {
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
  }

  .card-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-contrast,
  .risk-section,
  .final-cta-section {
    padding-top: 2.75rem;
  }

  .final-cta,
  .risk-panel {
    text-align: left;
    justify-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
