/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss ***!
  \************************************************************************************************************/
@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   SPACEHILLS REVIEW — Editorial system
   Hand-crafted styles. No template look.
   ============================================================ */
/* ---------- Fonts (self-hosted, brand) ---------------------- */
@font-face {
  font-family: "Circular Std";
  src: url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Book.woff2) format("woff2"), url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Book.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std";
  src: url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Light.woff2) format("woff2"), url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Light.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std";
  src: url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Bold.woff2) format("woff2"), url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circular Std";
  src: url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Black.woff2) format("woff2"), url(/wp-content/themes/spacehills/dist/fonts/CircularStd-Black.otf) format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ---------- Tokens ----------------------------------------- */
:root {
  /* Brand palette (Spacehills) */
  --ink: #00082A; /* page canvas */
  --ink-2: #050d33; /* one step up */
  --ink-3: #0a153f; /* two steps up — surfaces */
  --ink-4: #11225c; /* hairline tint */
  --paper: #ffffff;
  --paper-mute: #e6e8f2;
  --paper-soft: #bdc1d6;
  --paper-dim: #8085a0;
  --paper-faint:#5b6080;
  --cyan: #16FFF5;
  --cyan-deep: #0fc7c0;
  --purple: #3A25B0;
  --purple-up: #5438d6;
  --purple-deep:#281979;
  --rule: rgba(255,255,255,0.08);
  --rule-strong:rgba(255,255,255,0.16);
  --container: 1180px;
  --container-sm: 720px; /* prose measure */
  --container-md: 860px;
  --font: 'Circular Std', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper-mute);
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* Subtle scroll */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--ink-4);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #1c2e7a;
}

/* Selection */
::selection {
  background: var(--cyan);
  color: var(--ink);
}

/* ---------- Layout ----------------------------------------- */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  padding-top: 72px;
}

.container,
.container-sm,
.container-md {
  margin: 0 auto;
  padding: 0 24px;
}

.container {
  max-width: var(--container);
}

.container-sm {
  max-width: var(--container-sm);
}

.container-md {
  max-width: var(--container-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 8, 42, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — clean wordmark, no gradient text */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0; /* drop the rounded chip */
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

/* Kill the gradient on .grad — keep the markup, restyle */
.logo-title .grad {
  background: none;
  -webkit-text-fill-color: var(--paper);
  color: var(--paper);
}

.logo-sub {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: inline-flex;
  }
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--paper-soft);
  background: none;
  border: 0;
  letter-spacing: 0;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--paper);
  background: none;
}

.nav-link.active {
  color: var(--paper);
  background: none;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--cyan);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Pill CTA — cyan */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--cyan);
  border: 0;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-gold:hover {
  background: #4cfff8;
  transform: translateY(-1px);
}

.btn-gold.hide-sm {
  display: none;
}

@media (min-width: 640px) {
  .btn-gold.hide-sm {
    display: inline-flex;
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--purple-up);
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: var(--paper-soft);
  padding: 6px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:hover {
  color: var(--paper);
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle-input:checked ~ .header-inner .menu-toggle .icon-menu {
  display: none;
}

.menu-toggle-input:checked ~ .header-inner .menu-toggle .icon-close {
  display: inline-block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px 20px;
  background: var(--ink);
  border-top: 1px solid var(--rule);
}

.menu-toggle-input:checked ~ .mobile-nav {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav .nav-link {
  padding: 12px 4px;
  border-bottom: 1px solid var(--rule);
}

.mobile-nav .nav-link.active::after {
  display: none;
}

/* ============================================================
   HERO — editorial, no fake stars, no random gradient blobs
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}

/* Kill the AI decorations — but keep the divs so markup stays untouched */
.hero-bg,
.hero-stars,
.hero-blob-gold,
.hero-blob-cyan {
  display: none !important;
}

/* Replace with one quiet, hand-drawn radial that hints at depth */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 720px;
  height: 720px;
  background: radial-gradient(closest-side, rgba(58, 37, 176, 0.32), rgba(58, 37, 176, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 8, 42, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 24px 96px;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 120px 24px 132px;
  }
}
/* Breadcrumbs — slim, editorial */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 32px;
}

.breadcrumbs a {
  color: var(--paper-dim);
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs .current {
  color: var(--paper-soft);
}

.breadcrumbs .sep {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transform: translateY(-3px);
}

/* Eyebrow — kill the bordered cyan pill, use a tracked-out tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
}

/* Hide eyebrow when breadcrumbs are present — avoids duplicate label */
.hero:has(.breadcrumbs) .eyebrow {
  display: none;
}

/* Hero title — Circular Black, big, tight */
.hero-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 68px;
  }
}
.hero-intro {
  margin: 28px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper-soft);
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-intro {
    font-size: 18px;
  }
}
/* Hero layout on homepage (with mascot) */
.hero-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
  }
}
.hero-mascot {
  position: relative;
  max-width: 340px;
  width: 100%;
  justify-self: center;
  filter: drop-shadow(0 28px 60px rgba(22, 255, 245, 0.16));
  /* drop the float animation — it screams template */
  animation: none;
}

