:root {
  --bg: #010814;
  --bg-soft: #041227;
  --surface: #071427;
  --surface-2: #0a1a31;
  --text: #edf2fb;
  --muted: #9db0c8;
  --accent: #2397ff;
  --accent-light: #58beff;
  --neon: rgba(35, 151, 255, 0.35);
  --neon-glow: rgba(35, 151, 255, 0.1);
  --border: rgba(255, 255, 255, 0.11);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  background: radial-gradient(circle at 18% -12%, #10284f 0%, #05142a 34%, #010814 72%, #00060f 100%);
}

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

.container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.top-banner {
  padding: 0.72rem 1rem;
  text-align: center;
  font-size: 0.84rem;
  color: #8fa7c7;
  border-bottom: 1px solid var(--border);
  background: #030d1d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(10px);
  background: rgba(6, 11, 20, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

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

.section {
  padding: 7rem 0;
}

.section--alt {
  background: #041126;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

h1 {
  margin-top: 0.55rem;
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--accent-light);
}

.lead, .section-lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.tension {
  margin-top: 0.95rem;
  color: #a0aec0;
  max-width: 61ch;
  font-size: 1rem;
}

/* ── Buttons — TRW style outlined dark buttons ── */

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.14s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: #0a1628;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(35, 151, 255, 0.16) inset;
}

.btn--primary:hover {
  background: #10233f;
  box-shadow: 0 0 0 1px rgba(35, 151, 255, 0.28) inset, 0 0 14px rgba(35, 151, 255, 0.25);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.cta-center {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}

/* ── Hero ── */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.hero .btn {
  margin-top: 1.4rem;
}

.hero-stage {
  border-radius: var(--radius-lg);
  border: 1px solid var(--neon);
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
  padding: 0.75rem;
  background: var(--surface);
}

.hero-stage__main {
  width: 100%;
  min-height: 400px;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: cover;
  background: #080d18;
  display: block;
}

/* ── Neon Cards ── */

.neon-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--neon);
  background: var(--surface);
  box-shadow: 0 0 20px var(--neon-glow), var(--shadow);
  padding: 1.2rem;
}

.neon-card h3 {
  margin-bottom: 0.4rem;
}

.neon-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.neon-card--accent {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0b1a30, #0d1525);
  box-shadow: 0 0 35px rgba(26, 143, 196, 0.18), var(--shadow);
}

.neon-card--visual {
  text-align: center;
  display: grid;
  place-items: center;
  min-height: 180px;
}

.neon-cards-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Feature Sections ── */

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.neon-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid var(--neon);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 0 25px var(--neon-glow), var(--shadow);
  padding: 2rem;
}

.neon-feature--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

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

.neon-feature--reverse .neon-feature__visual {
  order: 1;
}

.neon-feature__sub {
  margin-top: 0.3rem;
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 600;
}

.neon-feature__text p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.neon-feature__text .btn {
  margin-top: 1.2rem;
}

/* ── Contrast ── */

.contrast-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.contrast-column {
  position: relative;
  min-height: 610px;
  padding: 1.85rem 1.55rem 1.35rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contrast-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #9aa4b4;
  text-align: center;
  margin-top: 3.3rem;
}

.contrast-headline {
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  font-weight: 800;
  margin-top: 0.35rem;
  text-align: center;
  line-height: 1.08;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contrast-column ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  flex: 1;
}

.contrast-column li {
  color: #d5dde8;
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.5;
}

.contrast-column li + li {
  margin-top: 0.62rem;
}

.contrast-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #cfd8e4;
  font-weight: 800;
  font-size: 1.02rem;
}

.contrast-ghost {
  margin-top: 1.2rem;
  opacity: 1;
  align-self: center;
  background: #667381;
  border-color: #667381;
  color: #ffffff;
  box-shadow: none;
}

.contrast-column--accent .btn {
  margin-top: 1.2rem;
  align-self: center;
}

#why .text-center {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
}

#why .contrast-column::before {
  content: "◷";
  position: absolute;
  top: 1.05rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  line-height: 1;
}

#why .contrast-column--accent::before {
  content: "⌁";
  border-color: rgba(35, 151, 255, 0.65);
  color: rgba(88, 190, 255, 0.92);
}

