:root {
  --color-bg: #201e24;
  --color-bg-light: #e3e6f4;
  --color-accent: #d8d933;
  --color-text: #201e24;
  --color-text-inverse: #ffffff;

  --font-display: "Futura PT", "Futura", "Poppins", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --fs-hero: clamp(2.5rem, 6vw, 4.6875rem);
  --fs-h1: clamp(2rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 2rem);
  --fs-cta: clamp(1.125rem, 1.6vw, 1.875rem);
  --fs-body: clamp(1rem, 1.4vw, 1.375rem);
  --fs-small: clamp(0.875rem, 1vw, 1rem);

  --radius-pill: 100px;
  --radius-card: 49px;
  --radius-bubble: 245px;

  --section-pad-y: clamp(3rem, 6vw, 6rem);
  --section-pad-x: clamp(1.25rem, 4vw, 3.125rem);

  --container-max: 1340px;

  --transition: 220ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-text-inverse);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
}

.eyebrow { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.04em; text-transform: uppercase; }
.display { font-family: var(--font-display); font-weight: 700; line-height: 0.95; letter-spacing: -0.04em; text-transform: uppercase; }
.lead { font-family: var(--font-body); font-weight: 400; }
.italic-legal { font-family: var(--font-body); font-style: italic; font-weight: 200; font-size: var(--fs-small); }
