:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --bg-elevated: #111114;
  --panel: rgba(18, 18, 20, 0.9);
  --panel-strong: #151519;
  --border: #27272d;
  --border-soft: #1e1e23;
  --text: #f4f4f6;
  --text-soft: #c9cbd2;
  --text-muted: #979aa3;
  --accent: #8fd3ff;
  --accent-strong: #d8f0ff;
  --success: #8bd4a2;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --page-width: min(1240px, calc(100vw - 2rem));
  --font-display: "Doto", "Space Mono", monospace;
  --font-sans: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", monospace;
  --font-display-weight: 560;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(143, 211, 255, 0.11), transparent 24rem),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 20rem),
    linear-gradient(180deg, #0b0b0c 0%, #070708 100%);
  color: var(--text);
}

a {
  color: inherit;
}

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

.page {
  width: var(--page-width);
  margin: 0 auto;
  padding: 1rem 0 5rem;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #18181c 0%, #0e0e11 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: var(--font-display-weight);
  letter-spacing: 0.08em;
  color: var(--accent);
}

.brand-copy span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-copy strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--font-display-weight);
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.nav a,
.button {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 1rem;
  text-decoration: none;
  color: var(--text-soft);
  background: rgba(17, 17, 20, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.nav a:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: #3a3a43;
  color: var(--text);
}

.button.primary {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #0a0a0c;
}

.button.primary:hover {
  background: white;
  border-color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(22, 22, 25, 0.96) 0%, rgba(15, 15, 18, 0.96) 100%);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 211, 255, 0.22), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: var(--font-display-weight);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.lede {
  margin: 1.2rem 0 0;
  max-width: 40rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.55rem 0.8rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.hero-video {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #050506;
}

.hero-video img,
.hero-video video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.stat {
  padding: 1rem 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
}

.section {
  margin-top: 4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: var(--font-display-weight);
  letter-spacing: 0.06em;
}

.section-head p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 23, 27, 0.95) 0%, rgba(16, 16, 19, 0.98) 100%);
  padding: 1.2rem;
}

.card h3 {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--font-display-weight);
  letter-spacing: 0.06em;
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.card .kicker,
.mono {
  font-family: var(--font-mono);
}

.kicker {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shot {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #050506;
}

.shot img {
  width: 100%;
  height: auto;
}

.shot figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--text-soft);
  background: rgba(12, 12, 14, 0.95);
  border-top: 1px solid var(--border-soft);
  line-height: 1.7;
}

.flow {
  display: grid;
  gap: 1rem;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--border-soft);
}

.flow-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.flow-step strong {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  color: var(--accent);
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer {
  margin-top: 4rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100vw - 1rem, 1240px);
    padding-top: 0.5rem;
  }

  .topbar,
  .section-head {
    display: block;
  }

  .nav {
    margin-top: 0.9rem;
  }

  .hero {
    padding: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }
}
