*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-88);
  font-family: var(--font-sans);
  font-weight: var(--w-normal);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

a:hover {
  color: var(--signal);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  color: var(--ink-100);
  line-height: 1.05;
}

p {
  margin: 0;
}

.h0 {
  font-size: clamp(64px, 12vw, 124px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.h1 {
  font-size: clamp(40px, 6vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.h4 {
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.h5 {
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--w-medium);
}

.body-lg {
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink-64);
}

.body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-64);
}

.body-sm {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-64);
}

.label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-64);
  font-weight: var(--w-medium);
}

.signal-text {
  color: var(--signal);
}

.glow-text {
  color: var(--glow);
}

.gold-text {
  color: var(--gold);
}

.ink-100 { color: var(--ink-100); }
.ink-88  { color: var(--ink-88); }
.ink-64  { color: var(--ink-64); }
.ink-48  { color: var(--ink-48); }

.container {
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 var(--s-24);
}

.container-lg {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--s-24);
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--s-24);
}

section {
  padding: var(--s-120) 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--s-80) 0;
  }
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: var(--s-16);
  padding: 6px 12px;
  border: 1px solid var(--ink-16);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-64);
}

::selection {
  background: var(--signal);
  color: var(--ink-100);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
