:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #211c00;
  background: #fffad1;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 214, 8, 0.55), transparent 28rem),
    #fffad1;
}

main {
  width: min(62rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 7rem) 0 3rem;
}

.logo {
  width: min(22rem, 72vw);
  height: auto;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 43rem;
  margin: 2rem 0 2.5rem;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
}

.parts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.part {
  display: flex;
  min-height: 9rem;
  padding: 1.4rem;
  flex-direction: column;
  justify-content: space-between;
  color: #211c00;
  background: #ffd608;
  border: 2px solid #211c00;
  border-radius: 0.35rem;
  box-shadow: 0.45rem 0.45rem 0 #211c00;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.part:hover,
.part:focus-visible {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: 0.25rem 0.25rem 0 #211c00;
}

.part span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part strong {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 2px solid #211c00;
}

nav a,
.license a {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.2em;
}

.license {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 42rem) {
  .parts {
    grid-template-columns: 1fr;
  }
}
