:root {
  color-scheme: dark;
  --bg: #050506;
  --ink: #f8fbff;
  --muted: #a3adb7;
  --dim: #67727d;
  --line: rgba(248, 251, 255, 0.14);
  --line-strong: rgba(248, 251, 255, 0.28);
  --accent: #8cf4ff;
  --warm: #f0dbad;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, #050506 64%),
    linear-gradient(124deg, #050506 0%, #080b0c 48%, #050506 100%);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 251, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, transparent 78%);
}

body::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.72), transparent 34%, rgba(5, 5, 6, 0.2)),
    linear-gradient(180deg, rgba(5, 5, 6, 0), #050506 84%);
}

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

#capture-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header,
main,
.site-footer,
.noscript {
  position: relative;
  z-index: 3;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 42px;
  color: rgba(248, 251, 255, 0.9);
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.86), rgba(5, 5, 6, 0));
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(140, 244, 255, 0.2);
}

.brand-lockup span,
.nav-links a,
.button,
.eyebrow,
.section-number,
.flow-steps span,
dt,
.site-footer {
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(248, 251, 255, 0.64);
  font-size: 0.9rem;
}

.nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  padding: 148px 42px 88px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 210px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 6, 0), var(--bg));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(650px, 100%);
  align-self: center;
  margin-left: max(0px, calc((100vw - 1200px) / 2));
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.78);
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.2rem, 8vw, 8.7rem);
  font-weight: 820;
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-line {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(248, 251, 255, 0.95);
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-text {
  max-width: 510px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 760;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: #031013;
  background: var(--accent);
  box-shadow:
    0 18px 48px rgba(140, 244, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: rgba(248, 251, 255, 0.88);
  background: rgba(8, 10, 11, 0.68);
  border-color: rgba(248, 251, 255, 0.2);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: rgba(248, 251, 255, 0.38);
  background: rgba(16, 18, 20, 0.82);
}

.section-inner {
  width: min(1180px, calc(100% - 84px));
  margin: 0 auto;
}

.intro-band {
  padding: 108px 0 132px;
  background: #050506;
}

.intro-grid {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 34px;
}

.section-number {
  color: var(--warm);
  font-size: 0.86rem;
  font-weight: 840;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.2rem, 4.6vw, 4.65rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-band p:last-child,
.details-section p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-band p:last-child {
  grid-column: 2;
  margin-top: -10px;
}

.flow-section {
  padding: 120px 0;
  border-top: 1px solid rgba(248, 251, 255, 0.08);
  border-bottom: 1px solid rgba(248, 251, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 11, 12, 0.96), rgba(5, 5, 6, 0.98));
}

.flow-section h2 {
  margin-top: 18px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-steps article {
  min-height: 246px;
  padding: 32px 34px 32px 0;
  border-right: 1px solid var(--line);
}

.flow-steps article + article {
  padding-left: 34px;
}

.flow-steps article:last-child {
  border-right: 0;
}

.flow-steps span,
dt {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 820;
}

h3 {
  margin-top: 44px;
  font-size: 1.44rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.flow-steps p {
  margin-top: 16px;
  color: var(--muted);
}

.details-section {
  padding: 128px 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.88));
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: start;
}

.detail-grid h2 {
  margin-top: 18px;
}

.detail-copy {
  padding-top: 44px;
}

dl {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  border-top: 1px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

dd {
  margin: 0;
  color: var(--muted);
}

.creator-band {
  padding: 116px 0;
  border-top: 1px solid rgba(248, 251, 255, 0.08);
  border-bottom: 1px solid rgba(248, 251, 255, 0.08);
  background:
    radial-gradient(circle at 82% 28%, rgba(140, 244, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.96), rgba(5, 5, 6, 0.96));
}

.creator-grid {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.creator-grid h2 {
  max-width: 760px;
}

.creator-grid p:not(.section-number) {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.final-cta {
  padding: 120px 0 132px;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.92), #050506);
}

.final-cta .section-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 24px 42px;
  color: var(--dim);
  background: #050506;
  border-top: 1px solid rgba(248, 251, 255, 0.08);
  font-size: 0.9rem;
}

.site-footer span {
  color: rgba(248, 251, 255, 0.8);
  font-weight: 760;
}

.site-footer a:hover {
  color: var(--ink);
}

.hero-copy,
.section-inner > *,
.flow-steps article {
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.motion-ready .hero-copy:not(.is-visible),
.motion-ready .section-inner > *:not(.is-visible),
.motion-ready .flow-steps article:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .is-visible.hero-copy,
.motion-ready .section-inner > .is-visible,
.motion-ready .flow-steps article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript {
  margin: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 5, 6, 0.86);
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    min-height: 800px;
    padding: 128px 24px 74px;
  }

  .hero-copy {
    align-self: start;
    padding-top: 28px;
  }

  .section-inner {
    width: min(100% - 48px, 720px);
  }

  .intro-grid,
  .detail-grid,
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .intro-band p:last-child {
    grid-column: auto;
    margin-top: 0;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps article,
  .flow-steps article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-steps article:last-child {
    border-bottom: 0;
  }

  h3 {
    margin-top: 22px;
  }

  .detail-copy {
    padding-top: 8px;
  }

  .final-cta .section-inner {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  body::before {
    background-size: 72px 72px;
    opacity: 0.14;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-lockup img {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.82rem;
  }

  .hero {
    display: block;
    min-height: 700px;
    padding: 96px 18px 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.75rem;
  }

  .hero-line {
    max-width: 330px;
    margin-top: 22px;
    font-size: 1.4rem;
    line-height: 1.08;
  }

  .hero-text {
    max-width: 340px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: calc(100% - 36px);
  }

  .intro-band,
  .flow-section,
  .details-section,
  .creator-band,
  .final-cta {
    padding: 68px 0;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    justify-content: flex-start;
    padding: 24px 18px;
  }
}

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

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