:root {
  color-scheme: light;
  --ivory: #f2efe6;
  --paper: #faf8f2;
  --ink: #191a17;
  --muted: #666961;
  --line: #c9c5b9;
  --acid: #c7ff38;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--acid);
  padding: 0.8rem;
  z-index: 10;
}
.skip:focus {
  inset-inline-start: 0;
}
.site-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}
.mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--acid);
  border: 6px solid var(--ink);
}
.mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ivory);
  outline: 4px solid var(--ink);
}
nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  flex-wrap: wrap;
}
nav a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}
main {
  min-height: 65vh;
}
.hero {
  padding: clamp(5rem, 12vw, 10rem) clamp(1.25rem, 8vw, 8rem);
  max-width: 1380px;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 1100px;
  margin: 1.25rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.55;
}
.cta {
  display: inline-flex;
  margin-top: 2rem;
  padding: 1rem 1.3rem;
  gap: 2rem;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 850;
}
.manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.manifesto article {
  padding: clamp(1.5rem, 4vw, 4rem);
  border-inline-end: 1px solid var(--line);
}
.manifesto article:last-child {
  border: 0;
}
.manifesto span {
  color: var(--muted);
  font-size: 0.7rem;
}
h2 {
  margin-top: 4rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}
.manifesto p,
.prose p {
  color: var(--muted);
  line-height: 1.7;
}
.coordinate {
  padding: 5rem clamp(1.25rem, 8vw, 8rem);
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
}
.coordinate p {
  margin: 0.35rem 0;
}
.coordinate strong {
  color: var(--acid);
}
.prose {
  max-width: 1050px;
  padding: clamp(4rem, 10vw, 9rem) clamp(1.25rem, 8vw, 8rem);
}
.prose h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}
.prose aside {
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.status {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.language-gate,
.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.language-gate {
  padding: 0 clamp(1.25rem, 8vw, 8rem) 5rem;
}
.language-gate a,
.languages a {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.7rem;
}
.languages a[aria-current='page'] {
  background: var(--acid);
  border-color: var(--ink);
}
footer {
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}
footer p {
  margin-top: 1.25rem;
}
@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .manifesto {
    grid-template-columns: 1fr;
  }
  .manifesto article {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }
  h1 {
    font-size: clamp(3.3rem, 18vw, 6rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
