:root {
  --deep: #080c15;
  --deep-mid: #0d1322;
  --deep-card: #111827;
  --deep-surface: rgba(17, 24, 39, 0.75);
  --text: #e2e8f0;
  --text-muted: #8896ab;
  --text-dim: #5a6577;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 255, 255, 0.1);
  --gold: #38bdf8;
  --gold-soft: #7dd3fc;
  --gold-dim: rgba(56, 189, 248, 0.12);
  --ice: #5cc8ff;
  --ice-dim: rgba(92, 200, 255, 0.12);
  --violet: #a78bfa;
  --rose: #fb7185;
  --mint: #34d399;
  --danger: #ef4444;
  --glow-gold: 0 0 40px rgba(56, 189, 248, 0.2);
  --glow-ice: 0 0 40px rgba(92, 200, 255, 0.15);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.3);
  --r-lg: 12px;
  --r-md: 10px;
  --r-sm: 8px;
  --container: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  line-height: 1.65;
  background: var(--deep);
  overflow-x: hidden;
}

body.nav-open,
body.gate-active {
  overflow: hidden;
}

body.page-game {
  background: #050810;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

iframe {
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ---- SECTIONS ---- */

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-muted {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.03)
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-header h2,
.page-hero h1,
.hero-copy h1,
.legal-article h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-header p,
.section-copy,
.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 44rem;
}

/* ---- KICKER / BADGE ---- */

.section-kicker,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.badge {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(56, 189, 248, 0.12);
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: var(--r-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
}

.btn-primary {
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 12px 32px rgba(56, 189, 248, 0.45),
    var(--glow-gold);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-accent);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 700;
}

.link-arrow::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after {
  transform: translateX(4px);
}

/* ---- PANEL ---- */

.panel {
  background: var(--deep-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
}

/* ---- TOPBAR ---- */

.site-topbar {
  position: relative;
  z-index: 36;
  background: var(--gold);
  color: var(--deep);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.5rem;
}

.topbar-note,
.topbar-flag {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--deep);
}

.topbar-flag {
  font-weight: 800;
  opacity: 0.7;
}

/* ---- HEADER ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(8, 12, 21, 0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: background-color 0.2s ease;
}

.site-header.is-condensed {
  background: rgba(8, 12, 21, 0.95);
}

.header-core {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 4.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 5.6rem;
  height: 2.8rem;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}

.brand-label {
  display: grid;
  gap: 0.05rem;
}

.brand-label strong {
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-label span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-accent);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav .nav-pill {
  margin-left: 0.3rem;
  color: var(--deep);
  font-weight: 700;
  background: var(--gold);
  border-radius: var(--r-sm);
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill:focus-visible {
  background: var(--gold-soft);
  box-shadow: var(--glow-gold);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    linear-gradient(
      180deg,
      rgba(8, 12, 21, 0.55) 0%,
      rgba(8, 12, 21, 0.85) 100%
    ),
    url("images/hero-showcase.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.hero-copy h1 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero .section-kicker {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.hero .btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-accent);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.hero-highlights li {
  padding: 0.6rem 0.9rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-showcase {
  position: relative;
  display: none;
}

.hero-tilt {
  display: none;
}

.hero-photo {
  display: none;
}

.floating-card,
.floating-tag {
  display: none;
}

/* ---- TICKER ---- */

.ticker-band {
  padding: 0.85rem 0;
  background: rgba(56, 189, 248, 0.06);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0.6rem;
  min-width: max-content;
  animation: scroll-band 30s linear infinite;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--r-sm);
  background: rgba(56, 189, 248, 0.08);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

/* ---- GRID / INFO ---- */

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.info-card {
  position: relative;
  padding: 1.4rem;
  border-left: 3px solid var(--gold);
}

.info-card::before {
  display: none;
}

.info-card h3,
.catalog-card h2,
.timeline-step h3,
.contact-panel h3,
.legal-article h2,
.policy-card h3,
.footer-title,
.support-stat strong {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
}

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

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

.icon-list,
.tag-list,
.catalog-points,
.contact-list,
.footer-links,
.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list {
  display: grid;
  gap: 0.75rem;
}

.icon-list li,
.catalog-points li,
.contact-list li,
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
}