@keyframes float {
  from {
    transform: none;
  }
  to {
    transform: none;
  }
}
/* ============================================================
   QUICK STATS — typographic, no icons
   ============================================================ */
.quick-stats {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: -56px auto 0;
  padding: 0 24px;
}

.stat-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  position: relative;
  padding: 28px 24px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 768px) {
  .stat {
    border-bottom: 0;
  }
  .stat:nth-child(2n) {
    border-right: 1px solid var(--rule);
  }
  .stat:last-child {
    border-right: 0;
  }
}
/* Hide the AI Lucide icons */
.stat-icon {
  display: none !important;
}

.stat-value {
  display: block;
  font-family: var(--font);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 26px;
  }
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

/* ============================================================
   PROMO BANNER — confident, magazine-pull, less Bolt
   ============================================================ */
.promo-banner {
  max-width: var(--container);
  margin: 88px auto 0;
  padding: 0 24px;
}

.promo-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 32px;
  background: var(--cyan);
  color: var(--purple-deep);
  border-radius: 0; /* flat, editorial */
  box-shadow: none;
  overflow: hidden;
}

@media (min-width: 760px) {
  .promo-banner-inner {
    grid-template-columns: 1.25fr 1fr;
    padding: 56px 64px;
  }
}
/* Crosshatch hint behind the banner — adds craft */
.promo-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(40, 25, 121, 0.08) 1px, transparent 1px), linear-gradient(45deg, rgba(40, 25, 121, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.6;
}

.promo-eyebrow {
  position: relative;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-deep);
}

.promo-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--purple-deep);
  vertical-align: middle;
  margin-right: 10px;
}

.promo-headline {
  position: relative;
  margin: 0 0 28px;
  font-family: var(--font);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--purple-deep);
  text-wrap: balance;
}

@media (min-width: 760px) {
  .promo-headline {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .promo-headline {
    font-size: 56px;
  }
}
.promo-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 700;
  background: var(--purple-deep);
  color: var(--paper);
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.promo-cta:hover {
  background: var(--purple);
  transform: translateY(-1px);
}

.promo-cta::after {
  content: "→";
  font-weight: 900;
}

.promo-banner-mascot {
  position: relative;
  justify-self: center;
  max-width: 280px;
  width: 100%;
}

/* ============================================================
   PROSE — editorial article with numbered sections
   ============================================================ */
.prose {
  counter-reset: section;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 88px 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--paper-mute);
}

@media (min-width: 768px) {
  .prose {
    padding: 112px 24px;
    font-size: 18px;
    line-height: 1.75;
  }
}
.prose > p:first-of-type {
  font-size: 1.15em;
  color: var(--paper);
  font-weight: 400;
  line-height: 1.55;
}

.prose h2 {
  position: relative;
  font-family: var(--font);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 88px 0 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  text-wrap: balance;
}

@media (min-width: 768px) {
  .prose h2 {
    font-size: 34px;
    margin: 96px 0 28px;
  }
}
.prose h2::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--cyan);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h2:first-child::before {
  margin-bottom: 18px;
}

.prose h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--paper);
  margin: 40px 0 14px;
}

.prose p {
  margin: 0 0 22px;
  text-wrap: pretty;
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--cyan);
}

.prose a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}

.prose a:hover {
  color: var(--cyan);
}

.prose strong {
  color: var(--paper);
  font-weight: 700;
}

/* ============================================================
   TABLE — typographic ledger, no template tinting
   ============================================================ */
.info-table {
  margin: 36px 0 44px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  overflow: visible;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.info-table thead tr {
  background: transparent;
  border-bottom: 1px solid var(--rule);
}

.info-table thead th {
  padding: 14px 0;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.info-table tbody tr {
  border-bottom: 1px solid var(--rule);
}

.info-table tbody tr:last-child {
  border-bottom: 0;
}

.info-table td {
  padding: 16px 16px 16px 0;
  vertical-align: top;
  line-height: 1.5;
}

.info-table td:first-child {
  color: var(--paper);
  font-weight: 700;
  width: 42%;
  padding-right: 24px;
}

.info-table td:last-child {
  color: var(--paper-soft);
  padding-right: 0;
}

/* ============================================================
   CALLOUTS — replace tinted AI boxes with editorial left-rule
   ============================================================ */
.callout {
  position: relative;
  margin: 40px 0;
  padding: 4px 0 4px 24px;
  background: transparent !important;
  border: 0 !important;
  border-left: 2px solid var(--cyan) !important;
  border-radius: 0;
}

.callout-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}

.callout-gold {
  border-left-color: var(--purple-up) !important;
}

.callout-gold .callout-title {
  color: var(--purple-up);
}

.callout-cyan {
  border-left-color: var(--cyan) !important;
}

.callout-cyan .callout-title {
  color: var(--cyan);
}

.callout-red {
  border-left-color: #ff7a7a !important;
}

.callout-red .callout-title {
  color: #ff7a7a;
}

.callout-slate {
  border-left-color: var(--paper-dim) !important;
}

.callout-slate .callout-title {
  color: var(--paper-soft);
}

.callout p {
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--paper-soft);
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout strong {
  color: var(--paper);
}

/* TOC-style callout (the "On this page" lists inside callouts) */
.callout ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.callout ul li {
  padding: 0;
  margin: 0;
}

.callout ul li::before {
  display: none;
}

.callout ul li a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  border: 0;
}

