@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/orbitron.woff2') format('woff2');
}

/* ─── DESIGN TOKENS ──────────────────────────── */
:root {
  --blue:        #1E90FF;
  --blue-mid:    #4da6ff;
  --blue-dim:    rgba(30,144,255,0.15);
  --blue-glow:   rgba(30,144,255,0.32);
  --purple:      #7B5CFA;
  --purple-dim:  rgba(123,92,250,0.15);
  --purple-glow: rgba(123,92,250,0.28);
  --bg:          #040408;
  --bg2:         #06060f;
  --card:        rgba(255,255,255,0.026);
  --card-hover:  rgba(255,255,255,0.052);
  --border:      rgba(100,130,255,0.09);
  --border-hi:   rgba(30,144,255,0.38);
  --text:        #eef2ff;
  --muted:       rgba(180,195,255,0.42);
  --heading:     'Orbitron', sans-serif;
  --body:        system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r:           12px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ─── KEYFRAMES ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(70px,50px) scale(1.12); }
  66%     { transform: translate(-30px,80px) scale(0.9); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px,-30px) scale(1.18); }
}
@keyframes orb3 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(30px,-60px) scale(1.1); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.5; transform:scale(.8); }
}
@keyframes shimmer {
  from { background-position: -300% center; }
  to   { background-position: 300% center; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes floatSlow {
  0%,100% { transform: perspective(1200px) rotateY(-5deg) rotateX(1.5deg) translateY(0); }
  50%     { transform: perspective(1200px) rotateY(-3deg) rotateX(0.5deg) translateY(-14px); }
}
@keyframes ringPulse {
  0%,100% { opacity:.15; transform:scale(1); }
  50%     { opacity:.05; transform:scale(1.05); }
}
@keyframes scrollCue {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  40%  { opacity:1; transform:scaleY(1); transform-origin:top; }
  100% { opacity:0; transform:scaleY(0); transform-origin:bottom; }
}
@keyframes scanlines {
  from { background-position: 0 0; }
  to   { background-position: 0 8px; }
}
@keyframes borderRotate {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

/* ─── UTILITIES ──────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section     { padding: 110px 0; }
.center      { text-align: center; }
.center .section-sub { margin: 0 auto; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading); font-size: 9px;
  letter-spacing: 0.46em; color: var(--blue);
  text-transform: uppercase; margin-bottom: 20px;
}
.label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 20px;
}
.section-sub {
  color: rgba(190,205,255,0.62); font-size: 16px;
  max-width: 560px; line-height: 1.85; letter-spacing: 0.01em;
}

/* gradient text — animated shimmer */
.hero-gradient {
  background: linear-gradient(110deg,
    #1E90FF 0%, #7B5CFA 35%, #1E90FF 65%, #7B5CFA 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ─── REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 8px;
  font-family: var(--heading); font-size: 11px;
  letter-spacing: 0.18em; font-weight: 700;
  text-transform: uppercase;
  transition: all 0.22s ease;
  position: relative; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #1E90FF 0%, #5b6bff 100%);
  color: #fff;
  box-shadow:
    0 0 30px rgba(30,144,255,0.42),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  box-shadow:
    0 0 56px rgba(30,144,255,0.7),
    inset 0 1px 0 rgba(255,255,255,0.24);
  transform: translateY(-2px) scale(1.03);
}
.btn-ghost {
  border: 1px solid var(--border-hi);
  color: var(--blue);
  background: rgba(30,144,255,0.06);
}
.btn-ghost:hover {
  background: rgba(30,144,255,0.13);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(30,144,255,0.15);
  transform: translateY(-2px);
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 18px 0;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(4,4,8,0.92);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-color: var(--border);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:var(--heading); font-size:13px; font-weight:700;
  letter-spacing:0.14em; color:var(--text);
}
.nav-logo img { width:30px; height:30px; object-fit:contain; mix-blend-mode:screen; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links a {
  font-family:var(--heading); font-size:10px; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--muted);
  padding:8px 14px; border-radius:6px;
  transition:color 0.2s, background 0.2s;
}
.nav-links a:hover { color:var(--text); background:rgba(255,255,255,0.04); }
.nav-links a.active { color:var(--blue); }
.nav-cta { margin-left:8px; }
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  display:none; position:fixed; inset:0;
  background:rgba(4,4,8,0.98); backdrop-filter:blur(32px);
  z-index:99; flex-direction:column; align-items:center; justify-content:center; gap:6px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:var(--heading); font-size:18px; letter-spacing:0.22em;
  color:var(--muted); padding:14px 32px; border-radius:10px;
  transition:color 0.2s, background 0.2s; width:280px; text-align:center;
}
.mobile-menu a:hover { color:var(--text); background:rgba(255,255,255,0.04); }
.close-btn { position:absolute; top:22px; right:22px; font-size:26px; font-weight:300; color:var(--muted); padding:8px; }

/* ─── HERO ────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

/* background layers */
.hero-noise {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
.hero-grid {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image: radial-gradient(rgba(30,144,255,0.065) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position:absolute; border-radius:50%;
  pointer-events:none; filter:blur(100px);
}
.hero-orb-1 {
  width:900px; height:900px;
  background: radial-gradient(circle, rgba(30,144,255,0.09), transparent 70%);
  top:-280px; left:-320px;
  animation: orb1 22s ease-in-out infinite;
}
.hero-orb-2 {
  width:650px; height:650px;
  background: radial-gradient(circle, rgba(123,92,250,0.09), transparent 70%);
  bottom:-180px; right:-150px;
  animation: orb2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(30,144,255,0.06), transparent 70%);
  top:20%; right:30%;
  animation: orb3 14s ease-in-out infinite;
}

.hero-content {
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 40px 28px 60px;
}

/* hero logo mark (above eyebrow) */
.hero-logo-mark {
  margin-bottom: 20px;
  animation: fadeInUp 0.4s ease both;
}
.hero-logo-mark img {
  width: 160px; height: 160px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 28px rgba(30,144,255,0.65)) drop-shadow(0 0 56px rgba(123,92,250,0.45));
}

/* hero left copy */
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  border: 1px solid rgba(30,144,255,0.22);
  background: rgba(30,144,255,0.06);
  border-radius:100px; padding:6px 16px 6px 10px;
  font-size:10px; font-family:var(--heading);
  letter-spacing:0.14em; color:var(--blue);
  margin-bottom:30px;
  animation: fadeInUp 0.55s ease both;
}
.eyebrow-dot {
  width:7px; height:7px;
  background:var(--blue); border-radius:50%;
  animation:pulse 2s infinite;
  box-shadow:0 0 10px var(--blue);
}
.hero-title {
  font-family:var(--heading);
  font-size: clamp(48px, 7vw, 100px);
  font-weight:900;
  letter-spacing:-0.05em; line-height:0.9;
  text-transform:uppercase;
  animation: fadeInUp 0.55s 0.07s ease both;
}
.hero-sub {
  color: rgba(200,215,255,0.72); font-size:17px; line-height:1.85;
  max-width:480px; margin:26px 0 38px;
  font-weight: 400; letter-spacing: 0.01em;
  animation: fadeInUp 0.55s 0.14s ease both;
}
.hero-btns {
  display:flex; gap:12px; flex-wrap:wrap;
  margin-bottom:0;
  animation: fadeInUp 0.55s 0.21s ease both;
}
.hero-proof {
  display:flex; align-items:center;
  animation: fadeInUp 0.55s 0.28s ease both;
}
.proof-item { text-align:center; padding:0 28px; }
.proof-item:first-child { padding-left:0; }
.proof-num {
  font-family:var(--heading); font-size:30px; font-weight:900;
  color:var(--text); letter-spacing:-0.04em; line-height:1; margin-bottom:5px;
}
.proof-label { font-size:10px; color:var(--muted); letter-spacing:0.08em; line-height:1.4; }
.proof-divider { width:1px; height:38px; background:var(--border); flex-shrink:0; }

/* ─── HERO ART SCENE ─────────────────────────── */
.hero-right {
  display:flex; justify-content:center; align-items:center;
  animation: fadeInRight 0.7s 0.18s ease both;
}
.hero-art-scene {
  position:relative;
  display:flex; align-items:center; justify-content:center;
}

/* glowing orb behind the art */
.art-orb {
  position:absolute; inset:-80px;
  background: radial-gradient(ellipse,
    rgba(30,144,255,0.16) 0%,
    rgba(123,92,250,0.1) 40%,
    transparent 70%);
  border-radius:50%; pointer-events:none;
  animation: floatSlow 8s ease-in-out infinite;
}

/* decorative rings */
.art-ring {
  position:absolute; border-radius:50%;
  border: 1px solid rgba(30,144,255,0.12);
  pointer-events:none;
  animation: ringPulse 6s ease-in-out infinite;
}
.art-ring-1 { inset:-40px; }
.art-ring-2 { inset:-80px; animation-delay:2s; border-color:rgba(123,92,250,0.08); }

/* the game art card */
.art-frame {
  position:relative; z-index:2; border-radius:16px; overflow:hidden;
  border: 1px solid rgba(30,144,255,0.25);
  box-shadow:
    0 0 0 1px rgba(123,92,250,0.12),
    0 50px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(30,144,255,0.12);
  animation: floatSlow 8s ease-in-out infinite;
}
.art-img {
  width:100%; max-width:520px; display:block;
  transform: perspective(1400px) rotateY(-6deg) rotateX(1.5deg);
  transition: transform 0.5s ease;
}
.art-frame:hover .art-img {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0.5deg);
}

/* scanlines overlay */
.art-scanlines {
  position:absolute; inset:0; pointer-events:none; z-index:3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  animation: scanlines 0.4s steps(1) infinite;
}

/* top-edge glare */
.art-glare {
  position:absolute; top:0; left:0; right:0;
  height:35%; pointer-events:none; z-index:4;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  border-radius:16px 16px 0 0;
}

/* coming-soon badge */
.art-badge {
  position:absolute; bottom:-22px; left:50%;
  transform:translateX(-50%);
  background:rgba(10,10,28,0.96);
  border: 1px solid rgba(30,144,255,0.45);
  border-radius:100px;
  padding:10px 20px;
  display:flex; align-items:center; gap:10px;
  z-index:10; backdrop-filter:blur(20px);
  box-shadow:0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(30,144,255,0.14);
  white-space:nowrap;
}
.art-badge-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--blue);
  animation:pulse 2s infinite;
  box-shadow:0 0 10px var(--blue);
  flex-shrink:0;
}
.art-badge-label {
  font-family:var(--heading); font-size:11px; font-weight:700;
  letter-spacing:0.22em; color:var(--blue);
  text-transform:uppercase;
}
.art-badge-platforms { font-family:var(--heading); font-size:11px; font-weight:600; letter-spacing:0.18em; color:rgba(210,225,255,0.88); text-transform:uppercase; }

