:root {
  --white: #F5F5F3;
  --off-white: #111111;
  --light: #181818;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.15);
  --text: #F5F5F3;
  --muted: rgba(245,245,243,0.45);
  --muted2: rgba(245,245,243,0.2);
  --gold: #FCA306;
  --gold-light: rgba(252,163,6,0.12);
  --gold-mid: rgba(252,163,6,0.25);
  --gold-hover: #ffb420;
  --surface: #111111;
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080808;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-logo { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
}
.nav-links li { height: 100%; }
.nav-links a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom-color: var(--gold); font-weight: 500; }
.nav-cta {
  background: var(--gold);
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(252,163,6,0.3); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(252,163,6,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--text); }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* ── PAGE HERO (shared) ── */
.page-hero {
  padding: 130px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: #111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-block:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.01em;
}
.stat-num span { color: var(--gold); }
.stat-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  color: rgba(255,255,255,0.5);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

/* ── CARDS ── */
.card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 100px 24px 60px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  footer { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── EXIT-POP MODAL ── */
.exit-pop-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.exit-pop-overlay.active {
  display: flex;
  opacity: 1;
}
.exit-pop-modal {
  background: linear-gradient(135deg, #111 0%, #181818 100%);
  border: 1px solid rgba(252,163,6,0.2);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.exit-pop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.exit-pop-close:hover { color: var(--text); }
.exit-pop-image {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  display: block;
}
.exit-pop-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exit-pop-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.exit-pop-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 12px;
}
.exit-pop-headline .gold { color: var(--gold); }
.exit-pop-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.exit-pop-button {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.exit-pop-button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(252,163,6,0.35);
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 20px 0;
  z-index: 499;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.nav-mobile-menu.active {
  display: flex;
}
.nav-mobile-menu a {
  padding: 16px 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--gold);
  background: rgba(252,163,6,0.05);
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
}
