/* ============================================================
   OPERA GX AFFILIATE — style.css
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #FF1B5C;
  --red-dark:   #C4003A;
  --red-glow:   rgba(255, 27, 92, 0.45);
  --purple:     #8B5CF6;
  --bg:         #08080C;
  --surface:    #0E0E16;
  --surface-2:  #141420;
  --border:     rgba(255, 255, 255, 0.06);
  --border-red: rgba(255, 27, 92, 0.25);
  --text:       #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dim:   rgba(255, 255, 255, 0.35);

  --font-heading: 'Orbitron', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --header-h:    76px;
  --section-pad: clamp(80px, 10vw, 140px);
  --inner-max:   1280px;
}

html {
  font-size: 16px;
  height: 100%;
  overflow: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--red);
  height: 36px;
  overflow: hidden;
}

.top-banner-track {
  display: flex;
  align-items: center;
  height: 36px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.top-banner-track span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding-right: 60px;
  flex-shrink: 0;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #1e1b2e;
  border-bottom: 1px solid rgba(255, 27, 92, 0.15);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.site-header.scrolled {
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: var(--border);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.header-inner {
  width: 100%;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.logo {
  height: 70px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: contrast(999);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1px solid var(--border-red);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.3) saturate(1.2);
}

.hero-overlay { position: absolute; inset: 0; }
.hero-overlay--dark   { background: rgba(8, 8, 12, 0.38); }
.hero-overlay--accent { background: linear-gradient(135deg, rgba(255,27,92,0.15), rgba(139,92,246,0.10)); }

/* Video end screen */
.video-end-screen {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 12, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}
.video-end-screen.active { opacity: 1; }

.end-logo-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.end-logo {
  width: 38vw;
  max-width: 560px;
  min-width: 200px;
  mix-blend-mode: screen;
  filter:
    brightness(6)
    drop-shadow(0 0 60px rgba(255,27,92,0.9))
    drop-shadow(0 0 120px rgba(255,27,92,0.5));
}

.end-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--text);
  text-transform: uppercase;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: calc(36px + var(--header-h) + 20px) clamp(20px, 5vw, 60px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.82rem, 5.2vw, 4.16rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero-title .line        { display: block; color: var(--text); line-height: 1.1; }
.hero-title .line.accent { color: var(--red); text-shadow: 0 0 40px rgba(255,27,92,0.4); }

.hero-desc {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(16px, 2.5vw, 32px);
}
.trust-item:first-child { padding-left: 0; }

.trust-icon { width: 36px; height: 36px; flex-shrink: 0; }
.trust-icon svg { width: 100%; height: 100%; }

.trust-stars { font-size: 0.9rem; color: var(--red); letter-spacing: 2px; line-height: 1.2; }
.trust-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-label { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.trust-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-bob 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent); }
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--text-muted);
  opacity: 0.5;
}

@keyframes fade-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.9; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 38px 80px;
  min-width: 420px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  user-select: none;
  white-space: nowrap;
}

.btn:hover  { transform: scale(1.03) translateY(-1px); }
.btn:active { transform: scale(0.99); }

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #D4004E 50%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 0;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  box-shadow: 0 4px 24px rgba(255,27,92,0.35);
  animation: pulse-cta 1.4s ease-in-out infinite, wamid-pulse 1.8s ease-in-out infinite;
  padding: 38px 80px;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 4px;
  border: 2px solid rgba(255, 27, 92, 0.8);
  animation: signal 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255,27,92,0.3);
    background: linear-gradient(135deg, #FF1B5C 0%, #D4004E 50%, #C4003A 100%);
  }
  50% {
    box-shadow: 0 0 50px rgba(255,27,92,0.9), 0 0 0 5px rgba(255,27,92,0.25), 0 0 80px rgba(255,27,92,0.4);
    background: linear-gradient(135deg, #ff4d7d 0%, #FF1B5C 50%, #D4004E 100%);
  }
}

@keyframes shimmer {
  0%   { left: -100%; }
  60%, 100% { left: 150%; }
}

@keyframes ripple-anim {
  to { transform: scale(1); opacity: 0; }
}

@keyframes signal {
  0%   { inset: -4px; opacity: 0.9; }
  100% { inset: -20px; opacity: 0; }
}

@keyframes clignoter {
  0%, 45%, 100% { opacity: 1; }
  50%, 95%      { opacity: 0; }
}

@keyframes wamid-pulse {
  0%, 100% { transform: translateY(0px) scaleY(1); }
  50%      { transform: translateY(-8px) scaleY(1.18); }
}

