/* GENEVA — reset + base typography */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  cursor: url("../img/cursor-lips.png?v=2") 6 6, auto;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  min-height: 100svh;
  overflow-wrap: break-word;
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -10%, color-mix(in srgb, var(--gv-gunmetal) 55%, transparent), transparent),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,0.012) 3px 4px),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 35%, rgba(0,0,0,0.6) 100%);
}

/* page-wide cursor spotlight */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle 550px at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.05), transparent 75%);
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
}

/* cursor reveals a grungy gold texture over otherwise blank page background */
.grunge-reveal {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("../img/grunge-gold-2.jpg?v=1");
  background-size: 500px auto;
  background-repeat: repeat;
  opacity: 1;
  mix-blend-mode: overlay;
  -webkit-mask-image: radial-gradient(circle 360px at var(--gx, 50%) var(--gy, 50%), black, transparent 75%);
  mask-image: radial-gradient(circle 360px at var(--gx, 50%) var(--gy, 50%), black, transparent 75%);
}
@media (prefers-reduced-motion: reduce) {
  .grunge-reveal { display: none; }
}

/* grungy film-grain texture, sits over everything, never blocks interaction */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 22ch;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { color: var(--text-dim); max-width: 62ch; }

.eyebrow, .mono, .tag, .stat-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--step--1);
}

::selection { background: var(--gv-accent); color: var(--gv-black); }

:focus-visible {
  outline: 2px solid var(--gv-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gv-accent);
  color: var(--gv-black);
  padding: var(--space-2) var(--space-3);
  z-index: 200;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

.wrap {
  max-width: 74rem;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
