:root {
  /* colors */
  --color-bg: #0a0a0a;
  --color-bg-raised: #141414;
  --color-bg-raised-2: #1c1c1c;
  --color-border: #2a2a2a;
  --color-text: #f5f5f0;
  --color-text-muted: #a3a09a;
  --color-accent: #c9a24b;
  --color-accent-hover: #ddb862;
  --color-accent-dim: #6b5527;

  /* type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --step-label: 0.8125rem;
  --step-body: 1.0625rem;
  --step-small: 0.9375rem;
  --step-h3: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --step-h2: clamp(2rem, 1.5rem + 2vw, 3rem);
  --step-h1: clamp(2.25rem, 1.5rem + 4vw, 5rem);

  /* spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* other */
  --radius: 4px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

body {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--step-body);
  overflow-x: hidden;
}

/* Ambient dark-gradient background pattern, behind all page content.
   The hero section has its own opaque video + scrim layer on top, so this
   pattern is never visible behind it. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(60% 50% at 0% 0%, rgba(201, 162, 75, 0.10) 0%, transparent 100%);
}

/* Skewed fading gold streaks, layered above the radial gradient. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(var(--color-accent) 0%, rgba(201, 162, 75, 0) 100%),
    linear-gradient(var(--color-accent) 0%, rgba(201, 162, 75, 0) 100%),
    linear-gradient(var(--color-accent) 0%, rgba(201, 162, 75, 0) 100%),
    linear-gradient(var(--color-accent) 0%, rgba(201, 162, 75, 0) 100%),
    linear-gradient(var(--color-accent) 0%, rgba(201, 162, 75, 0) 100%);
  opacity: 0.06;
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 20%, rgba(0,0,0,0) 36%, #000 55%, rgba(0,0,0,0.13) 67%, #000 78%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 11%, #000 25%, rgba(0,0,0,0.55) 41%, rgba(0,0,0,0.13) 67%, #000 78%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 9%, #000 20%, rgba(0,0,0,0.55) 28%, rgba(0,0,0,0.424) 40%, #000 48%, rgba(0,0,0,0.267) 54%, rgba(0,0,0,0.13) 78%, #000 88%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 17%, rgba(0,0,0,0.55) 26%, #000 35%, rgba(0,0,0,0) 47%, rgba(0,0,0,0.13) 69%, #000 79%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 20%, rgba(0,0,0,0.55) 27%, #000 42%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.13) 67%, #000 74%, #000 82%, rgba(0,0,0,0.47) 88%, rgba(0,0,0,0) 97%);
  mask-image:
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 20%, rgba(0,0,0,0) 36%, #000 55%, rgba(0,0,0,0.13) 67%, #000 78%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 11%, #000 25%, rgba(0,0,0,0.55) 41%, rgba(0,0,0,0.13) 67%, #000 78%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 9%, #000 20%, rgba(0,0,0,0.55) 28%, rgba(0,0,0,0.424) 40%, #000 48%, rgba(0,0,0,0.267) 54%, rgba(0,0,0,0.13) 78%, #000 88%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 17%, rgba(0,0,0,0.55) 26%, #000 35%, rgba(0,0,0,0) 47%, rgba(0,0,0,0.13) 69%, #000 79%, rgba(0,0,0,0) 97%),
    linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 20%, rgba(0,0,0,0.55) 27%, #000 42%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.13) 67%, #000 74%, #000 82%, rgba(0,0,0,0.47) 88%, rgba(0,0,0,0) 97%);
  transform: skewX(45deg);
  transform-origin: 0 0;
}

/* Two more ambient layers (subtle dot-grid + soft radial highlight), on a
   dedicated full-page div since body only has two pseudo-elements and both
   are already used above for the gradient and the gold streaks. */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.5) 1px, transparent 0);
  background-size: 22px 22px;
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(35% 30% at 50% 0%, rgba(201, 162, 75, 0.06) 0%, transparent 100%);
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-weight: 600;
}