.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(255,27,92,0.7);
  animation: none;
}
.btn--primary:active {
  transform: scale(0.97);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}

.btn--xl { font-size: 0.9rem; padding: 20px 52px; }

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -30%, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.btn-icon { width: 26px; height: 26px; flex-shrink: 0; }

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section { padding: var(--section-pad) 0; position: relative; }

.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text);
}
.section-title .accent { color: var(--red); }

.section-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(255,27,92,0.07) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,27,92,0.12);
}
.feature-card:hover .feature-card-bg { opacity: 1; }

.feature-icon { width: 44px; height: 44px; color: var(--red); margin-bottom: 20px; }
.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.feature-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  border-radius: 3px;
  padding: 4px 10px;
  display: inline-block;
}

/* ============================================================
   SCREENSHOT SHOWCASE
   ============================================================ */
.showcase {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* GX list shared */
.gx-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.gx-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gx-list-icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.gx-list-icon svg { width: 100%; height: 100%; }

/* Screenshot frame */
.showcase-visual { position: relative; }

.screenshot-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.screenshot-frame:hover .screenshot-img { transform: scale(1.02); }

.screenshot-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,27,92,0.08) 0%,
    transparent 40%,
    rgba(139,92,246,0.05) 100%
  );
  pointer-events: none;
}

.screenshot-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--bg);
  padding: clamp(56px, 8vw, 100px) 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item { text-align: center; flex: 1; }

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255,27,92,0.35);
}

.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 64px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   GAMER SECTION
   ============================================================ */
.gamer-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.gamer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gamer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.1);
}

.gamer-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,12,0.95) 0%, rgba(8,8,12,0.80) 45%, rgba(8,8,12,0.40) 100%),
    linear-gradient(180deg, rgba(8,8,12,0.4) 0%, transparent 30%, transparent 70%, rgba(8,8,12,0.8) 100%);
}

.gamer-inner {
  position: relative;
  z-index: 1;
}

.gamer-content { max-width: 600px; }

/* Awards row */
.gamer-awards {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(16px, 2vw, 28px);
}
.award-item:first-child { padding-left: 0; }

.award-icon {
  width: 32px; height: 32px;
  color: var(--red);
  flex-shrink: 0;
}
.award-icon svg { width: 100%; height: 100%; }

.award-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.award-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download { overflow: hidden; text-align: center; }

.download-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,27,92,0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.download-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-inner .section-label { justify-content: center; }
.download-inner .section-label::before { display: none; }

.download-cta { margin-bottom: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; }

.download-note { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.05em; }

.platform-badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s, color 0.25s;
}
.platform-badge svg { width: 16px; height: 16px; }
.platform-badge:hover { border-color: rgba(255,27,92,0.3); color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  margin-bottom: 16px;
}

.footer-tagline { font-size: 0.85rem; color: var(--text-dim); max-width: 220px; line-height: 1.6; }

.footer-links { display: flex; gap: clamp(32px, 5vw, 80px); flex-wrap: wrap; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(20px, 5vw, 60px);
  max-width: var(--inner-max);
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-dim); line-height: 1.6; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up--delay-1 { transition-delay: 0.10s; }
.reveal-up--delay-2 { transition-delay: 0.20s; }
.reveal-up--delay-3 { transition-delay: 0.30s; }
.reveal-up--delay-4 { transition-delay: 0.45s; }
.reveal-up.in-view  { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner  { grid-template-columns: 1fr; }
  .showcase-visual { max-width: 640px; }
  .stats-grid      { flex-wrap: wrap; gap: 36px; justify-content: center; }
  .stat-item       { min-width: 160px; }
  .stat-divider    { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(8,8,12,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav.open     { display: flex; }
  .nav-list     { flex-direction: column; align-items: center; gap: 32px; }
  .nav-link     { font-size: 1.1rem; }
  .nav-toggle   { display: flex; }

  .hero-title   { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-desc    { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

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

  .gamer-bg-overlay {
    background: rgba(8,8,12,0.85);
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .trust-bar      { flex-direction: column; align-items: flex-start; }
  .trust-divider  { width: 40px; height: 1px; margin: 4px 0; }
  .trust-item     { padding-left: 0; padding-right: 0; }

  .award-item:first-child { padding-left: 0; }
}

@media (max-width: 480px) {
  .btn     { padding: 14px 24px; font-size: 0.72rem; }
  .btn--xl { padding: 16px 32px; }
  .stats-grid  { gap: 20px; }
  .stat-value  { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .gamer-awards { gap: 0; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