.callout ul li a::before {
  content: "→";
  color: var(--cyan);
  font-weight: 700;
}

.callout ul li a:hover {
  color: var(--cyan);
}

/* ============================================================
   LINK CARDS / "Continue reading"
   Editorial index — numbered, flat
   ============================================================ */
.internal-links {
  border-top: 1px solid var(--rule);
  background: var(--ink);
  padding: 96px 0;
}

.internal-links-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.internal-links h3 {
  margin: 0 0 40px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.link-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  counter-reset: linkcard;
}

@media (min-width: 720px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.link-card {
  counter-increment: linkcard;
  position: relative;
  display: block;
  padding: 28px 24px 28px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  color: var(--paper);
  transition: background 0.15s ease;
}

/* index number prefix */
.link-card::before {
  content: counter(linkcard, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--cyan);
}

.link-card:hover {
  background: transparent;
  color: var(--paper);
}

.link-card:hover .link-card-label {
  color: var(--cyan);
}

.link-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 8px;
}

.link-card-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--paper);
  transition: color 0.15s ease;
}

/* drop the lucide arrow — the card itself is the affordance */
.link-card-arrow {
  display: none !important;
}

.link-card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-soft);
  max-width: 36ch;
}

/* When link cards are used in-prose (games page categories) — keep flatter */
.prose .link-grid {
  gap: 0;
  margin: 28px 0 36px;
}

.prose .link-card {
  cursor: default;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.prose .link-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.prose .link-card:hover .link-card-label {
  color: var(--paper);
}

.prose .link-card .link-card-label {
  font-size: 18px;
}

.prose .link-card .link-card-desc {
  font-size: 16px;
  color: var(--paper-mute);
}

/* When in-prose link cards ARE actual links (responsible-gaming external orgs) */
.prose a.link-card {
  cursor: pointer;
}

.prose a.link-card:hover .link-card-label {
  color: var(--cyan);
}

/* ============================================================
   FAQ — clean accordion, no jelly pill toggle
   ============================================================ */
.faq-section {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 88px 24px;
}

.faq-group {
  margin-bottom: 64px;
}

.faq-group h2 {
  position: relative;
  font-family: var(--font);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-strong);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: background 0.15s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: var(--rule-strong);
}

.faq-item[open] {
  background: transparent;
  border-color: var(--rule-strong);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--paper);
}

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

.faq-q-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--paper);
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.15s ease;
  margin-top: 2px;
}

.faq-item[open] .faq-toggle {
  background: transparent;
  transform: rotate(45deg);
}

.faq-toggle .icon-minus {
  display: none;
}

.faq-item[open] .faq-toggle .icon-plus {
  display: inline;
}

.faq-item[open] .faq-toggle .icon-minus {
  display: none;
}

.faq-answer {
  padding: 0 0 28px;
  border-top: 0;
  color: var(--paper-soft);
  font-size: 16px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 96px;
  background: var(--ink);
  border-top: 1px solid var(--rule);
}

.footer-main {
  padding: 64px 24px 32px;
}

.footer-main-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 48px 32px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-brand {
  grid-column: auto;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-row .logo-mark {
  width: 32px;
  height: 32px;
}

.footer-brand-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

/* Drop the gradient on footer brand title too */
.footer-brand-title .grad {
  background: none;
  -webkit-text-fill-color: var(--paper);
  color: var(--paper);
}

.footer-brand-sub {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--rule-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.footer-about {
  margin: 0 0 18px;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--paper-soft);
}

.footer-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--paper-dim);
}

.footer-disclosure svg {
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 15px;
  color: var(--paper-mute);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 32px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--rule);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-soft);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-badge:hover {
  border-color: var(--cyan);
  color: var(--paper);
}

.footer-badge .age {
  display: inline-block;
  padding: 2px 6px;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.7;
  color: var(--paper-dim);
  margin: 0 0 24px;
  max-width: 90ch;
}

.footer-legal p {
  margin: 0 0 10px;
}

.footer-legal a {
  color: var(--paper-soft);
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
}

.footer-legal a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}
.footer-bottom p {
  margin: 0;
}

/* Newsletter (kept for compat) */
.footer-newsletter {
  border-bottom: 1px solid var(--rule);
  padding: 48px 24px;
}

.footer-newsletter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-newsletter-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-newsletter h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--paper);
  margin: 0 0 4px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--paper-dim);
  margin: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=app.eaca4091.css.map*/