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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h-mobile) + 8px); }
@media (min-width: 768px) { html { scroll-padding-top: calc(var(--header-h) + 8px); } }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--accent) 5%, var(--bg)) 0%, var(--bg) 60%);
  background-attachment: fixed;
  overflow-x: clip;
  max-width: 100vw;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[hidden] { display: none !important; }

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

figure { margin: 0; }
blockquote { margin: 0; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; color: var(--text); margin: 0; line-height: 1.15; letter-spacing: -.005em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-2); }

button { font-family: inherit; cursor: pointer; }

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

::placeholder { color: var(--text-mute); opacity: 1; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; width: 100%; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-size: .76rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent); font-weight: 500;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }

.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--tight { padding-top: 32px; }
@media (min-width: 768px) { .section--tight { padding-top: 48px; } }

.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__title { margin-top: 14px; }
.section-head__lead { font-size: 1.05rem; color: var(--text-2); margin-top: 14px; max-width: 56ch; }
.section-head--center .section-head__lead { margin-left: auto; margin-right: auto; }

.muted { color: var(--text-2); }

ul.clean, ol.clean { list-style: none; padding: 0; margin: 0; }
