:root {
  --bg: #05050c;
  --bg-alt: #0a0a14;
  --surface: rgba(14, 14, 28, 0.78);
  --border: rgba(148, 163, 184, 0.12);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --purple: #a78bfa;
  --purple-deep: #7c3aed;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --gold: #fbbf24;
  --green: #4ade80;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 6.5rem;
  --container: min(1140px, calc(100% - 2rem));
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Orbitron", "Inter", sans-serif;
  --neon-purple: 0 0 20px rgba(167, 139, 250, 0.45), 0 0 40px rgba(124, 58, 237, 0.2);
  --neon-cyan: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Ambient layers ── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 75%);
  animation: grid-drift 24s linear infinite;
}

.bg-scanlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.5) 2px,
    rgba(255, 255, 255, 0.5) 3px
  );
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -3;
  pointer-events: none;
  opacity: 0.42;
  will-change: transform;
}

.bg-glow--purple {
  width: 560px;
  height: 560px;
  top: -140px;
  right: -100px;
  background: var(--purple-deep);
}

.bg-glow--cyan {
  width: 440px;
  height: 440px;
  bottom: 8%;
  left: -120px;
  background: #0891b2;
}

.bg-glow--pink {
  width: 320px;
  height: 320px;
  top: 45%;
  right: 10%;
  background: #db2777;
  opacity: 0.18;
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

/* ── Typography ── */
.gradient-text {
  background: linear-gradient(
    120deg,
    var(--cyan) 0%,
    var(--purple) 45%,
    var(--pink) 70%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  box-shadow: var(--neon-cyan);
}

.muted { color: var(--text-muted); font-size: 0.9rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0 0.35rem;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(12, 10, 24, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 32px rgba(34, 211, 238, 0.18);
  backdrop-filter: blur(18px) saturate(1.25);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  transition: transform 0.2s, filter 0.25s;
}

.logo:hover {
  text-decoration: none;
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.35));
}

.logo__img {
  display: block;
  height: 4.96rem;
  width: auto;
  max-width: min(416px, 72vw);
  object-fit: contain;
  object-position: left center;
}

@keyframes logo-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 10px rgba(139, 92, 246, 0.45))
      drop-shadow(0 0 22px rgba(34, 211, 238, 0.2));
  }
  50% {
    filter:
      drop-shadow(0 0 14px rgba(236, 72, 153, 0.5))
      drop-shadow(0 0 28px rgba(34, 211, 238, 0.35));
  }
}

.logo__mascot {
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.5));
  animation: mascot-float 4s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.logo__brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fde68a, #fbbf24 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.35));
}

.logo__tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.nav a.is-active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.25);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(8, 8, 18, 0.85);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.22);
}

.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 30% 20%, rgba(124, 58, 237, 0.14), transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
}

.hero__lead {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 38ch;
}

.hero__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero__cta-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 0.75rem;
  width: min(100%, 28rem);
  max-width: 28rem;
}

.presence-live {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.presence-live__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.presence-live__label i {
  color: #5865f2;
  filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.35));
}

.presence-live__hint {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.68rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.presence-live__hint::before {
  content: "·";
  margin-right: 0.45rem;
  opacity: 0.55;
}

.presence-live__chip {
  flex-shrink: 0;
  margin: 0;
  margin-left: auto;
}

.hud-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

a.hud-chip:hover {
  text-decoration: none;
}

.hud-chip--live {
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.15);
}

.hud-chip--idle {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.12);
}

.hud-chip--busy {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.35);
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.12);
}

.hud-chip--offline {
  color: var(--text-dim);
  border-color: var(--border);
  box-shadow: none;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__actions {
  display: contents;
}

.hero-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-width: 0;
  min-height: 4rem;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(10, 10, 22, 0.72);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.hero-tile:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.hero-tile__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-size: 1.05rem;
}

.hero-tile__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  min-width: 0;
}

.hero-tile--norbit {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: inset 0 0 24px rgba(124, 58, 237, 0.1);
}

.hero-tile--norbit .hero-tile__icon {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.18);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.25);
}

.hero-tile--norbit .hero-tile__label {
  color: #ede9fe;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.hero-tile--norbit:hover {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.28);
}

.hero-tile--madpugs {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: inset 0 0 24px rgba(34, 211, 238, 0.08);
}

