/* ── RESET & VARS ─────────────────────────────────────────── */
:root {
  --bg: #080c14;
  --card: #0d1320;
  --card2: #111827;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.14);
  --text: #f0f4ff;
  --muted: rgba(240,244,255,0.45);
  --orange: #f97316;
  --purple: #a855f7;
  --cyan: #06b6d4;
  --green: #22c55e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* noise overlay */
body::after {
  content: '';
  position: fixed; inset: 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.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998;
}

/* ── ORBS ─────────────────────────────────────────────────── */
.orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.orb-1 { width: 500px; height: 500px; background: #f97316; top: -150px; right: -150px; opacity: 0.10; }
.orb-2 { width: 400px; height: 400px; background: #a855f7; bottom: 0; left: -120px; opacity: 0.09; }
.orb-3 { width: 300px; height: 300px; background: #06b6d4; top: 45%; right: -80px; opacity: 0.07; }

/* ── NAV ──────────────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}
#mainNav.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 3px;
  color: var(--text); text-decoration: none;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.lang-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.lang-btn:not(.active):hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.btn-nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 100px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff; text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* hamburger */
#menuBtn {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; font-size: 22px; padding: 4px;
}

#mobileMenu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,12,20,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
#mobileMenu.open { opacity: 1; pointer-events: auto; }
#mobileMenu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: 3px;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
#mobileMenu a:hover { color: var(--orange); }
#mobileMenu .close-btn {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--muted);
  font-size: 28px; cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  #menuBtn { display: block; }
  #mobileMenu { display: flex; pointer-events: none; }
  #mobileMenu.open { pointer-events: auto; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px 32px;
  max-width: 900px; margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-brand .nav-logo { font-size: 22px; display: inline-block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 200px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom a { color: var(--orange); text-decoration: none; }

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
#cookieBanner {
  position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
  z-index: 9999; transition: bottom 0.4s cubic-bezier(0.34,1.2,0.64,1);
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  max-width: 90vw; width: 520px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
#cookieBanner.show { bottom: 24px; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-yes {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  background: var(--orange); color: #fff; border: none; cursor: pointer; transition: all 0.2s;
}
.cookie-yes:hover { filter: brightness(1.1); }
.cookie-no {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  background: transparent; color: var(--muted); border: 1px solid var(--border2); cursor: pointer; transition: all 0.2s;
}
.cookie-no:hover { color: var(--text); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { 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; }

/* ── COMMON BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 28px rgba(249,115,22,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: 100px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border2); text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-1px); }

/* ── SECTION LABEL ────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; display: block;
}

/* ── BADGE ────────────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(249,115,22,0.35);
  padding: 4px 14px; border-radius: 100px;
}

/* ── PLAYSTORE BADGE ──────────────────────────────────────── */
.playstore-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 18px; text-decoration: none;
  transition: all 0.2s;
}
.playstore-badge:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.playstore-badge .ps-icon { font-size: 24px; }
.playstore-badge .ps-text { display: flex; flex-direction: column; }
.playstore-badge .ps-sub { font-size: 10px; color: var(--muted); font-weight: 500; }
.playstore-badge .ps-name { font-size: 14px; font-weight: 700; color: var(--text); }