#why .contrast-column {
  background: linear-gradient(180deg, #212327 0%, #1b1e23 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

#why .contrast-column--accent {
  background: linear-gradient(180deg, #10233f 0%, #0c1a30 100%);
  border-color: rgba(35, 151, 255, 0.45);
}

/* ── Video / How It's Made ── */

.video-wrap {
  margin-top: 1rem;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neon);
  box-shadow: 0 0 20px var(--neon-glow), var(--shadow);
}

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

.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-audio-toggle {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(6, 11, 20, 0.8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.38rem 0.72rem;
  cursor: pointer;
}

.video-audio-toggle[aria-pressed="true"] {
  border-color: var(--accent);
  background: rgba(26, 143, 196, 0.25);
}

.build-points {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.build-points span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.63rem;
  color: #a0aec0;
  font-size: 0.79rem;
}

.source-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Media Section ── */

.media-featured {
  margin-top: 1rem;
}

.media-featured .media-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.media-filters {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.42rem 0.78rem;
  cursor: pointer;
}

.filter-btn.is-active {
  color: #fff;
  border-color: var(--accent);
  background: rgba(26, 143, 196, 0.15);
}

.media-grid {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.media-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--neon);
  background: var(--surface);
  box-shadow: 0 0 20px var(--neon-glow), var(--shadow);
  overflow: hidden;
}

.media-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080d18;
}

/* Keep black-on-transparent Futurism logo readable on dark theme cards. */
.media-card[data-media-id="article-futurism"] .media-card__media {
  background: #eef2f7;
}

.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-card__inline-player {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-card__unavailable {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-card__body {
  padding: 0.85rem;
}

.media-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-card h3 {
  margin-top: 0.38rem;
  font-size: 1.03rem;
}

.media-card p {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.media-card a {
  display: inline-block;
  margin-top: 0.63rem;
  color: var(--accent-light);
  font-weight: 600;
}

.media-card__toggle {
  margin-top: 0.63rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.78rem;
  cursor: pointer;
}

.media-card.is-open .media-card__toggle,
.media-card.is-playing .media-card__toggle {
  border-color: var(--accent);
  background: rgba(26, 143, 196, 0.15);
  color: #fff;
}

.media-card__expand {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.media-expand__body {
  padding: 0.85rem;
}

.media-expand__body h4 {
  margin: 0;
  font-size: 0.96rem;
}

.media-expand__body p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-expand__body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  margin-top: 0.55rem;
}

.yt-locked-embed {
  pointer-events: none;
}

.media-expand__body .twitter-tweet {
  margin-top: 0.55rem !important;
  width: 100% !important;
}

.media-expand__note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Offer ── */

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.offer-copy p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.offer-card {
  border: 1px solid var(--neon);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
  padding: 1rem;
}

.offer-label {
  font-size: 0.82rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.offer-price {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  margin-top: 0.3rem;
  margin-bottom: 0.9rem;
  font-weight: 800;
}

.offer-note {
  margin-top: 0.64rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── FAQ — white rows + right chevron like TRW ── */

.faq {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.74rem;
}

.faq details {
  border-radius: 22px;
  border: 1px solid #e8edf6;
  background: #f2f4f8;
  color: #0d1525;
  padding: 0.86rem 1.2rem;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-weight: 700;
  color: #0d1525;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "⌄";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-56%);
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-46%) rotate(180deg);
}

.faq p {
  margin-top: 0.45rem;
  color: #3a4556;
}

/* ── Final Close ── */

.final-close__inner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--neon);
  background: var(--surface);
  padding: 1.4rem;
  box-shadow: 0 0 35px var(--neon-glow), var(--shadow);
  text-align: center;
}

.final-close__inner p {
  margin-top: 0.64rem;
  margin-bottom: 0.85rem;
  color: #a0aec0;
}

/* ── Founders ── */

.founder-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.founder-card {
  border: 1px solid var(--neon);
  box-shadow: 0 0 20px var(--neon-glow), var(--shadow);
}

.founder-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: #080d18;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.founder-card .role {
  margin-top: 0.2rem;
  color: var(--accent-light);
  font-weight: 600;
}

.founder-card p {
  margin-top: 0.5rem;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--border);
  background: #030710;
}

