/* ─────────────────────────────────────────────────────────────
   jasonfurr.com — Production Stylesheet
   Aesthetic: Premium Indie Studio — dark, editorial, distinct
   Fonts: Syne (display) · Plus Jakarta Sans (body)
───────────────────────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────────────────────────── */

:root {
  color-scheme: dark;

  /* Backgrounds */
  --bg:           #08090D;
  --bg-1:         #0D0E14;
  --surface:      #13141C;
  --surface-2:    #1A1C27;
  --surface-3:    #222435;

  /* Text */
  --text:         #F2F4FF;
  --text-2:       #9498B0;
  --text-3:       #636680;

  /* Accent — electric lime, unmistakably game-y and premium */
  --lime:         #C8FF57;
  --lime-dim:     rgba(200, 255, 87, 0.12);
  --lime-border:  rgba(200, 255, 87, 0.28);

  /* Cool accent for interactive/links */
  --blue:         #6FAAFF;
  --blue-dim:     rgba(111, 170, 255, 0.10);

  /* Status / category colours */
  --green:        #3DDB8A;
  --amber:        #F5A623;
  --purple:       #A78BFA;
  --red:          #FF6B6B;

  /* Borders */
  --line:         rgba(255, 255, 255, 0.07);
  --line-2:       rgba(255, 255, 255, 0.12);

  /* Radii */
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;
  --r-xl:         32px;

  /* Shadows */
  --shadow:       0 32px 96px rgba(0,0,0,0.52);
  --glow-lime:    0 0 40px rgba(200,255,87,0.18);

  /* Layout */
  --max:          1200px;
  --max-narrow:   780px;
  --max-wide:     1440px;

  /* Typography */
  --font-display: 'Syne', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Reset ──────────────────────────────────────────────────── */

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

html {
  background: var(--bg);
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200,255,87,0.06), transparent),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(111,170,255,0.05), transparent),
    var(--bg);
}

img, video { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--text); }
p { margin: 0; }

/* ── Accessibility ──────────────────────────────────────────── */

.skip-link {
  background: var(--lime);
  color: #08090D;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  left: 1rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1rem;
  position: absolute;
  top: -6rem;
  z-index: 200;
  border-radius: var(--r-sm);
}
.skip-link:focus { top: 1rem; }

/* ── Navigation ─────────────────────────────────────────────── */

.site-header {
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(8,9,13,0.78);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 68px;
  padding: 0 1.5rem;
}

.brand {
  align-items: center;
  color: var(--text);
  display: flex;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  gap: 0.55rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  background: var(--lime);
  border-radius: 6px;
  color: #08090D;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  height: 28px;
  letter-spacing: 0.02em;
  line-height: 28px;
  padding: 0 7px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.nav-cta {
  background: var(--lime) !important;
  color: #08090D !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #d9ff6b !important;
}

/* Mobile nav toggle */
.nav-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  cursor: pointer;
  display: none;
  padding: 0.5rem;
}

/* ── Layout utilities ───────────────────────────────────────── */

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1.5rem;
}

.container--narrow {
  margin: 0 auto;
  max-width: var(--max-narrow);
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 9rem 0; }

/* ── Typography ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.eyebrow {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
}

.lead {
  color: var(--text-2);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  max-width: 56ch;
}

.body-text { line-height: 1.75; }
.body-text p + p { margin-top: 1.1rem; }
.body-text h3 { margin: 2rem 0 0.75rem; }
.body-text a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s, background 0.15s;
}

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

.btn--primary {
  background: var(--lime);
  color: #08090D;
}
.btn--primary:hover { background: #d9ff6b; color: #08090D; }

.btn--secondary {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn--secondary:hover { background: var(--surface-3); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text-2);
}
.btn--ghost:hover { border-color: var(--line); color: var(--text); }

.btn--sm { font-size: 0.8rem; padding: 0.55rem 1rem; }
.btn--lg { font-size: 1rem; padding: 0.9rem 1.8rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

/* ── Badges / Tags ──────────────────────────────────────────── */

.badge {
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  gap: 0.35rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
  vertical-align: middle;
}

.badge--lime   { background: var(--lime-dim);  border: 1px solid var(--lime-border); color: var(--lime); }
.badge--blue   { background: var(--blue-dim);  border: 1px solid rgba(111,170,255,0.25); color: var(--blue); }
.badge--green  { background: rgba(61,219,138,0.10); border: 1px solid rgba(61,219,138,0.25); color: var(--green); }
.badge--amber  { background: rgba(245,166,35,0.10); border: 1px solid rgba(245,166,35,0.25); color: var(--amber); }
.badge--purple { background: rgba(167,139,250,0.10); border: 1px solid rgba(167,139,250,0.25); color: var(--purple); }
.badge--muted  { background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2); }

/* ── Cards ──────────────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card__body {
  padding: 1.6rem;
}

.card__footer {
  border-top: 1px solid var(--line);
  padding: 1rem 1.6rem;
}

/* ── Game Cards ─────────────────────────────────────────────── */

.game-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}

.game-card:hover {
  border-color: rgba(200,255,87,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), var(--glow-lime);
  transform: translateY(-4px);
}