.icon-dot,
.catalog-dot,
.legal-dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.muted-dot {
  background: var(--ice);
  box-shadow: 0 0 8px rgba(92, 200, 255, 0.4);
}

/* ---- FEATURED / CATALOG / POLICY CARDS ---- */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.featured-card,
.catalog-card,
.policy-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border-top: 2px solid var(--gold);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.featured-card:hover,
.featured-card:focus-within,
.catalog-card:hover,
.catalog-card:focus-within,
.policy-card:hover,
.policy-card:focus-within {
  border-color: var(--gold-soft);
  box-shadow: var(--glow-gold);
}

.card-media {
  overflow: hidden;
  border-radius: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  filter: brightness(0.85);
}

.featured-card:hover .card-media img,
.catalog-card:hover .card-media img {
  transform: scale(1.03);
  filter: brightness(1);
}

.card-content {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.card-content h3,
.catalog-card h2,
.policy-card h3 {
  font-size: 1.3rem;
}

.card-content p,
.catalog-card p,
.policy-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list li {
  padding: 0.35rem 0.6rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---- STORY ---- */

.story-surface {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(
      ellipse at top right,
      rgba(56, 189, 248, 0.1),
      transparent 35%
    ),
    linear-gradient(140deg, #111827 0%, #0f172a 60%, #131c30 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.story-media {
  display: none;
}

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

.story-copy h2 {
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-copy p {
  margin: 1rem auto 1.4rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.timeline-step {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  text-align: left;
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r-sm);
  color: var(--deep);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.timeline-step h3 {
  font-size: 1.05rem;
  color: #fff;
}

.timeline-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---- FAQ ---- */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: var(--deep-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-question span:last-child {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: var(--r-sm);
  color: var(--deep);
  background: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-muted);
}

.faq-answer[hidden] {
  display: none;
}

/* ---- REVIEWS ---- */

.reviews-wrap {
  display: grid;
  gap: 1.5rem;
}

.review-slider {
  position: relative;
  overflow: visible;
  padding: 0 0.4rem 1rem;
}

.review-viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.review-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.3rem, 2vw, 2rem);
}

.review-visual {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--r-lg);
  color: #fff;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(56, 189, 248, 0.15),
      transparent 40%
    ),
    linear-gradient(140deg, #111827, #1a2744);
  border: 1px solid var(--border);
}

.review-avatar {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-sm);
  color: var(--deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-badge {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.4rem 0.65rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid var(--border);
}

.review-copy {
  display: grid;
  gap: 0.85rem;
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  color: var(--gold);
  font-size: 1rem;
}

.review-copy blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}

.review-author {
  display: grid;
  gap: 0.1rem;
}

.review-author strong {
  font-size: 0.95rem;
  color: #fff;
}

.review-author span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0 0;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-dot {
  width: 2rem;
  height: 0.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition:
    background-color 0.2s ease,
    width 0.2s ease;
}

.review-dot.is-active {
  background: var(--gold);
  width: 2.5rem;
}

.slider-actions {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--border-accent);
  border-radius: var(--r-sm);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-color: rgba(56, 189, 248, 0.3);
}

.slider-btn svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* ---- CONTACT ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.2rem;
}

.contact-panel,
.contact-form {
  padding: 1.4rem;
}

.contact-panel {
  border-left: 3px solid var(--gold);
}

.support-stats {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.support-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.support-stat span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.support-stat strong {
  font-size: 0.88rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.contact-form form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-accent);
  border-radius: var(--r-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field select {
  color: var(--text-muted);
}

.field-error {
  min-height: 1rem;
  color: var(--rose);
  font-size: 0.8rem;
}

.field.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
}

.field.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.15rem;
}

.form-status {
  display: none;
  padding: 0.85rem 0.9rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: var(--mint);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.form-status.error {
  color: var(--rose);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.15);
}

/* ---- POLICY GRID ---- */

.policy-card {
  padding: 1.3rem;
}