/* scroll cue */
.scroll-cue {
  position:absolute; bottom:32px; left:50%;
  transform:translateX(-50%);
  z-index:5;
}
.scroll-cue-line {
  width:1px; height:52px;
  background: linear-gradient(180deg, var(--blue), transparent);
  margin:0 auto;
  animation: scrollCue 2.4s ease-in-out infinite;
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
  overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--bg2); padding:17px 0;
  position:relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content:''; position:absolute; top:0; bottom:0;
  width:120px; z-index:2; pointer-events:none;
}
.marquee-wrap::before { left:0; background:linear-gradient(90deg, var(--bg2), transparent); }
.marquee-wrap::after  { right:0; background:linear-gradient(270deg, var(--bg2), transparent); }
.marquee-track {
  display:flex; width:max-content; gap:40px;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family:var(--heading); font-size:11px; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:rgba(200,215,255,0.75); white-space:nowrap;
}
.marquee-track .mx { color:var(--blue); opacity:0.8; font-size:13px; }

/* ─── GAME SECTION ───────────────────────────── */
.game-section { position:relative; overflow:hidden; }
.game-section::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg,
    rgba(30,144,255,0.03) 0%, rgba(123,92,250,0.02) 100%);
  pointer-events:none;
}
.game-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.game-img-col { display:flex; justify-content:center; }
.game-copy-center {
  max-width:680px; margin:0 auto; text-align:center;
}
.game-copy-center .game-platform-badge { justify-content:center; }
.game-copy-center .btn { margin-top:8px; }

