/* ── CSS Variables ── */
:root {
  --bg: #050505;
  --bg2: #0d0d0d;
  --bg3: #141414;
  --surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #f5c518;
  --accent2: #ff4d1c;
  --accent3: #00c9ff;
  --text: #f0ede6;
  --text-dim: rgba(240, 237, 230, 0.5);
  --text-faint: rgba(240, 237, 230, 0.18);
  --glass-bg: rgba(5, 5, 5, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --marquee-bg: #000000;
  --marquee-text: #f5c518;
  --marquee-diamond: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg2);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
}

::selection {
  background: var(--surface);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button , a {
  cursor: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section commons */

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
}

.section-title-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--text);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}



/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item,
  .intro-top-label,
  .intro-title-line {
    will-change: auto;
  }

  .marquee-left .marquee-content,
  .marquee-right .marquee-content,
  .slider-track,
  .intro-badge-svg {
    animation: none !important;
  }
}