.footer {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer div {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  border-radius: 999px;
  padding: 0.82rem 1.14rem;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: #0a1628;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(35, 151, 255, 0.18) inset, 0 0 12px rgba(35, 151, 255, 0.24);
}

/* ── Product Page ── */

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.product-hero__actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.product-hero__media {
  border: 1px solid var(--neon);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 25px var(--neon-glow), var(--shadow);
  background: #080d18;
}

.product-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.product-video-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 0;
}

.locked-video {
  pointer-events: none;
}

.locked-embed {
  pointer-events: none;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.payment-proof img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

/* ── Square Embed ── */

.square-embed-section {
  margin-top: 2rem;
  border: 1px solid var(--neon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
}

.square-embed-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.square-embed-bar p {
  color: var(--accent-light);
  font-size: 0.88rem;
  font-weight: 600;
}

.square-embed-bar .note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.square-embed-frame {
  width: 100%;
  min-height: 700px;
  border: 0;
  background: #fff;
  display: block;
}

.afterpay-callout {
  margin-top: 1rem;
  border: 1px solid var(--neon);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #0a1a31, #071427);
  box-shadow: 0 0 24px var(--neon-glow), var(--shadow);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.afterpay-callout__logo {
  width: 220px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.afterpay-callout p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

/* ── Age Gate ── */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(3, 7, 16, 0.94);
  padding: 1rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  width: min(560px, 100%);
  border: 1px solid var(--neon);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: 0 0 25px var(--neon-glow), var(--shadow);
}

.age-gate__card h2 {
  margin-top: 0.45rem;
}

.age-gate__card p {
  margin-top: 0.68rem;
  color: var(--muted);
}

.age-gate__actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

ul, ol {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.45rem;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--neon);
  background: var(--surface);
  box-shadow: 0 0 20px var(--neon-glow), var(--shadow);
  padding: 0.92rem;
}

.card p {
  margin-top: 0.46rem;
  color: var(--muted);
}

/* ── Responsive ── */

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

@media (max-width: 920px) {
  .section {
    padding: 4.3rem 0;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .contrast-grid,
  .founder-grid,
  .offer-grid,
  .product-hero__grid,
  .payment-grid,
  .media-featured .media-card,
  .media-grid,
  .neon-cards-row,
  .neon-feature,
  .neon-feature--reverse {
    grid-template-columns: 1fr;
  }

  .neon-feature--reverse .neon-feature__text {
    order: 1;
  }

  .neon-feature--reverse .neon-feature__visual {
    order: 2;
  }

  .sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    text-align: center;
    bottom: calc(0.5rem + env(safe-area-inset-bottom));
  }
}

/* ── Layout + Theme Refresh (TRW-style structure) ── */

:root {
  --bg: #080f16;
  --bg-soft: #080f16;
  --surface: #161f27;
  --surface-2: #161f27;
  --text: #ffffff;
  --muted: #c7c1ba;
  --accent: #2d98ff;
  --accent-light: #2d98ff;
  --neon: rgba(199, 193, 186, 0.24);
  --neon-glow: rgba(0, 0, 0, 0.28);
  --border: rgba(199, 193, 186, 0.25);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #080f16;
}

.section,
.section--alt {
  background: var(--bg);
  border-color: rgba(199, 193, 186, 0.15);
}

.top-banner {
  background: #050c14;
  color: #c7c1ba;
  border-bottom: 1px solid rgba(45, 152, 255, 0.14);
}

.site-header {
  background: linear-gradient(180deg, #07101a 0%, #040b13 58%, #020912 100%);
  border-bottom: 1px solid rgba(45, 152, 255, 0.14);
  backdrop-filter: none;
}

.logo,
.nav-links a {
  color: #ffffff;
}

.nav-links {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links a {
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #2d98ff;
}

.hero-stage,
.neon-card,
.neon-feature,
.media-card,
.final-close__inner,
.square-embed-section,
.afterpay-callout,
.founder-card,
.video-wrap,
.age-gate__card {
  background: #161f27;
  border-color: rgba(199, 193, 186, 0.2);
  box-shadow: var(--shadow);
}

.hero-stage__main {
  background: #0f1720;
  border-color: rgba(199, 193, 186, 0.18);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.split-section--reverse .split-section__copy {
  order: 2;
}

.split-section--reverse .split-section__media {
  order: 1;
}

.split-section__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(199, 193, 186, 0.2);
  background: #161f27;
  box-shadow: var(--shadow);
}

.split-section__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

#what .text-center {
  text-align: left;
}

#what .section-lead.centered,
#what .cta-center {
  margin-left: 0;
  margin-right: 0;
}

.feature-fill-image,
.feature-fill-video,
.feature-fill-iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(199, 193, 186, 0.2);
  margin-bottom: 0.85rem;
  background: #0f1720;
}

.feature-fill-image,
.feature-fill-video {
  object-fit: cover;
}

.feature-fill-iframe {
  border: 0;
}

.neon-card--visual {
  display: block;
  text-align: left;
  min-height: 0;
}

.neon-feature,
.hero-grid {
  grid-template-columns: 1fr 1fr;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(45, 152, 255, 0.34), rgba(18, 70, 132, 0.38));
  border: 2px solid #2d98ff;
  box-shadow: 0 0 0 1px rgba(45, 152, 255, 0.2) inset, 0 8px 20px rgba(20, 77, 143, 0.25);
  letter-spacing: 0.01em;
  padding: 0.74rem 1.65rem;
}

.btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(58, 166, 255, 0.5), rgba(27, 95, 176, 0.48));
  border-color: #2d98ff;
  box-shadow: 0 0 0 1px rgba(45, 152, 255, 0.32) inset, 0 12px 28px rgba(19, 88, 166, 0.33);
}

.btn--ghost {
  background: transparent;
  color: #c7c1ba;
  border-color: rgba(199, 193, 186, 0.25);
}

.btn--ghost:hover {
  color: #ffffff;
  border-color: #2d98ff;
}

#why .contrast-column,
#why .contrast-column--accent {
  background: #161f27;
  border-color: rgba(199, 193, 186, 0.2);
}

#why .contrast-column::before {
  border-color: rgba(199, 193, 186, 0.3);
  color: rgba(199, 193, 186, 0.7);
}

#why .contrast-column--accent::before {
  border-color: rgba(45, 152, 255, 0.5);
  color: rgba(45, 152, 255, 0.9);
}

.contrast-column li,
.faq p {
  color: #c7c1ba;
}

.faq details {
  border-color: rgba(199, 193, 186, 0.2);
  background: #161f27;
  color: #ffffff;
}

.faq summary {
  color: #ffffff;
}

.site-footer {
  background: #080f16;
  border-top: 1px solid rgba(199, 193, 186, 0.16);
}

.footer {
  color: #c7c1ba;
}

.sticky-cta {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(45, 152, 255, 0.34), rgba(18, 70, 132, 0.38));
  border: 2px solid #2d98ff;
  box-shadow: 0 0 0 1px rgba(45, 152, 255, 0.2) inset, 0 8px 20px rgba(20, 77, 143, 0.25);
}

@media (max-width: 920px) {
  .split-section,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-section__copy {
    order: 1;
  }

  .split-section--reverse .split-section__media {
    order: 2;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-contact-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.4rem;
}

.legal-card h1 {
  margin-bottom: 0.6rem;
}

.legal-card h2 {
  margin-top: 1.15rem;
  font-size: 1.1rem;
}

.legal-card p {
  margin-top: 0.52rem;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 193, 186, 0.25);
  border-radius: 10px;
  background: rgba(8, 15, 22, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

@media (max-width: 920px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header .nav {
    position: relative;
  }

  .site-header .nav > .btn.btn--primary {
    display: none;
  }

  .site-header .nav-links {
    display: none;
  }

  .site-header.is-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid rgba(45, 152, 255, 0.25);
    border-radius: 12px;
    background: #08131f;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  }

  .site-header.is-mobile-open .nav-links a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
  }

  .site-header.is-mobile-open .nav-links a:hover {
    background: rgba(45, 152, 255, 0.14);
  }
}

/* Keep feature visuals readable on compressed/mobile layouts. */
@media (max-width: 1100px) {
  .neon-feature,
  .neon-feature--reverse {
    grid-template-columns: 1fr;
  }

  .neon-feature--reverse .neon-feature__text {
    order: 1;
  }

  .neon-feature--reverse .neon-feature__visual {
    order: 2;
  }
}