/* game art wrapper with animated gradient border */
.game-art-wrap {
  position:relative; border-radius:18px; overflow:hidden;
  isolation: isolate;
}
.game-art-wrap::before {
  content:'';
  position:absolute; inset:-1px; border-radius:19px;
  background: linear-gradient(135deg,
    rgba(30,144,255,0.55) 0%,
    rgba(123,92,250,0.4) 50%,
    rgba(30,144,255,0.1) 100%);
  z-index:0;
}
.game-art-glow {
  position:absolute; inset:-60px;
  background: radial-gradient(ellipse,
    rgba(30,144,255,0.14), rgba(123,92,250,0.1) 50%, transparent 70%);
  border-radius:50%; pointer-events:none; z-index:-1;
}
.game-art-border {
  position:absolute; inset:-2px; border-radius:20px;
  background: linear-gradient(135deg,
    rgba(30,144,255,0.3) 0%, transparent 60%);
  z-index:0; pointer-events:none;
}
.game-img {
  position:relative; z-index:1;
  width:100%; border-radius:17px; display:block;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.game-art-scanlines {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.05) 3px, rgba(0,0,0,0.05) 4px);
  border-radius:17px;
}
.game-platform-badge {
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(30,144,255,0.25);
  background:rgba(30,144,255,0.07);
  border-radius:100px; padding:6px 14px;
  font-size:10px; font-family:var(--heading); letter-spacing:0.15em;
  color:var(--blue); margin-bottom:24px;
}
.game-title {
  font-family:var(--heading);
  font-size:clamp(36px, 5.5vw, 68px);
  font-weight:900; line-height:0.9; letter-spacing:-0.05em; margin-bottom:22px;
}
.game-desc { color:rgba(190,205,255,0.65); line-height:1.9; margin-bottom:36px; font-size:15px; letter-spacing:0.01em; }
.feature-list { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:36px; }
.feature-item {
  display:flex; align-items:flex-start; gap:12px;
  background:var(--card); border:1px solid var(--border);
  border-radius:var(--r); padding:14px;
  transition:border-color 0.22s, background 0.22s, transform 0.22s;
}
.feature-item:hover {
  border-color:rgba(30,144,255,0.24); background:var(--card-hover);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.fi-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
.fi-title { font-family:var(--heading); font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text); margin-bottom:5px; }
.fi-desc  { font-size:12px; color:rgba(180,195,255,0.58); line-height:1.6; }