.policy-card p {
  margin-top: 0.55rem;
  margin-bottom: 0.9rem;
}

/* ---- PAGE HERO ---- */

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(56, 189, 248, 0.1),
      transparent 40%
    ),
    linear-gradient(170deg, #0d1322, #0a0f18);
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.page-hero .section-kicker {
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
}

.page-hero .hero-highlights {
  margin-top: 1.2rem;
}

/* ---- CATALOG ---- */

.catalog-card {
  padding: 0;
}

.catalog-card .card-media img {
  aspect-ratio: 4 / 3;
}

.catalog-card h2 {
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
}

.catalog-points {
  display: grid;
  gap: 0.6rem;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.catalog-callout {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 3px solid var(--gold);
}

.catalog-callout h2 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.catalog-callout p {
  margin: 0;
  color: var(--text-muted);
}

/* ---- GAME PAGE ---- */

.game-main {
  width: 100%;
}

.game-frame {
  display: block;
  width: 100%;
  height: clamp(35rem, calc(100svh - 10rem), 58rem);
  min-height: 70svh;
  background: #030609;
}

/* ---- LEGAL ---- */

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 1.2rem;
  align-items: start;
}

.legal-article,
.legal-aside {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.legal-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: #fff;
}

.legal-article h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  color: #fff;
}

.legal-article p {
  margin: 0.7rem 0;
  color: var(--text-muted);
}

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

.legal-article a {
  color: var(--gold);
}

.legal-list {
  display: grid;
  gap: 0.65rem;
}

.legal-aside {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.legal-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #fff;
}

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

.legal-links {
  display: grid;
  gap: 0.45rem;
}

.legal-links a {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */

.site-footer {
  position: relative;
  overflow: clip;
  padding: 2.5rem 0 1.2rem;
  color: var(--text-muted);
  background: #060a12;
  border-top: 1px solid var(--border);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 1.5rem;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-title {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ---- AGE GATE ---- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 6, 12, 0.9);
  backdrop-filter: blur(24px);
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-card {
  width: min(38rem, 100%);
  padding: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--text);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-accent);
  background:
    radial-gradient(
      ellipse at top right,
      rgba(56, 189, 248, 0.08),
      transparent 35%
    ),
    linear-gradient(150deg, rgba(13, 19, 34, 0.98), rgba(17, 24, 39, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-sm);
  color: var(--deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.age-card h2 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #fff;
}

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

.age-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.3rem;
  padding: 0;
  list-style: none;
}

.age-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.age-note {
  margin-top: 0.8rem;
  color: var(--text-dim);
  font-size: 0.84rem;
}

/* ---- UTILITIES ---- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.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;
}

/* ---- KEYFRAMES ---- */

@keyframes scroll-band {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .review-card,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

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

  .site-nav {
    position: fixed;
    top: 7rem;
    right: 0.8rem;
    left: 0.8rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.8rem;
    border-radius: var(--r-md);
    background: rgba(13, 19, 34, 0.97);
    border: 1px solid var(--border-accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-pill {
    margin-left: 0;
    text-align: center;
  }

  .featured-grid,
  .catalog-grid,
  .policy-grid,
  .faq-grid,
  .grid-two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .section,
  .page-hero {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .header-core {
    min-height: 4.2rem;
  }

  .topbar-inner {
    min-height: auto;
    padding: 0.5rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .hero-highlights li,
  .page-hero .hero-highlights li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-form,
  .legal-article,
  .legal-aside,
  .review-card {
    padding: 1rem;
  }

  .review-card {
    gap: 1rem;
  }

  .review-copy blockquote {
    font-size: 0.98rem;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .game-frame {
    height: calc(100svh - 8.5rem);
    min-height: 32rem;
  }
}

@media (max-width: 560px) {
  .brand-label span,
  .topbar-flag {
    display: none;
  }

  .container {
    width: min(100% - 1rem, 1180px);
  }

  .hero-actions,
  .age-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.3rem;
  }

  .ticker-track {
    animation-duration: 22s;
  }

  .game-frame {
    min-height: 28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}
