:root {
  /* Brand palette - pulled from the HypeDrive apps */
  --bg: #0c1020;
  --bg-2: #0f1424;
  --panel: #151c33;
  --panel-2: #1b2342;
  --border: #283255;
  --text: #eaf0ff;
  --muted: #9aa6c4;
  --muted-2: #6f7ba0;

  --purple: #8d6dff;
  --purple-bright: #a98bff;
  --indigo: #667eea;
  --violet: #764ba2;
  --gold: #ffc24b;
  --green: #4caf50;

  --grad: linear-gradient(135deg, #8d6dff 0%, #667eea 50%, #5bc8ff 100%);
  --grad-warm: linear-gradient(135deg, #ffd86b 0%, #ffb347 100%);

  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background ambience */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(141, 109, 255, 0.22), transparent 60%),
    radial-gradient(700px 500px at 0% 10%, rgba(102, 126, 234, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 220px);
  place-content: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.not-found h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 600px;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.not-found .hero__actions {
  justify-content: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: #0b0f1e;
  box-shadow: 0 10px 30px -8px rgba(141, 109, 255, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(141, 109, 255, 0.75);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.brand__logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 12px rgba(141, 109, 255, 0.5));
}

.brand__name {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand__name span {
  color: var(--purple-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  transition: color 0.15s ease;
}

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

.nav__cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(141, 109, 255, 0.14);
  border: 1px solid rgba(141, 109, 255, 0.35);
  color: var(--purple-bright) !important;
}

.nav__cta:hover {
  background: rgba(141, 109, 255, 0.24);
}

.site-header__actions,
.nav-toggle,
.nav__cta--mobile {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

/* Decorative hero backdrop glow - absolutely positioned so it does NOT
   consume a grid cell. */
.hero__glow {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 520px;
  max-width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 109, 255, 0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner,
.hero__art {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(141, 109, 255, 0.12);
  border: 1px solid rgba(141, 109, 255, 0.3);
  color: var(--purple-bright);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
}

.hero__sub {
  margin: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38ch;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

/* Hero art */
.hero__art {
  display: flex;
  justify-content: center;
}

.bot-card {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 35%, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.bot-card__bot {
  width: 52%;
  filter: drop-shadow(0 12px 30px rgba(141, 109, 255, 0.55));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.bot-card__beam {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(141, 109, 255, 0.35);
  animation: ping 3s ease-out infinite;
}

.beam-1 {
  width: 60%;
  height: 60%;
}

.beam-2 {
  width: 85%;
  height: 85%;
  animation-delay: 1.2s;
}

@keyframes ping {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.bot-card__pop {
  position: absolute;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  background: var(--grad-warm);
  color: #2a1d00;
  box-shadow: 0 8px 20px -6px rgba(255, 178, 71, 0.6);
  animation: pop 4s ease-in-out infinite;
}

.pop-1 {
  top: 12%;
  right: -6%;
}

.pop-2 {
  bottom: 16%;
  left: -8%;
  background: var(--grad);
  color: #0b0f1e;
  animation-delay: 1.3s;
}

.pop-3 {
  bottom: 6%;
  right: 6%;
  animation-delay: 2.4s;
}

@keyframes pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    opacity: 1;
  }
}

/* Outcomes chain (retention → engagement → Bits) */
.outcomes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.outcome {
  flex: 1 1 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.outcome:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 109, 255, 0.5);
}

.outcome__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.outcome h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.outcome p {
  color: var(--muted);
  margin: 0;
}

.outcome__arrow {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-bright);
  flex: 0 0 auto;
}

/* ===== Feature rows ===== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
}

.feature + .feature {
  margin-top: 4.5rem;
}

.feature--reverse .feature__text {
  order: 2;
}

.feature__tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(141, 109, 255, 0.12);
  border: 1px solid rgba(141, 109, 255, 0.3);
  color: var(--purple-bright);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature__text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.feature__text > p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem 0 1.25rem;
}

.feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.feature__list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
}

.feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--grad);
}

.feature__media {
  margin: 0;
}

.feature__media figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* Real screenshot frames (overlay shots on a stream-like backdrop) */
.shot {
  border-radius: var(--radius);
  border: 1px solid rgba(141, 109, 255, 0.28);
  background: radial-gradient(circle at 50% 20%, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  padding: 1.25rem;
  overflow: hidden;
}

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

/* Crossfade slideshow (Live Scoreboard) */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 626;
}

.slideshow__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow__frame.is-active {
  opacity: 1;
}

.shot--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot--center img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
}

/* Desktop-app screenshots (Stream Manager, Monetization, login) */
.shot--app {
  position: relative;
}

.shot--app img {
  border-radius: 10px;
}

/* Attention ring over the Approve / Reject moderation control */
.shot__highlight {
  position: absolute;
  left: 11%;
  bottom: 4%;
  width: 30%;
  height: 16%;
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(255, 194, 75, 0.18);
  pointer-events: none;
}

.shot__highlight-label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1205;
  background: var(--gold);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

/* "Coming soon" teaser card (for features not yet shipped) */
.coming-soon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  aspect-ratio: 16 / 10;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(141, 109, 255, 0.28);
  background: radial-gradient(circle at 50% 25%, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(141, 109, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.coming-soon__bot {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(141, 109, 255, 0.45));
}

.coming-soon__badge {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--purple-bright), var(--indigo, #667eea));
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.coming-soon__desc {
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Image placeholders (swap for real screenshots later) */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px dashed rgba(141, 109, 255, 0.45);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(141, 109, 255, 0.05),
      rgba(141, 109, 255, 0.05) 12px,
      transparent 12px,
      transparent 24px
    ),
    radial-gradient(circle at 50% 30%, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}

.placeholder--wide {
  aspect-ratio: 16 / 10;
}

.placeholder__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.placeholder__label {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--purple-bright);
}

.placeholder__desc {
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Sections ===== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section--tight {
  padding: 2.5rem 1.5rem;
}

.section--tight .section__head {
  margin-bottom: 2rem;
}

.section--alt {
  background: linear-gradient(180deg, rgba(21, 28, 51, 0.5), transparent);
  max-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
}

.section__head p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1rem 0 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 109, 255, 0.5);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: rgba(141, 109, 255, 0.12);
  border: 1px solid rgba(141, 109, 255, 0.3);
  margin-bottom: 1.1rem;
}

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

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

/* Steps */
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
}

.step__num {
  position: absolute;
  top: -22px;
  left: 1.75rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0b0f1e;
  background: var(--grad);
  box-shadow: 0 8px 20px -6px rgba(141, 109, 255, 0.7);
}

.step h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.5rem;
}

.step p {
  color: var(--muted);
  margin: 0;
}

/* ===== CTA ===== */
.cta {
  padding: 5rem 1.5rem 6rem;
}

.cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}

.cta__bot {
  width: 64px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 20px rgba(141, 109, 255, 0.6));
  animation: float 4s ease-in-out infinite;
}

.cta__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}

