:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: #f2efe6;
  color: #191a17;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
}
a {
  color: inherit;
}
.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 60px;
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.languages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.languages a {
  font-size: 11px;
  padding: 8px 10px;
  border: 1px solid #c9c5b9;
  border-radius: 999px;
  text-decoration: none;
}
.languages [aria-current='page'] {
  background: #c7ff38;
  border-color: #191a17;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  margin-top: 70px;
}
.copy {
  border-top: 1px solid #191a17;
  padding-top: 28px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
}
h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 25px 0;
}
.lead {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  color: #52564f;
}
.cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 10px;
  background: #191a17;
  color: #c7ff38;
  font-weight: 800;
  text-decoration: none;
}
.pending {
  display: block;
  margin-top: 24px;
  max-width: 620px;
  padding: 16px;
  border: 1px solid #c9c5b9;
  border-radius: 10px;
  color: #52564f;
}
.evidence {
  background: #191a17;
  color: #faf8f2;
  padding: 28px;
  border-radius: 22px;
  align-self: start;
}
.evidence strong {
  display: block;
  color: #c7ff38;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.evidence p {
  line-height: 1.6;
}
.evidence ol {
  padding-inline-start: 20px;
  margin: 24px 0 0;
}
.evidence li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #c9c5b9;
  color: #666961;
  font-size: 12px;
}
@media (max-width: 760px) {
  .top {
    align-items: flex-start;
  }
  .hero {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .languages {
    max-width: 58%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