/* ─── FEATURE BAND ────────────────────────────── */
.feature-band {
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:linear-gradient(135deg,
    rgba(30,144,255,0.025) 0%, rgba(123,92,250,0.025) 100%);
  padding:34px 0;
}
.feature-band-inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:0;
}
.fb-item { display:flex; align-items:center; gap:14px; flex:1; padding:0 36px; }
.fb-icon  { font-size:28px; flex-shrink:0; }
.fb-title { font-family:var(--heading); font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--text); margin-bottom:4px; }
.fb-sub   { font-family:var(--heading); font-size:10px; font-weight:400; letter-spacing:0.1em; color:rgba(180,200,255,0.65); text-transform:uppercase; }
.fb-divider { width:1px; height:52px; background:var(--border); flex-shrink:0; }

/* ─── ABOUT ──────────────────────────────────── */
.about-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:62px; }
.about-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:36px 28px;
  transition:border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
  position:relative; overflow:hidden; text-align:left;
}
.about-card::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:160px; height:160px;
  background:radial-gradient(circle, rgba(30,144,255,0.06), transparent 70%);
  border-radius:50%; pointer-events:none;
}
.about-card:hover {
  border-color:var(--border-hi); background:var(--card-hover);
  transform:translateY(-5px);
  box-shadow:0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(30,144,255,0.1);
}
.about-card-num {
  font-family:var(--heading); font-size:9px; letter-spacing:0.44em;
  color:rgba(30,144,255,0.28); margin-bottom:22px;
}
.about-card-icon {
  width:54px; height:54px; border-radius:14px;
  background:rgba(30,144,255,0.07); border:1px solid rgba(30,144,255,0.14);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:22px;
}
.about-card h3 {
  font-family:var(--heading); font-size:13px; letter-spacing:0.1em;
  margin-bottom:12px; color:var(--text);
}
.about-card p { color:rgba(190,205,255,0.65); font-size:14px; line-height:1.85; }

