*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-outer);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(69, 93, 109, 0.16);
  pointer-events: none;
  content: "";
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

h2 {
  max-width: 18ch;
  font-size: var(--text-h2);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1.08;
}

data,
time,
.resource-token,
.showcase-copy__number,
.license-console dd {
  font-variant-numeric: tabular-nums;
}

:focus-visible {
  outline: 2px solid var(--color-elixir-bright);
  outline-offset: 3px;
}

::selection {
  background: var(--color-dark);
  color: var(--color-text);
}

.container,
.container-wide {
  width: min(calc(100% - (2 * clamp(1rem, 4vw, 3rem))), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - (2 * clamp(1rem, 3vw, 2.5rem))), var(--container-wide));
}

.section {
  padding-block: var(--section-space);
  border-top: 1px solid rgba(38, 59, 73, 0.58);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head {
  display: grid;
  max-width: 52rem;
  gap: var(--space-4);
  margin-bottom: clamp(2.75rem, 5vw, 5rem);
}

.section-head > p:last-child,
.lead {
  max-width: 44rem;
  color: var(--color-text-soft);
  font-size: var(--text-lg);
}

.eyebrow {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.text-gold {
  color: var(--color-gold-bright);
}

.status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: calc(var(--z-menu) + 1);
  padding: 0.75rem 1rem;
  background: var(--color-gold-bright);
  color: var(--color-ink);
  font-weight: 800;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
