:root {
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #050505;
  color: #f7f7f8;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
}
a {
  color: inherit;
}
.shell {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
}
header {
  border-bottom: 1px solid #27272a;
  background: rgba(5, 5, 5, 0.92);
}
nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
}
.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ffcc00;
  color: #111;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid #29292d;
  border-radius: 9px;
  background: #101012;
}
.language-switcher button {
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #a1a1aa;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}
.language-switcher button[aria-pressed="true"] {
  background: #ffcc00;
  color: #111;
}
[data-language][hidden] {
  display: none;
}
html[lang="en"] [data-language="de"],
html[lang="de"] [data-language="en"] {
  display: none;
}
.links a,
footer a {
  color: #a1a1aa;
  font-size: 14px;
  text-decoration: none;
}
.links a:hover,
footer a:hover {
  color: #fff;
}
main {
  padding: 72px 0 96px;
}
.hero {
  padding: 46px 0 34px;
}
.eyebrow {
  color: #ffcc00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h2 {
  margin: 42px 0 12px;
  font-size: 24px;
}
h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}
p,
li {
  color: #b5b5bd;
  line-height: 1.7;
}
.lead {
  max-width: 660px;
  font-size: 19px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.card {
  display: block;
  min-height: 170px;
  padding: 22px;
  border: 1px solid #29292d;
  border-radius: 20px;
  background: #101012;
  text-decoration: none;
}
.card:hover {
  border-color: #52525b;
  transform: translateY(-2px);
}
.card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}
.card span {
  color: #a1a1aa;
  line-height: 1.55;
}
.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #574b08;
  border-radius: 14px;
  background: #1b1807;
  color: #f0dc78;
}
.document {
  padding: 32px;
  border: 1px solid #29292d;
  border-radius: 22px;
  background: #0c0c0e;
}
.document h1 {
  font-size: clamp(34px, 6vw, 52px);
}
.meta {
  color: #71717a;
  font-size: 14px;
}
footer {
  padding: 26px 0 42px;
  border-top: 1px solid #27272a;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 700px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
  .nav-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }
  .links {
    justify-content: flex-start;
    gap: 12px 16px;
  }
  main {
    padding-top: 36px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 0;
  }
  .document {
    padding: 22px;
  }
}