/* ─── MANIFESTO ──────────────────────────────── */
.manifesto {
  position:relative; overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.manifesto-glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:1100px; height:550px;
  background:radial-gradient(ellipse,
    rgba(123,92,250,0.07) 0%, rgba(30,144,255,0.04) 50%, transparent 70%);
  pointer-events:none;
}
.manifesto-text {
  font-family:var(--heading);
  font-size:clamp(20px, 3.2vw, 40px);
  font-weight:800; line-height:1.4;
  max-width:880px; margin:0 auto 24px;
  color:rgba(230,238,255,0.94); letter-spacing:-0.025em;
}
.manifesto-text em {
  font-style:normal;
  background:linear-gradient(135deg, #1E90FF, #7B5CFA);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stats-row {
  display:flex; justify-content:center;
  margin-top:64px; border-top:1px solid var(--border); padding-top:52px;
}
.stat-item { text-align:center; flex:1; padding:0 28px; border-right:1px solid var(--border); }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:var(--heading);
  font-size:clamp(42px, 6vw, 72px);
  font-weight:900; letter-spacing:-0.04em; line-height:1; margin-bottom:12px;
  background:linear-gradient(135deg, #1E90FF, #7B5CFA);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-label { font-size:11px; color:var(--muted); letter-spacing:0.1em; }

/* ─── CONTACT ─────────────────────────────────── */
.contact-wrap { display:grid; grid-template-columns:1fr 1.65fr; gap:80px; align-items:start; }
.contact-heading {
  font-family:var(--heading); font-size:clamp(28px, 4vw, 46px);
  font-weight:900; letter-spacing:-0.04em; margin-bottom:16px; line-height:1;
}
.contact-sub { color:rgba(190,205,255,0.65); font-size:15px; line-height:1.85; margin-bottom:28px; letter-spacing:0.01em; }
.contact-detail {
  display:flex; align-items:center; gap:12px;
  padding:14px 18px; background:var(--card);
  border:1px solid var(--border); border-radius:12px;
  margin-bottom:10px; font-size:13px;
  transition:border-color 0.22s, background 0.22s, box-shadow 0.22s;
  color:var(--muted);
}
.contact-detail:hover {
  border-color:var(--border-hi); background:var(--card-hover);
  box-shadow:0 0 18px rgba(30,144,255,0.08);
}
.contact-detail-icon { font-size:18px; }
.contact-detail a { color:var(--muted); transition:color 0.2s; }
.contact-detail:hover a { color:var(--text); }

.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:14px; }
.form-group.full { grid-column:1/-1; }
.form-group label {
  display:block; font-size:9px; font-family:var(--heading);
  letter-spacing:0.22em; color:rgba(180,195,255,0.32);
  margin-bottom:8px; text-transform:uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; background:rgba(255,255,255,0.025);
  border:1px solid var(--border); border-radius:10px;
  padding:13px 16px; color:var(--text);
  font-family:var(--body); font-size:14px;
  outline:none; transition:border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance:none; appearance:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--blue); background:rgba(30,144,255,0.04);
  box-shadow:0 0 0 3px rgba(30,144,255,0.12);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
  padding-right:36px; cursor:pointer;
}
.form-submit { width:100%; justify-content:center; margin-top:4px; padding:16px; }
.success-msg {
  display:none; text-align:center; padding:52px 36px;
  background:rgba(30,144,255,0.04);
  border:1px solid rgba(30,144,255,0.18); border-radius:16px;
}
.success-msg.show { display:block; }
.success-icon { font-size:36px; margin-bottom:16px; color:var(--blue); font-family:var(--heading); font-weight:900; }
.success-msg h3 { font-family:var(--heading); font-size:16px; color:var(--blue); margin-bottom:10px; }
.success-msg p { color:var(--muted); font-size:14px; }

