:root {
  --ink-deep: #04101f;
  --ink-strong: #08172f;
  --ink-soft: #102748;
  --text: #091325;
  --text-muted: #5d6d87;
  --text-soft: #c8d6f3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-alt: rgba(242, 248, 255, 0.88);
  --border: rgba(7, 21, 44, 0.1);
  --border-strong: rgba(255, 255, 255, 0.12);
  --accent: #3de7c1;
  --accent-strong: #1ec5a5;
  --accent-alt: #8eff6f;
  --blue: #5aa8ff;
  --gold: #ffcf59;
  --lavender: #a996ff;
  --rose: #ff8bc5;
  --danger: #ff6a78;
  --shadow-lg: 0 28px 80px rgba(7, 21, 44, 0.16);
  --shadow-md: 0 18px 42px rgba(7, 21, 44, 0.12);
  --shadow-sm: 0 12px 28px rgba(7, 21, 44, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --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: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(61, 231, 193, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(90, 168, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
  overflow-x: hidden;
}

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

body.page-game {
  background: #050d18;
}

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

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

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(231, 241, 255, 0.7));
  border-top: 1px solid rgba(7, 21, 44, 0.05);
  border-bottom: 1px solid rgba(7, 21, 44, 0.05);
}

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

.section-header h2,
.page-hero h1,
.hero-copy h1,
.legal-article h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.3vw, 3.65rem);
}

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

.section-kicker,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.badge {
  color: var(--ink-strong);
  background: rgba(61, 231, 193, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.4rem;
  padding: 0.95rem 1.45rem;
  border: 0;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink-deep);
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
  box-shadow: 0 20px 32px rgba(61, 231, 193, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 34px rgba(61, 231, 193, 0.32);
}

.btn-ghost {
  color: #f2f7ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.btn-dark {
  color: #f5fbff;
  background: linear-gradient(135deg, #0a1f3c, #0f3463);
  box-shadow: var(--shadow-sm);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-strong);
  font-weight: 800;
}

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

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

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.site-topbar {
  position: relative;
  z-index: 36;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 16, 31, 0.92);
  backdrop-filter: blur(16px);
}

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

.topbar-note,
.topbar-flag {
  margin: 0;
  color: #d9e4fc;
  font-size: 0.88rem;
}

.topbar-flag {
  color: #8eff6f;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(4, 16, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    min-height 0.24s ease;
}

.site-header.is-condensed {
  background: rgba(4, 16, 31, 0.86);
}

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

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

.brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1.15rem;
  box-shadow: 0 18px 36px rgba(7, 21, 44, 0.22);
}

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

.brand-label strong {
  color: #f7fbff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-label span {
  color: #9fb0cf;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #f7fbff;
}

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

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

