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

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

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

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

.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.mono { font-family: var(--mono); }

.shell {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding: var(--section-pad-y) var(--gutter);
  z-index: 2;
}

.section--bordered { border-top: 1px solid var(--line); }
.section--panel { background: var(--panel); }

.section__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.headline-xl {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: 72px;
  margin: 0 0 80px;
  max-width: 1100px;
}

.headline-xl .dim { color: var(--dim); }
.headline-xl .accent { color: var(--accent); }

.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-rule .rule {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .headline-xl { font-size: 44px; margin-bottom: 48px; }
}

@media (max-width: 600px) {
  .headline-xl { font-size: 36px; }
}
