@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap");

:root {
  --bg-light: #182220;
  --bg-dark: #011a16;
  --hi-green: #219d87;
  --lo-green: #7fa199;
  --white: #ffffff;
  --grey: #a5a5a5;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-xxl: 3rem;
  --space-xxxl: 3.75rem;
  --page-gutter: clamp(var(--space-lg), 6vw, var(--space-xxl));
  --content-width: 45rem;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--bg-light);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.page-shell {
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: clamp(var(--space-xl), 9vw, var(--space-xxxl)) var(--page-gutter);
}

.content-width {
  max-width: var(--content-width);
}

.page-title,
.section-title,
.subsection-title,
.body-copy,
.muted-copy {
  margin: 0;
}

.page-title {
  font-size: clamp(1.875rem, 7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.375rem, 5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.subsection-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
}

.body-copy {
  font-weight: 400;
}

.muted-copy {
  color: var(--grey);
}

a {
  color: var(--hi-green);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--white);
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-bottom: clamp(var(--space-xl), 7vw, var(--space-xxl));
  font-size: 0.875rem;
  font-weight: 600;
}

.content-section {
  margin-top: clamp(var(--space-lg), 6vw, var(--space-xl));
}

.content-section > * + * {
  margin-top: var(--space-md);
}

.home-page {
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  text-align: center;
}

.home-page .page-shell {
  padding-block: var(--space-xl);
}

.home-logo {
  display: block;
  width: clamp(11.5rem, 48vw, 17.5rem);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.home-kicker {
  margin: clamp(calc(var(--space-xxl) - 15px), calc(10vw - 15px), calc(var(--space-xxxl) + var(--space-md) - 15px)) 0 0;
  color: var(--hi-green);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-tagline {
  margin: calc(var(--space-sm) / 2) 0 0;
  color: var(--white);
  font-weight: 400;
}
