* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(247,156,53,.055), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(121,183,255,.055), transparent 28%),
    linear-gradient(180deg, #05080f 0%, #04070d 100%);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
}
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: rgba(247,156,53,.25); color: #fff; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ffab47 0%, #ffa55c 26%, #d9a0d7 54%, #b58bff 77%, #88a7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.eyebrow,
.sidebar__role,
.sidebar__nav-label,
.sidebar__num,
.hero__keywords,
.hero__right-words,
.section__eyebrow,
.project__tag,
.filter,
.footer__meta,
.modal__eyebrow,
.metric__label {
  text-transform: uppercase;
  letter-spacing: .16em;
}
.section {
  position: relative;
  border-bottom: 1px solid rgba(123,153,198,.14);
}
.section__inner {
  width: calc(100% - 64px);
  max-width: 1288px;
  margin: 0 auto;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