.site-nav a {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: #d6e3fa;
  font-weight: 700;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-pill {
  margin-left: 0.45rem;
  color: var(--ink-deep);
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill:focus-visible {
  color: var(--ink-deep);
  background: linear-gradient(135deg, #b9ff7f, #4ff0ca);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(4.6rem, 9vw, 7rem) 0 clamp(4.2rem, 8vw, 6rem);
  color: var(--ink-strong);
  background:
    url("images/hero-soft-overlay.png") center/cover no-repeat,
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(166, 240, 255, 0.7), transparent 23%),
    radial-gradient(circle at 72% 82%, rgba(255, 214, 150, 0.35), transparent 22%),
    linear-gradient(135deg, #f7fdff 0%, #e9f7ff 48%, #f4efff 100%);
  border-bottom: 1px solid rgba(7, 21, 44, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 40px rgba(115, 149, 186, 0.1);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: -9rem;
  left: -6rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(26px);
}

.hero::after {
  right: -10rem;
  bottom: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(150, 225, 255, 0.38);
  filter: blur(28px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 1.15rem;
  margin-bottom: 1.1rem;
  font-size: clamp(3.4rem, 7vw, 6.15rem);
  text-transform: uppercase;
  max-width: 10.5ch;
}

.hero-copy p {
  margin: 0;
  max-width: 41rem;
  color: rgba(8, 23, 47, 0.72);
  font-size: 1.08rem;
}

.hero .section-kicker {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 39, 72, 0.08);
  box-shadow: 0 12px 30px rgba(104, 134, 168, 0.12);
}

.hero .btn-ghost {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(16, 39, 72, 0.1);
  box-shadow: 0 16px 32px rgba(104, 134, 168, 0.12);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

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

.hero-highlights li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 72, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-strong);
  font-weight: 700;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(104, 134, 168, 0.12);
}

.hero-showcase {
  position: relative;
  min-height: 36rem;
}

.hero-tilt {
  position: relative;
  max-width: 35rem;
  margin-left: auto;
  transform-style: preserve-3d;
  transition: transform 0.24s ease;
}

.hero-photo {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 90px rgba(91, 124, 164, 0.18);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card,
.floating-tag {
  position: absolute;
  border-radius: 1.5rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(91, 124, 164, 0.18);
  animation: drift 9s ease-in-out infinite;
}

.floating-card {
  right: -1.25rem;
  bottom: 1rem;
  width: min(21rem, 62vw);
  padding: 1.2rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.floating-card strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.2rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.floating-card p {
  margin: 0.35rem 0 1rem;
  color: rgba(8, 23, 47, 0.66);
  font-size: 0.95rem;
}

.score-list {
  display: grid;
  gap: 0.8rem;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.score-row span {
  color: rgba(8, 23, 47, 0.64);
  font-size: 0.9rem;
}

.score-bar {
  position: relative;
  flex: 1;
  height: 0.56rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16, 39, 72, 0.08);
}

.score-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 75%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.tag-left {
  top: 1.1rem;
  left: 0.4rem;
  color: var(--ink-deep);
  background: linear-gradient(135deg, #fff1c2, #ffd89a);
}

.tag-right {
  top: 7rem;
  right: -1rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.88);
  animation-delay: -2s;
}

.ticker-band {
  padding: 1.15rem 0;
  background: #071324;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

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

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce8ff;
  font-weight: 700;
}

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

.info-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(61, 231, 193, 0.08);
}

.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: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.info-card h3 {
  font-size: 1.35rem;
}

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

.icon-list li,
.catalog-points li,
.contact-list li,
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon-dot,
.catalog-dot,
.legal-dot {
  flex: 0 0 auto;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
  box-shadow: 0 10px 16px rgba(61, 231, 193, 0.22);
}

.muted-dot {
  background: linear-gradient(135deg, var(--blue), var(--lavender));
  box-shadow: 0 10px 16px rgba(90, 168, 255, 0.2);
}

.featured-grid,
.catalog-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-card,
.catalog-card,
.policy-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.1rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.featured-card:hover,
.featured-card:focus-within,
.catalog-card:hover,
.catalog-card:focus-within,
.policy-card:hover,
.policy-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-media {
  overflow: hidden;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(4, 16, 31, 0.08), rgba(4, 16, 31, 0.02));
}

.card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.featured-card:hover .card-media img,
.catalog-card:hover .card-media img {
  transform: scale(1.04);
}

.card-content {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0.35rem 0.3rem;
}

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

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

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

.tag-list li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 39, 72, 0.07);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.story-surface {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2vw, 2rem);
  color: #f8fbff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 207, 89, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(61, 231, 193, 0.18), transparent 22%),
    linear-gradient(135deg, #081326 0%, #0d2451 55%, #112f63 100%);
  box-shadow: var(--shadow-lg);
}

.story-surface::before {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.story-media img {
  width: 100%;
  border-radius: 1.9rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(3, 10, 21, 0.22);
}

.story-copy p {
  margin: 1rem 0 1.4rem;
  color: rgba(238, 245, 255, 0.8);
}

.timeline {
  display: grid;
  gap: 0.95rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: var(--ink-deep);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent-alt));
}

.timeline-step h3 {
  font-size: 1.15rem;
}

.timeline-step p {
  margin: 0.35rem 0 0;
  color: rgba(238, 245, 255, 0.76);
}

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

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  background: transparent;
  border: 0;
  color: var(--ink-strong);
  text-align: left;
  font-weight: 800;
}

.faq-question span:last-child {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  color: #f8fbff;
  background: linear-gradient(135deg, #0a1f3c, #0f3c72);
  transition: transform 0.24s ease;
}

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

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

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

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

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

.review-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.15rem);
}

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

.review-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 1.7rem;
  align-items: center;
  padding: clamp(1.4rem, 2vw, 2rem);
}

.review-visual {
  position: relative;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  color: #f8fbff;
  background:
    radial-gradient(circle at top left, rgba(255, 207, 89, 0.18), transparent 28%),
    linear-gradient(135deg, #071324, #0d2a53 74%, #144f84);
}

.review-avatar {
  width: 6.5rem;
  height: 6.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--ink-deep);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-alt), var(--gold));
  box-shadow: 0 18px 36px rgba(255, 207, 89, 0.22);
}

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

.review-badge {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

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

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

.review-copy blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.58rem);
  line-height: 1.5;
  color: var(--ink-strong);
}

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

.review-author strong {
  font-size: 1rem;
}

.review-author span {
  color: var(--text-muted);
}

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

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

.review-dot {
  width: 0.82rem;
  height: 0.82rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 39, 72, 0.18);
  transition:
    background-color 0.24s ease,
    transform 0.24s ease;
}

