:root {
  --ink: #10221e;
  --paper: #f4f3ee;
  --line: #cdd2c8;
  --signal: #d8ff43;
  --muted: #61706a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: inherit;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.07em;
  text-decoration: none;
}

.status,
.eyebrow,
.section-label,
footer {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
}

.hero {
  min-height: 630px;
  padding: clamp(90px, 15vw, 170px) 0 100px;
}

.eyebrow {
  margin: 0 0 22px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.065em;
}

h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  font-weight: 650;
  line-height: 0.9;
}

h1 em {
  color: #668516;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.lede {
  max-width: 540px;
  color: #384943;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  margin-top: 25px;
  padding: 0.95rem 1.1rem;
  background: var(--ink);
  color: white;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #2d5046;
  transform: translateY(-2px);
}

.overview {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) 2fr;
  gap: 48px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-label {
  display: flex;
  gap: 1rem;
}

.section-label p {
  margin: 0;
}

.overview-copy h2,
.release h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 590;
  line-height: 0.96;
}

.overview-copy p {
  max-width: 560px;
  color: #43524c;
  font-size: 1.1rem;
  line-height: 1.6;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 265px;
  padding: 30px 28px;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.number {
  color: #668516;
  font-size: 0.8rem;
  font-weight: 750;
}

.principles h3 {
  margin: 52px 0 9px;
  font-size: 1.6rem;
  font-weight: 650;
}

.principles p {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.release {
  margin: 100px 0;
  padding: clamp(48px, 8vw, 86px);
  background: var(--signal);
}

.release h2 {
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  main,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 540px;
  }

  .overview,
  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: auto;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles h3 {
    margin-top: 34px;
  }

  footer {
    gap: 0.75rem;
    flex-direction: column;
  }
}
