:root {
  color-scheme: dark;
  --black: #000;
  --surface: #0b0b0b;
  --surface-raised: #111;
  --line: #2b2b2b;
  --line-strong: #474747;
  --white: #fff;
  --muted: #a5a5a5;
  --green: #b7ff45;
  --cyan: #5ce1e6;
  --pink: #ff5c9a;
  --yellow: #ffd166;
  --danger: #ff6678;
  --header-height: 4.5rem;
  --radius: 6px;
  --shell: 74rem;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--green);
  color: var(--black);
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: 4.5rem;
}

.section--compact {
  padding-top: 1rem;
}

.section-heading {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-heading > p {
  max-width: 34rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(50rem, calc(84svh - var(--header-height)));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 68% center;
}

.hero__scrim {
  background: rgba(0, 0, 0, 0.24);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 6rem 5rem;
}

.hero__content h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 7vw, 6rem);
  line-height: 0.98;
}

.hero__lede {
  max-width: 33rem;
  margin-bottom: 2rem;
  color: #ddd;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
}

.page-intro {
  display: grid;
  gap: 1.25rem;
  padding-block: 5rem 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  max-width: 10ch;
}

.page-intro > p,
.page-intro > div > p:last-child {
  max-width: 38rem;
  font-size: 1.1rem;
}

.page-intro--with-status {
  align-items: end;
}

.manifesto {
  padding-block: 5rem;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.manifesto h2 {
  max-width: 19ch;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--white);
  text-underline-offset: 0.25em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

@media (min-width: 48rem) {
  .shell {
    width: min(100% - 4rem, var(--shell));
  }

  .section {
    padding-block: 6rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
    align-items: end;
    margin-bottom: 3rem;
  }

  .page-intro {
    padding-block: 7rem 3.5rem;
  }

  .page-intro--with-status {
    grid-template-columns: 1fr auto;
  }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
