:root {
  color-scheme: dark;
  --bg: #0b0d0f;
  --bg-soft: #111418;
  --bg-card: #171b20;
  --text: #ffffff;
  --text-muted: #c0c4ca;
  --accent: #ff4400;
  --accent-soft: rgba(255, 68, 0, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1120px;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top right, #1b1f23 0%, #0b0d0f 45%, #07090b 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 50px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

main > section:not(.hero) {
  padding-top: 16px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0a0b0c;
  box-shadow: 0 0 24px rgba(255, 68, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 68, 0, 0.4);
}

.btn.ghost:hover {
  background: var(--accent);
  color: #0a0b0c;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  padding: 72px clamp(24px, 6vw, 80px);
}

.neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: grid;
  gap: 18px;
}

.eyebrow {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 3vw + 1.2rem, 3.6rem);
  line-height: 1.05;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.microtext {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.9rem;
}

.section-header p {
  color: var(--text-muted);
}

.video-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.statement p {
  color: var(--text-muted);
  max-width: 760px;
}

.features,
.bundles,
.how,
.access,
.video,
.statement {
  display: grid;
  gap: 20px;
}

.access {
  margin-top: 32px;
}

.feature-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--text-muted);
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  counter-increment: steps;
  color: var(--text-muted);
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.access-card {
  background: linear-gradient(135deg, rgba(255, 68, 0, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 68, 0, 0.35);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.access-card p {
  color: var(--text-muted);
  max-width: 640px;
}

.brand-mark {
  margin-top: 16px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #080a0c;
  border: 1px solid var(--border);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.brand-mark__image {
  width: min(426px, 80vw);
  height: auto;
  opacity: 0.9;
}

.brand-mark__micro {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .btn.ghost {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .page {
    padding: 22px 18px 40px;
  }

  .hero {
    padding: 56px 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

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