/* ─── DIVIDER ─────────────────────────────────── */
.divider {
  height:1px; border:none;
  background:linear-gradient(90deg,
    transparent 0%, var(--border-hi) 30%, var(--border-hi) 70%, transparent 100%);
}

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero { padding:164px 0 78px; position:relative; overflow:hidden; }
.page-hero::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:800px; height:400px;
  background:radial-gradient(ellipse, rgba(30,144,255,0.07), transparent 70%);
  pointer-events:none;
}
.page-title {
  font-family:var(--heading);
  font-size:clamp(40px, 8vw, 80px);
  font-weight:900; letter-spacing:-0.05em; line-height:1; margin-bottom:18px;
}
.page-sub { color:var(--muted); font-size:16px; max-width:540px; margin:0 auto; line-height:1.82; }

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { max-width:760px; margin:56px auto 0; }
.faq-item { border:1px solid var(--border); border-radius:14px; margin-bottom:10px; overflow:hidden; transition:border-color 0.2s; }
.faq-item.open { border-color:rgba(30,144,255,0.3); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; text-align:left; color:var(--text); font-size:14px; font-weight:500; background:var(--card); transition:background 0.2s; }
.faq-q:hover { background:var(--card-hover); }
.faq-icon { font-size:20px; color:var(--blue); flex-shrink:0; font-weight:300; transition:transform 0.3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.35s ease; color:var(--muted); font-size:14px; line-height:1.8; background:var(--card); }
.faq-item.open .faq-a { max-height:300px; padding:0 22px 22px; }

/* ─── PROSE ───────────────────────────────────── */
.prose { max-width:760px; margin:0 auto; }
.prose h2 { font-family:var(--heading); font-size:13px; letter-spacing:0.1em; margin:48px 0 14px; color:var(--blue); padding-bottom:10px; border-bottom:1px solid var(--border); }
.prose p { color:var(--muted); line-height:1.9; margin-bottom:18px; font-size:15px; }
.prose ul { color:var(--muted); padding-left:20px; margin-bottom:18px; }
.prose li { line-height:1.9; font-size:15px; margin-bottom:8px; }
.prose a { color:var(--blue); }

/* ─── PHONE MOCKUP (games page) ──────────────── */
.phone {
  position:relative; width:260px; background:#0d0d18;
  border-radius:44px; border:2px solid rgba(255,255,255,0.1);
  padding:16px 10px 22px;
  box-shadow:
    0 0 0 5px rgba(8,8,18,0.95),
    0 60px 120px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  flex-shrink:0;
}
.phone-notch {
  position:absolute; top:10px; left:50%; transform:translateX(-50%);
  width:88px; height:26px; background:#060610;
  border-radius:0 0 18px 18px; z-index:5;
  border:1px solid rgba(255,255,255,0.05); border-top:none;
}
.phone-notch::after {
  content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:10px; height:10px; background:rgba(30,144,255,0.25);
  border-radius:50%; box-shadow:0 0 8px rgba(30,144,255,0.4);
}
.phone-screen { width:100%; border-radius:32px; overflow:hidden; position:relative; z-index:1; }
.phone-screen img { width:100%; display:block; object-fit:cover; }
.phone-home-bar { width:90px; height:5px; background:rgba(255,255,255,0.15); border-radius:3px; margin:10px auto 0; }
.phone-sm { width:200px; border-radius:36px; padding:13px 8px 18px; }
.phone-sm .phone-notch { width:70px; height:20px; }
.phone-sm .phone-screen { border-radius:26px; }
.phone-sm .phone-home-bar { width:70px; height:4px; margin-top:8px; }
.phone-lg { width:300px; border-radius:48px; padding:18px 12px 26px; }
.phone-lg .phone-notch { width:100px; height:28px; }
.phone-lg .phone-screen { border-radius:36px; }
.phone-lg .phone-home-bar { width:100px; height:5px; margin-top:12px; }
.phone-behind {
  position:absolute; transform:translateX(60px) translateY(20px) rotate(8deg) scale(0.88);
  z-index:0; opacity:0.65; filter:brightness(0.65) saturate(0.75);
}
.game-phone-scene { position:relative; display:flex; justify-content:center; align-items:center; }
.game-glow { position:absolute; inset:-80px; background:radial-gradient(ellipse, rgba(123,92,250,0.14) 0%, rgba(30,144,255,0.08) 50%, transparent 70%); border-radius:50%; pointer-events:none; z-index:-1; }
.game-phone-col { display:flex; justify-content:center; }

