/* ============================================
   BASE STYLES — Colors, Typography, Layout
   ============================================ */

:root {
  /* Core Dark Palette */
  --black: #0a0a0f;
  --midnight: #0e0e18;
  --charcoal: #151520;
  --slate: #1e1e30;
  --gray-dark: #2a2a40;
  --gray-mid: #3a3a55;
  --gray-light: #7a7a8a;
  --off-white: #e8e5df;
  --white: #f5f3ef;

  /* Brand Accent Colors */
  --lime: #c8ff00;
  --lime-dark: #9acc00;
  --lime-glow: rgba(200, 255, 0, 0.3);
  --lime-subtle: rgba(200, 255, 0, 0.08);
  --orange: #ff4d00;
  --orange-glow: rgba(255, 77, 0, 0.3);
  --blue: #00d4ff;
  --blue-glow: rgba(0, 212, 255, 0.3);
  --pink: #ff2d7b;
  --pink-glow: rgba(255, 45, 123, 0.3);
  --purple: #7b2ff7;
  --bronze: #cd7f32;
  --bronze-glow: rgba(205, 127, 50, 0.3);
  --silver: #c0c0c0;
  --silver-glow: rgba(192, 192, 192, 0.3);
  --gold: #d4a853;
  --gold-glow: rgba(212, 168, 83, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 8rem);
  --container-max: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
  color: var(--off-white);
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* Show default cursor on mobile/touch */
@media (hover: none) {
  body { cursor: auto; }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

a {
  color: var(--lime);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: none;
}
a:hover { color: var(--white); }

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

/* Selection */
::selection {
  background: var(--lime);
  color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* Sections */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.section--dark { background: var(--midnight); }
.section--accent { background: var(--charcoal); }

.section__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.text--accent { color: var(--lime); }

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9em 2.2em;
  border: 2px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn span, .btn { position: relative; z-index: 1; }

.btn--primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.btn--primary:hover { color: var(--black); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-mid);
}
.btn--ghost:hover { color: var(--black); border-color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--lime);
  border-color: var(--gray-dark);
}
.btn--outline:hover { color: var(--black); border-color: var(--white); }

.btn--accent {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--accent:hover { color: var(--black); }

.btn--large {
  padding: 1.1em 3em;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}