.hero-tile--madpugs .hero-tile__icon {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.14);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
}

.hero-tile--madpugs .hero-tile__label {
  color: #ecfeff;
}

.hero-tile--madpugs:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 10px 28px rgba(8, 145, 178, 0.22);
}

.hero__visual {
  position: relative;
}

.hero__banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.55));
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9 50%, #5b21b6);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.08);
}

.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.72rem; }

/* ── Sections ── */
.section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  position: relative;
}

.section--alt {
  background:
    linear-gradient(180deg, transparent, rgba(10, 10, 20, 0.85) 15%, rgba(10, 10, 20, 0.85) 85%, transparent);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-sub {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  max-width: 42ch;
}

/* ── Cards ── */
.glass-card {
  position: relative;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(145deg, rgba(20, 20, 38, 0.9), rgba(10, 10, 22, 0.75));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), transparent);
  opacity: 0.7;
}

.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), var(--neon-purple);
}

.glass-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.glass-card h3 i { color: var(--cyan); filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5)); }

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

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

/* Why */
.why-block {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(34, 211, 238, 0.04));
}

.why-block__lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.why-list {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.why-list li { margin-bottom: 0.55rem; }
.why-list strong { color: var(--gold); }

/* Norbit */
.norbit-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.norbit-panel__copy p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.norbit-panel__copy code {
  font-size: 0.85em;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.tag-row li {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #e9d5ff;
}

.norbit-panel__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.link-card i {
  color: var(--cyan);
  width: 1.25rem;
  text-align: center;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.4));
}

.link-card:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.08);
  transform: translateX(4px);
  box-shadow: var(--neon-cyan);
  text-decoration: none;
}

/* Genre grid */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.genre-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.genre-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--genre-accent, var(--purple));
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s;
}

.genre-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: color-mix(in srgb, var(--genre-accent, var(--purple)) 45%, transparent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.genre-card:hover::after { transform: scaleX(1); }

.genre-card--fps { --genre-accent: #f43f5e; }
.genre-card--sim { --genre-accent: #38bdf8; }
.genre-card--strategy { --genre-accent: #a78bfa; }
.genre-card--survival { --genre-accent: #4ade80; }
.genre-card--racing { --genre-accent: #fbbf24; }
.genre-card--rpg { --genre-accent: #fb7185; }

.genre-card i {
  font-size: 1.5rem;
  color: var(--genre-accent, var(--purple));
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--genre-accent) 50%, transparent));
}

.genre-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.genre-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* Project */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.game-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  margin-bottom: 1.75rem;
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}

.game-spotlight__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(34, 211, 238, 0.15));
  font-size: 1.3rem;
  color: #38bdf8;
  box-shadow: var(--neon-cyan);
}

.game-spotlight h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.game-spotlight p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.project-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
}

.project-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.2));
  font-size: 1.3rem;
  color: var(--cyan);
  box-shadow: var(--neon-cyan);
}

.project-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.project-card__icon--rlm {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(34, 211, 238, 0.18));
  color: #38bdf8;
}

.project-card__icon--community {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(139, 92, 246, 0.2));
  color: #a5b4fc;
}

.project-card--rlm {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}

.project-card--community {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.project-card__tags li {
  padding: 0.25rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.project-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Footer */
.site-footer {
  margin-top: 1rem;
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 12, 0.9));
}

.footer-inner p { margin: 0.3rem 0; font-size: 0.875rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Stagger genre cards */
.genre-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.genre-card.reveal:nth-child(3) { transition-delay: 0.1s; }
.genre-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.genre-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.genre-card.reveal:nth-child(6) { transition-delay: 0.25s; }

/* Responsive */
@media (max-width: 900px) {
  .hero__grid,
  .card-grid--2,
  .norbit-panel,
  .genre-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual { order: -1; }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.35rem;
    padding: 0.65rem 0.35rem 0.45rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
  }

  .site-header.is-nav-open .nav {
    display: flex;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 0.65rem 0.85rem;
  }
}

@media (max-width: 520px) {
  .logo__img { height: 4.16rem; max-width: min(336px, 78vw); }
  .logo__tagline { display: none; }
  .genre-grid { grid-template-columns: 1fr; }
  .hero__cta-stack {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }

  .presence-live {
    grid-column: 1 / -1;
  }

  .hero__hud { gap: 0.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bg-glow { transform: none !important; }
}