/* screenshots grid (games page) */
.screenshots-grid { display:flex; justify-content:center; gap:36px; flex-wrap:wrap; margin-top:60px; }
.gallery-label { text-align:center; }
.gallery-label-title { font-family:var(--heading); font-size:11px; font-weight:700; letter-spacing:0.1em; color:var(--text); margin-bottom:4px; }
.gallery-label-sub   { font-size:11px; color:var(--muted); }

/* gallery scroll (games page) */
.gallery-scroll-wrap { overflow:hidden; position:relative; }
.gallery-scroll-wrap::before, .gallery-scroll-wrap::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.gallery-scroll-wrap::before { left:0; background:linear-gradient(90deg, var(--bg), transparent); }
.gallery-scroll-wrap::after  { right:0; background:linear-gradient(270deg, var(--bg), transparent); }
.gallery-scroll { display:flex; gap:40px; padding:24px 60px 32px; overflow-x:auto; cursor:grab; scrollbar-width:none; }
.gallery-scroll::-webkit-scrollbar { display:none; }
.gallery-item { display:flex; flex-direction:column; align-items:center; gap:22px; flex-shrink:0; }
.gallery-item .phone { transition:transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-item:hover .phone { transform:translateY(-8px); box-shadow:0 0 0 5px rgba(8,8,18,0.95), 0 80px 140px rgba(0,0,0,0.9), 0 0 60px rgba(30,144,255,0.18); }

/* ─── FOOTER ──────────────────────────────────── */
footer { border-top:1px solid var(--border); padding:64px 0 36px; background:var(--bg2); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:64px; margin-bottom:52px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo img { width:28px; mix-blend-mode:screen; }
.footer-logo span { font-family:var(--heading); font-size:12px; font-weight:700; letter-spacing:0.14em; }
.footer-desc { color:var(--muted); font-size:13px; line-height:1.82; margin-bottom:12px; max-width:300px; }
.footer-email { font-size:12px; color:rgba(180,195,255,0.16); }
.footer-col h4 { font-family:var(--heading); font-size:9px; letter-spacing:0.36em; color:var(--muted); text-transform:uppercase; margin-bottom:18px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { font-size:13px; color:rgba(180,195,255,0.32); transition:color 0.2s; }
.footer-col ul a:hover { color:var(--text); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--border); font-size:12px; color:rgba(180,195,255,0.18); }
.footer-bottom a { color:rgba(180,195,255,0.32); transition:color 0.2s; }
.footer-bottom a:hover { color:var(--text); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width:1060px) {
  .hero-content { grid-template-columns:1fr; text-align:center; padding:100px 28px 64px; }
  .hero-left { display:flex; flex-direction:column; align-items:center; }
  .hero-sub { margin-left:auto; margin-right:auto; }
  .hero-proof { justify-content:center; }
  .hero-right { justify-content:center; }
  .art-img { max-width:100%; }

  .game-grid { grid-template-columns:1fr; gap:60px; }
  .game-img-col { order:-1; }

  .feature-band-inner { flex-wrap:wrap; gap:24px; }
  .fb-divider { display:none; }
  .fb-item { width:45%; }

  .about-cards { grid-template-columns:1fr 1fr; }
  .contact-wrap { grid-template-columns:1fr; gap:48px; }
  .footer-top { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  .section { padding:80px 0; }
  .nav-links, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .hero-content { padding:100px 20px 60px; }
  .hero-title { font-size:clamp(44px,13vw,76px); }
  .about-cards { grid-template-columns:1fr; }
  .feature-list { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-group { grid-column:1/-1 !important; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .stats-row { flex-direction:column; gap:36px; border-top:none; padding-top:0; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); padding-bottom:36px; }
  .stat-item:last-child { border-bottom:none; padding-bottom:0; }
  .feature-band-inner { flex-direction:column; gap:20px; }
  .fb-item { width:100%; }
  .proof-item { padding:0 14px; }
  .proof-num { font-size:24px; }
  .phone-lg { width:240px; }
  .phone-behind { display:none; }
  .scroll-cue { display:none; }
}

@media (max-width:480px) {
  .hero-title { font-size:clamp(38px,11vw,60px); }
  .art-img { max-width:90vw; }
}

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