.review-dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  transform: scale(1.15);
}

.slider-actions {
  display: flex;
  gap: 0.8rem;
  padding-right: 0.1rem;
}

.slider-btn {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: #ffffff;
  transform: translateY(-2px);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
}

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

.support-stats {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.support-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(16, 39, 72, 0.04);
}

.support-stat span {
  color: var(--text-muted);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

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

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

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

.field label {
  font-weight: 800;
  color: var(--ink-strong);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(7, 21, 44, 0.12);
  border-radius: 1rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(61, 231, 193, 0.72);
  box-shadow: 0 0 0 4px rgba(61, 231, 193, 0.14);
}

.field-error {
  min-height: 1.1rem;
  color: #b3263a;
  font-size: 0.84rem;
}

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

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

.form-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
}

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

.form-status.success {
  color: #0b5a47;
  background: rgba(61, 231, 193, 0.16);
  border: 1px solid rgba(61, 231, 193, 0.22);
}

.form-status.error {
  color: #8d2430;
  background: rgba(255, 106, 120, 0.12);
  border: 1px solid rgba(255, 106, 120, 0.18);
}

.policy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-card {
  padding: 1.4rem;
}

.policy-card p {
  margin-top: 0.65rem;
  margin-bottom: 1rem;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(4rem, 8vw, 5.8rem) 0 clamp(3.2rem, 6vw, 4.5rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 16%, rgba(61, 231, 193, 0.18), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(255, 207, 89, 0.16), transparent 20%),
    linear-gradient(135deg, #04101f 0%, #0b2141 55%, #0f4a84 100%);
}

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

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  text-transform: uppercase;
}

.page-hero p {
  color: rgba(232, 240, 255, 0.82);
  font-size: 1.02rem;
}

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

.catalog-grid {
  margin-top: 0.4rem;
}

.catalog-card {
  padding: 1rem;
}

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

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

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

.catalog-points li {
  color: var(--text-muted);
}

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

.catalog-callout {
  margin-top: 1.8rem;
  padding: 1.35rem;
}

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

.game-main {
  width: 100%;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

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

.legal-article h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  margin-bottom: 1.1rem;
  color: var(--ink-strong);
}

.legal-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  color: var(--ink-strong);
}

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

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

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

.legal-list li {
  color: var(--text-muted);
}

.legal-aside {
  position: sticky;
  top: 7.3rem;
  display: grid;
  gap: 1.2rem;
}

.legal-card {
  padding: 1.2rem;
  border-radius: 1.35rem;
  background: rgba(16, 39, 72, 0.04);
}

.legal-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

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

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

.legal-links a {
  font-weight: 800;
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  overflow: clip;
  padding: 3.2rem 0 1.4rem;
  color: #d8e5ff;
  background:
    radial-gradient(circle at top right, rgba(61, 231, 193, 0.14), transparent 18%),
    linear-gradient(180deg, #071324 0%, #050c18 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

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

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

.footer-brand p {
  margin: 0;
  color: rgba(216, 229, 255, 0.78);
}

.footer-title {
  font-size: 1rem;
  color: #ffffff;
}

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

.footer-links a {
  color: rgba(216, 229, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(216, 229, 255, 0.72);
  font-size: 0.92rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  background: rgba(3, 10, 21, 0.82);
  backdrop-filter: blur(28px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

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

.age-card {
  width: min(40rem, 100%);
  padding: clamp(1.5rem, 2vw, 2rem);
  color: #f5fbff;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(61, 231, 193, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(4, 16, 31, 0.95), rgba(10, 30, 58, 0.95));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1.25rem;
  color: var(--ink-deep);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent-alt));
  box-shadow: 0 18px 34px rgba(255, 207, 89, 0.2);
}

.age-card h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.age-card p {
  margin: 0;
  color: rgba(229, 238, 255, 0.8);
}

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

.age-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #eef5ff;
}

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

.age-note {
  margin-top: 0.95rem;
  color: rgba(216, 229, 255, 0.72);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.55s 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 drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

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

  100% {
    transform: translateX(-50%);
  }
}

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

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-showcase {
    min-height: 0;
  }

  .hero-tilt {
    margin: 0 auto;
  }

  .floating-card {
    right: 0.4rem;
  }

  .legal-aside {
    position: static;
  }
}

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

  .site-nav {
    position: fixed;
    top: 7.8rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(4, 16, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s 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.8rem;
    padding-bottom: 3.8rem;
  }

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

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

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

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

  .floating-tag {
    position: static;
    margin-top: 0.8rem;
    width: fit-content;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

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

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

  .review-card {
    gap: 1.2rem;
  }

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

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

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

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

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

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

  .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 1.4rem;
  }

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

  .age-card {
    border-radius: 1.55rem;
  }

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