.game-card__art {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Portrait games show taller card art */
.game-card--portrait .game-card__art {
  aspect-ratio: 3 / 4;
}

.game-card__art-placeholder {
  align-items: center;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  gap: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card__art-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.game-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem;
}

.game-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.game-card__title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-card__desc {
  color: var(--text-2);
  font-size: 0.875rem;
  flex: 1;
  line-height: 1.6;
}

.game-card__footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
}

.game-card__status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  min-height: calc(100svh - 68px);
  padding: 6rem 0;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  gap: 3rem 4rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero__kicker {
  align-items: center;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 999px;
  color: var(--lime);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  gap: 0.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  padding: 0.38rem 0.85rem;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.hero__title .accent { color: var(--lime); }

.hero__lead {
  color: var(--text-2);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.68;
  margin-top: 1.5rem;
  max-width: 48ch;
}

/* Hero stats panel */
.hero__stats {
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 2rem;
}

.stat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.stat-item {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
}

.stat-label {
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* ── Section titles ─────────────────────────────────────────── */

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

.section-num {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* ── Games grid ─────────────────────────────────────────────── */

.games-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.games-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

/* ── Feature strip (home page) ──────────────────────────────── */

.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.feature-desc { color: var(--text-2); font-size: 0.875rem; }

/* ── About / Studio section ─────────────────────────────────── */

.studio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.studio-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-row {
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
}

.value-icon {
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--r-sm);
  color: var(--lime);
  flex-shrink: 0;
  font-size: 1.1rem;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 36px;
}

.value-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.value-desc { color: var(--text-2); font-size: 0.85rem; }

/* ── Tech stack strip ───────────────────────────────────────── */

.tech-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tech-chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
}

/* ── CTA strip ──────────────────────────────────────────────── */

.cta-strip {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2.5rem 3rem;
}

/* ── Press Kit / About cards ────────────────────────────────── */

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.info-card__label {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.info-card__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Individual game page ───────────────────────────────────── */

.game-hero {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}

.game-hero__inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 340px;
  align-items: start;
}

.game-art {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.game-art--portrait { aspect-ratio: 9/16; max-width: 280px; }

.game-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.game-sidebar__section {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.game-sidebar__section:last-child { border-bottom: none; }

.game-sidebar__label {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.game-sidebar__value {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.game-sidebar__id {
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  word-break: break-all;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.store-btn {
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.store-btn:hover { background: var(--surface-3); border-color: var(--line); color: var(--text); }
.store-btn span { flex: 1; }
.store-btn--coming { opacity: 0.5; pointer-events: none; }

/* ── Support page ───────────────────────────────────────────── */

.support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.contact-highlight {
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.contact-highlight a {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.contact-highlight a:hover { color: #d9ff6b; }

/* ── Privacy page ───────────────────────────────────────────── */

.privacy-table {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
}

.privacy-table th {
  background: var(--surface-2);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-align: left;
  text-transform: uppercase;
}

.privacy-table td {
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  vertical-align: top;
}

.privacy-table td:first-child { color: var(--text); font-weight: 600; }
.privacy-table td:not(:first-child) { color: var(--text-2); }

.yes { color: var(--green); font-weight: 600; }
.no  { color: var(--red);   font-weight: 600; }

/* ── Press / Media ──────────────────────────────────────────── */

.press-dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-dl__item {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

/* ── Content panels ─────────────────────────────────────────── */

.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-top: 1rem;
  padding: 1.75rem;
}

.content-panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.content-panel p + p { margin-top: 0.85rem; }
.content-panel p { color: var(--text-2); font-size: 0.93rem; }

.callout-warning {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r-lg);
  margin-top: 1rem;
  padding: 1.5rem;
}

.callout-warning h2 { color: var(--amber); }
.callout-warning p { color: var(--text-2); font-size: 0.93rem; }

/* ── Divider ────────────────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1.5rem;
}

.footer-brand p {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-top: 0.6rem;
}

.footer-col h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: var(--text-2);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.12s;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  margin: 2rem auto 0;
  max-width: var(--max);
  padding: 1.5rem 1.5rem 0;
}

.footer-bottom p {
  color: var(--text-3);
  font-size: 0.8rem;
}

/* ── 404 page ───────────────────────────────────────────────── */

.error-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem;
  text-align: center;
}

.error-code {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
  opacity: 0.3;
}

/* ── Scroll animation ───────────────────────────────────────── */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js [data-reveal-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal-delay="3"] { transition-delay: 0.24s; }
.js [data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js [data-reveal-delay="1"],
  .js [data-reveal-delay="2"],
  .js [data-reveal-delay="3"],
  .js [data-reveal-delay="4"] { transition-delay: 0s; }
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero__inner,
  .studio-grid,
  .game-hero__inner,
  .cta-strip,
  .footer-inner { grid-template-columns: 1fr; }

  .feature-strip { grid-template-columns: 1fr; }
  .feature-item  { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: none; }

  .info-grid,
  .support-grid { grid-template-columns: 1fr; }

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

  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links--open a:not(.nav-cta) { display: flex; }
  .nav-toggle { display: flex; }

  .cta-strip { text-align: center; padding: 2rem; }
  .cta-strip .btn-row { justify-content: center; }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: 1fr; }
  .stat-grid  { grid-template-columns: 1fr 1fr; }
  .section    { padding: 3.5rem 0; }
  .hero       { padding: 3rem 0; min-height: auto; }

  .display { font-size: clamp(2.6rem, 10vw, 4rem); }
}
