*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --red:    #e8341a;
  --white:  #f0ede8;
  --gray:   #888;
  --dark:   #080808;
  --dark2:  #161616;
  --dark3:  #202020;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.5;
}
@media (pointer: fine) {
  body { cursor: none; }
  #cursor, #cursor-ring { display: block; }
}
@media (pointer: coarse) {
  #cursor, #cursor-ring { display: none; }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: width .2s var(--ease-out),
              height .2s var(--ease-out),
              opacity .3s;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 52, 26, .55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: width .3s var(--ease-out),
              height .3s var(--ease-out),
              border-color .3s,
              opacity .3s;
  transform: translate(-50%, -50%);
  will-change: transform;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, .025) 2px,
    rgba(0, 0, 0, .025) 4px
  );
  pointer-events: none;
  z-index: 9000;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background .4s, padding .4s;
}
nav.scrolled {
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color .3s;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,.55) 0%, rgba(10,10,10,.3) 40%, rgba(10,10,10,.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,.5) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  will-change: transform;
}
.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, .15);
  border-style: solid;
  pointer-events: none;
}
.corner-tl { top: 20px; left: 20px;    border-width: 1px 0 0 1px; }
.corner-tr { top: 20px; right: 20px;   border-width: 1px 1px 0 0; }
.corner-bl { bottom: 20px; left: 20px;   border-width: 0 0 1px 1px; }
.corner-br { bottom: 20px; right: 20px;  border-width: 0 1px 1px 0; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-overline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .9s .2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 160px);
  text-transform: uppercase;
  letter-spacing: 8px;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
  will-change: transform;
}
.hero-title span,
.hero-title em {
  display: block;
  line-height: .88;
}
.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 232, .3);
}
.hero-tagline {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}
.hero-sub {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .9s 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── 3D Triangle ─────────────────────────────────── */
#heroTriangle {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


.ticker-wrap {
  overflow: hidden;
  padding: 26px 0;
  background: var(--red);
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .35);
  padding: 0 60px;
  white-space: nowrap;
}
.ticker-item span { color: rgba(0, 0, 0, .6); }
.partners-ticker-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.partners-ticker {
  display: flex;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
}
.partners-set {
  display: flex;
  align-items: center;
  gap: 0;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  padding: 0 56px;
}
.partner-logo-item img {
  display: block;
  flex-shrink: 0;
}
.partner-sep {
  color: rgba(0,0,0,.3);
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.stats-banner {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--red);
  letter-spacing: -1px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 8px;
}
.section-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 80px);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -1px;
}
.about {
  padding: 160px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about-left h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5vw, 80px); text-transform: uppercase; line-height: .9; letter-spacing: -1px; }
.about-left h2 span { color: var(--red); }
.about-right p { font-size: 16px; line-height: 1.8; color: #aaa; margin-bottom: 24px; }
.about-right p:last-child { margin-bottom: 0; }
.about-right strong { color: var(--white); font-weight: 500; }
.about-right--large p { font-size: 19px; line-height: 1.85; }
.games-section { padding: 0 0 160px; }
.games-header {
  padding: 0 60px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.games-header h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5vw, 80px); text-transform: uppercase; line-height: .9; letter-spacing: -1px; }