.cta__inner p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1rem auto 2rem;
  max-width: 44ch;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.early-adaptor {
  min-height: calc(100vh - 88px);
}

.early-adaptor__intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem 1rem;
  text-align: center;
}

.early-adaptor__intro h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
}

.early-adaptor__intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.early-adaptor__offer {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  background: rgba(255, 194, 75, 0.1);
  border: 1px solid rgba(255, 194, 75, 0.4);
  border-radius: 999px;
}

.early-adaptor__offer strong {
  color: var(--gold);
}

.early-adaptor__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.early-adaptor__steps div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.early-adaptor__steps strong {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #0b0f1e;
  background: var(--grad);
}

.early-adaptor__steps span {
  color: var(--text);
  font-weight: 600;
}

.early-adaptor__form-section {
  padding-top: 2rem;
}

@media (max-width: 700px) {
  .early-adaptor__intro {
    padding-top: 3rem;
  }

  .early-adaptor__steps {
    grid-template-columns: 1fr;
  }

  .early-adaptor__offer {
    align-items: flex-start;
    flex-direction: column;
    border-radius: var(--radius);
    text-align: left;
  }
}

.cta__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cta__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.cta__form input,
.cta__form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.cta__form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.cta__form button[type='submit'] {
  margin-top: 0.25rem;
}
.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: var(--muted-2);
}
.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(141, 109, 255, 0.25);
}

.cta__note {
  margin: 1.1rem 0 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}

.cta__note--ok {
  color: var(--green);
}

/* ===== Footer ===== */
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.site-footer__brand .brand__logo {
  width: 30px;
  height: 30px;
}

.site-footer__copy {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin: 0;
  max-width: 46ch;
}

.site-footer__powered {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-bright);
}

/* ===== Supported games ===== */
.games {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 0%, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}

.game--live {
  border-color: rgba(255, 194, 75, 0.5);
}

.game__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.game__name {
  margin: 0;
  font-size: 1.05rem;
}

