:root {
  color-scheme: dark;
  --background: #101312;
  --foreground: #f3f2eb;
  --muted: #b7b8ae;
  --accent: #c6e58a;
  --line: rgba(243, 242, 235, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(198, 229, 138, 0.12), transparent 30rem),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 4rem, 80rem);
  margin: 0 auto;
  padding: 1.5rem 0;
}

.wordmark {
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.wordmark:focus-visible,
.language-switcher button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.language-switcher {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switcher button {
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--accent);
}

.landing-page {
  display: grid;
  min-height: calc(100vh - 4.5rem);
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 48rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 10vw, 7rem) 0;
}

.eyebrow,
.status {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

h1 {
  max-width: 10ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(3.25rem, 10vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.intro {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.status {
  margin-top: 2.5rem;
}

footer {
  padding: 0 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 3rem);
    padding: 1.25rem 0;
  }

  .landing-page {
    min-height: calc(100vh - 4rem);
    padding: 1.5rem;
  }

  footer {
    padding: 0 1.5rem 1.25rem;
  }
}