.games-header p { font-size: 13px; color: var(--gray); max-width: 260px; text-align: right; line-height: 1.7; flex-shrink: 0; }
.games-header-sub { font-size: 17px !important; color: var(--white) !important; line-height: 1.6 !important; }
.games-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 60px;
}
.games-track::-webkit-scrollbar { display: none; }
.game-card-link {
  flex: 0 0 calc(33.333% - 2px);
  display: block;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  outline-offset: -2px;
}
.game-card {
  width: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.game-card-link:hover .game-bg,
.game-card-link:focus-visible .game-bg {
  filter: brightness(.55);
  transform: scale(1.04);
}
.game-card-link::after {
  content: '↗ Steam';
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.5);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 3;
}
.game-card-link:hover::after,
.game-card-link:focus-visible::after {
  opacity: 1;
}
.game-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
  transition: filter .5s ease, transform .8s ease;
  will-change: filter, transform;
}
.game-card:hover .game-bg,
.game-card:focus-within .game-bg {
  filter: brightness(.55);
  transform: scale(1.04);
}
.game-bg-eversiege { background-image: url('assets/EVRSG.jpg');                                                         background-color: #030a03; }
.game-bg-aliens    { background-image: url('assets/ADD.jpg');                                                           background-color: #1a0800; }
.game-bg-bfg2      { background-image: url('assets/BFG2.jpg');                                                          background-color: #000318; }
.game-bg-bfg1      { background-image: url('assets/BFG1.jpg');                                                          background-color: #040012; }
.game-bg-etherium  { background-image: url('assets/ETHERIUM.jpg');                                                      background-color: #0e0300; }
.game-bg-stellar   { background-image: url('assets/images/stellar.jpg');                                                  background-color: #000e1a; }
.game-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, transparent 100%);
}
.game-year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.game-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.game-desc { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 20px; }
.game-players { display: flex; align-items: center; gap: 12px; }
.game-players-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--red); text-transform: uppercase; }
.game-players-num   { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

/* Games nav arrows */
.games-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 60px;
}
.games-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .3s, background .3s, color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.games-arrow:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.games-arrow:disabled {
  opacity: .25;
  cursor: default;
  pointer-events: none;
}

.timeline-section {
  padding: 160px 60px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.timeline-header { margin-bottom: 100px; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.timeline-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}
.timeline-progress {
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  background: var(--red);
  width: 0;
  transition: width 1.6s var(--ease-out);
}
.timeline-item {
  padding-top: 40px;
  padding-right: 32px;
  position: relative;
}
.timeline-dot {
  position: absolute;
  top: -4px; left: 0;
  width: 9px; height: 9px;
  border: 1px solid var(--red);
  background: var(--dark2);
  transform: rotate(45deg);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: rgba(255, 255, 255, .15);
  margin-bottom: 16px;
  transition: color .6s ease;
}
.timeline-item:nth-child(2) .timeline-year { color: rgba(255, 255, 255, .15); }
.timeline-item:nth-child(3) .timeline-year { color: rgba(255, 255, 255, .28); }
.timeline-item:nth-child(4) .timeline-year { color: rgba(255, 255, 255, .42); }
.timeline-item:nth-child(5) .timeline-year { color: rgba(255, 255, 255, .58); }
.timeline-item:nth-child(6) .timeline-year { color: rgba(255, 255, 255, .74); }
.timeline-item:nth-child(7) .timeline-year { color: rgba(255, 255, 255, .92); }
.timeline-event { font-size: 13px; color: var(--gray); line-height: 1.6; }
.timeline-event strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 500; }
.ip-section {
  padding: 160px 60px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.ip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}
.ip-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.ip-title span { color: var(--red); }
.ip-text p { font-size: 18px; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
.ip-text p:last-child { margin-bottom: 0; }
.ip-logos { display: flex; flex-direction: column; gap: 2px; }
.ip-logo-card {
  padding: 40px 48px;
  min-height: 140px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .3s;
  overflow: hidden;
}
.ip-logo-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: brightness(.5) blur(6px);
  transition: opacity .4s ease;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.ip-logo-card:hover::before { opacity: .3; }
.ip-logo-card--disney::before {
  background-image: url('assets/ADD.jpg');
}
.ip-logo-card--gw::before {
  background-image: url('assets/BFG2.jpg');
}
.ip-logo-card:hover { border-color: rgba(232, 52, 26, .3); }
.ip-logo-card img, .ip-logo-card svg { position: relative; z-index: 1; }
.ip-name {
  position: absolute;
  bottom: 16px; left: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  z-index: 1;
}
.skills-section { padding: 80px 60px 160px; }
.skills-header { margin-bottom: 80px; }
.skills-header h2 { max-width: 600px; }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.skill-card {
  padding: 48px 40px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.skill-card:hover::before { opacity: 1; }
.skill-num  { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--red); margin-bottom: 24px; }
.skill-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.skill-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }
.manifesto {
  padding: 160px 60px;
  text-align: center;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 54px);
  line-height: 1.25;
  max-width: 900px;
  margin: 48px auto 0;
  letter-spacing: -.5px;
}
.manifesto-text em { font-style: normal; color: var(--red); }
.manifesto-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 80px;
}
.pill {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: border-color .3s, color .3s;
  cursor: default;
}
.pill:hover { border-color: var(--red); color: var(--white); }
.reviews-section { padding: 160px 60px 80px; border-top: 1px solid rgba(255, 255, 255, .04); }
.reviews-header { margin-bottom: 80px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.review-card {
  padding: 48px 40px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .04);
}
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
}
.review-quote em { color: var(--red); font-style: italic; }
.review-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}
.contact {
  padding: 160px 60px;
  position: relative;
  text-align: center;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 52, 26, .05) 0%, transparent 65%);
  pointer-events: none;
}
.contact-centered {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.contact-centered h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: 6px;
  margin-bottom: 32px;
}
.contact-centered p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 56px;
}
.contact-email-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  padding: 20px 48px;
  border: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  transition: border-color .3s, color .3s;
}
.contact-email-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
  z-index: -1;
}
.contact-email-link:hover {
  border-color: var(--red);
  color: var(--white);
}
.contact-email-link:hover::before {
  transform: scaleX(1);
}
footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo span { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255, 255, 255, .25); }
.footer-copy     { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: rgba(255, 255, 255, .2); }
.footer-location { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: rgba(255, 255, 255, .2); text-transform: uppercase; }
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.skill-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease, border-color .3s;
}
.skill-card.visible { opacity: 1; transform: translateY(0); }
.review-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.review-card.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stat-item, .timeline-item, .skill-card, .review-card {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 1024px) {
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  .about { padding: 120px 40px; gap: 60px; }
  .games-header { padding: 0 40px 60px; }
  .games-track { padding: 0 40px; }
  .game-card-link { flex: 0 0 calc(50% - 1px); }
  .timeline-section { padding: 120px 40px; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .ip-section { padding: 120px 40px; }
  .ip-grid { gap: 48px; }
  .skills-section { padding: 120px 40px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { padding: 120px 40px; }
  .reviews-section { padding: 120px 40px; }
  .contact { padding: 120px 40px; }
  .stats-banner { padding: 40px; }
  .stat-item { padding: 0 24px; }
  footer { padding: 32px 40px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 400;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; letter-spacing: 4px; }
  .nav-toggle { display: flex; z-index: 600; }
  .hero-title { letter-spacing: -1px; }
  .hero-sub { font-size: 11px; letter-spacing: 2px; }
  .hero-scroll { display: none; }
  .hero-backdrop { display: none; }
  .corner { display: none; }
  .ticker-item { font-size: 12px; padding: 0 32px; }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
    gap: 0;
  }
  .stat-item {
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255, 255, 255, .06); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
  .about {
    padding: 80px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .games-section { padding: 0 0 80px; }
  .games-header {
    padding: 0 24px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .games-header p { text-align: left; max-width: 100%; }
  .games-track { padding: 0 24px; }
  .game-card-link { flex: 0 0 85vw; } .game-card { min-height: 420px; }
  .timeline-section { padding: 80px 24px; }
  .timeline-header { margin-bottom: 60px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-line { display: none; }
  .timeline-item {
    padding: 0 0 40px 24px;
    border-left: 1px solid rgba(255, 255, 255, .1);
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot { top: 0; left: -5px; }
  .timeline-year { font-size: 22px; }
  .ip-section { padding: 80px 24px; }
  .ip-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }
  .ip-logo-card { padding: 32px 24px; }
  .ip-logo-card img { width: 220px !important; }
  .ip-logo-card svg { width: 180px !important; }
  .skills-section { padding: 80px 24px; }
  .skills-header { margin-bottom: 48px; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-card { padding: 32px 24px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-pills { gap: 8px; }
  .pill { padding: 8px 16px; font-size: 10px; }
  .reviews-section { padding: 80px 24px; }
  .reviews-header { margin-bottom: 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 32px 24px; }
  .review-quote { font-size: 17px; }
  .contact { padding: 80px 24px; }
  .contact-centered h2 { letter-spacing: -1px; }
  .contact-email-link { font-size: 12px; padding: 16px 24px; word-break: break-all; }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-tag { font-size: 10px; letter-spacing: 3px; }
}
@media (max-width: 480px) {
  .hero-title { letter-spacing: -.5px; }
  .game-card-link { flex: 0 0 92vw; }
  .stats-banner { grid-template-columns: 1fr 1fr; }
}