.game__status {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.game__status--live {
  color: #0b0f1e;
  background: var(--gold);
  border-color: transparent;
}

.game__status--planned {
  opacity: 0.7;
  border-style: dashed;
}

/* "Request a game" inline form under the roadmap */
.game-request {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  text-align: center;
}
.game-request__label {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1rem;
}
.game-request__row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.game-request__row input {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.game-request__row input::placeholder {
  color: var(--muted-2);
}
.game-request__row input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(141, 109, 255, 0.25);
}
.game-request__note {
  margin: 0.9rem 0 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--muted-2);
}
.game-request__note.cta__note--ok {
  color: var(--green);
}
.game-request__note.cta__note--err {
  color: var(--red, #ff6b6b);
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.5rem;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions,
  .hero__badges {
    justify-content: center;
  }
  .hero__art {
    order: -1;
    margin-bottom: 1rem;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .games {
    grid-template-columns: 1fr 1fr;
  }
  .outcomes {
    flex-direction: column;
  }
  .outcome__arrow {
    justify-content: center;
    transform: rotate(90deg);
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature--reverse .feature__text {
    order: 0;
  }
  .step__num {
    left: 50%;
    transform: translateX(-50%);
  }
  .step {
    text-align: center;
    padding-top: 2.25rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .brand__name {
    display: none;
  }
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }
  .nav__cta--mobile {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 1rem;
    right: 1rem;
    display: none;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 20, 36, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .nav a {
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
  }
  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }
  .nav .nav__cta {
    display: none;
  }
  .cards,
  .steps,
  .games {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Legal pages (privacy, terms) ===== */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal__updated {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin: 0 0 2.5rem;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 1rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal li {
  margin: 0.35rem 0;
}

.legal a {
  color: var(--purple-bright);
  text-decoration: underline;
}

.legal__back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

/* ===== Blog ===== */
.blog {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.blog__eyebrow {
  color: var(--purple-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.blog h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.blog__meta {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin: 0 0 2rem;
}

.blog__intro {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
}

/* Listing cards */
.blog-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.blog-card + .blog-card {
  margin-top: 1.5rem;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.blog-card__body h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.blog-card__body p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 0.75rem;
}

.blog-card__more {
  color: var(--purple-bright);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Post body */
.post h2 {
  font-size: 1.45rem;
  margin: 2.5rem 0 0.75rem;
}

.post p,
.post li {
  color: var(--muted);
  font-size: 1.02rem;
}

.post ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.post li {
  margin: 0.35rem 0;
}

.post strong {
  color: var(--text);
}

.post a {
  color: var(--purple-bright);
  text-decoration: underline;
}

.post .btn {
  text-decoration: none;
}

.post .btn--primary {
  color: #0b0f1e;
}

.post__img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.post__tldr {
  background: var(--panel);
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
}

.post__tldr h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--purple-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post__tldr p {
  margin: 0;
}

.post__cta {
  text-align: center;
  margin-top: 3rem;
}

.post__quote {
  margin: 2rem 0;
  padding: 1.1rem 1.35rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 194, 75, 0.08);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.post__steps {
  padding-left: 1.4rem;
}

.post__steps li {
  margin: 0.75rem 0;
}

.post__sources {
  margin-top: 3rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.post__sources li {
  margin: 0.6rem 0;
  font-size: 0.92rem;
}

/* ===== Pricing ===== */
.pricing-beta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-beta p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.pricing-beta a {
  color: var(--gold);
  text-decoration: underline;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.plan--featured {
  border-color: var(--purple);
  box-shadow: 0 20px 60px -30px rgba(141, 109, 255, 0.6);
}

.plan__tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(141, 109, 255, 0.12);
  border: 1px solid rgba(141, 109, 255, 0.4);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.plan__tag--gold {
  color: var(--gold);
  background: rgba(255, 194, 75, 0.1);
  border-color: rgba(255, 194, 75, 0.4);
}

.plan h2 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.plan__price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 0.15rem;
}

.plan__price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.plan__price-alt {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.plan__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plan__list li.plan__no {
  color: var(--muted-2);
}

.plan__list li.plan__no::before {
  content: '—';
  color: var(--muted-2);
}

.plan .btn {
  width: 100%;
}

.pricing-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.roadstep {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.roadstep__when {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin: 0 0 0.4rem;
}

.roadstep--now {
  border-color: var(--green);
}

.roadstep--now .roadstep__when {
  color: var(--green);
}

.roadstep h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.roadstep p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .pricing-grid,
  .pricing-roadmap {
    grid-template-columns: 1fr;
  }
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  margin-top: 0.5rem;
}

.site-footer__legal a {
  color: var(--muted-2);
  font-size: 0.85rem;
  text-decoration: none;
}

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