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

html {
  background: var(--void);
}

body.um {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.56;
  color: var(--text);
  background: var(--bg0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

.um-main {
  position: relative;
  isolation: isolate;
}

.um-main > :not(.um-atmos) {
  position: relative;
  z-index: 1;
}

.um-main [id] {
  scroll-margin-top: var(--nav-h);
}

.um-wrap {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.um-kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.875rem;
}

.um-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.um-lede {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-bottom: 0.35rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

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

.um-section {
  padding: clamp(56px, 11vw, 112px) 0;
}

.um-section--tight {
  padding: clamp(40px, 8vw, 72px) 0;
}

.um-grid {
  display: grid;
  gap: 20px;
}

.um-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .um-grid--2 {
    grid-template-columns: 1fr;
  }
}
