@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #e8c46a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-border: rgba(201, 168, 76, 0.3);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.12);
  --white-10: rgba(255, 255, 255, 0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: 120px 0;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(201, 168, 76, 0.15);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--white-70);
  max-width: 68ch;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  :root {
    --section-pad: 80px 0;
  }
}

/* ===== SECTION ===== */
section {
  position: relative;
  padding: var(--section-pad);
}

/* ===== GOLD ACCENT LINE ===== */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #000;
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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;
}

/* ===== DIVIDER — Arena light strip ===== */
.section-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.25), 0 0 4px rgba(201, 168, 76, 0.15);
  margin: 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== PAGE CONTENT STACK =====
   Parallax layers are now inside #hero with overflow: hidden.
   Sections below hero show solid body background (#0a0a0a).
*/
#page-content {
  position: relative;
  z-index: 10;
}

/* Section dividers sit above layers */
.section-divider {
  position: relative;
  z-index: 10;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10000;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
  pointer-events: none;
  /* No transition — instant tracking */
}

/* ===== ACTIVE NAV LINK ===== */
.nav__link--active {
  color: var(--gold) !important;
}

.nav__link--active::after {
  transform: scaleX(1) !important;
}

/* ===== SECTION ZOOM-IN TRANSITIONS ===== */
.section--animated {
  opacity: 0.85;
  transform: scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section--in-view {
  opacity: 1;
  transform: scale(1);
}

/* ===== REDUCED-MOTION OVERRIDES ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
  }

  .section--animated {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .division-row--animated {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #scroll-progress {
    display: none;
  }
}