:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif;
  background: #050607;
  color: #f4f7f5;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050607;
}

a {
  color: #65e7ef;
  text-underline-offset: 3px;
}

a:hover {
  color: #b8fbff;
}

a:focus-visible {
  outline: 2px solid #65e7ef;
  outline-offset: 4px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #22282a;
  background: rgba(5, 6, 7, 0.92);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.nav-inner {
  width: min(920px, calc(100% - 32px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: #f4f7f5;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  color: #aeb8b8;
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: #c7ff30;
}

main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c7ff30;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 850;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: #b8c1c1;
  font-size: 18px;
  line-height: 1.62;
}

.status-row {
  margin-top: 30px;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid #22282a;
  border-bottom: 1px solid #22282a;
  color: #b8c1c1;
  font-size: 13px;
  font-weight: 700;
}

.status-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #c7ff30;
  box-shadow: 0 0 12px rgba(199, 255, 48, 0.72);
}

.language-band {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid #22282a;
}

.language-band:first-of-type {
  margin-top: 52px;
}

.language-label {
  margin: 0 0 28px;
  color: #798484;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

p,
li {
  color: #b8c1c1;
  font-size: 16px;
  line-height: 1.68;
}

ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 7px;
}

.action-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.action {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #293033;
  border-radius: 8px;
  background: #0d1011;
  color: #f4f7f5;
  text-decoration: none;
}

.action:hover {
  border-color: #65e7ef;
  color: #f4f7f5;
}

.action strong {
  font-size: 16px;
}

.action span {
  color: #8f9a9a;
  font-size: 13px;
  line-height: 1.45;
}

.notice {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid #ff9e73;
  background: #11100f;
  color: #c8c0bb;
  font-size: 14px;
  line-height: 1.58;
}

footer {
  border-top: 1px solid #22282a;
}

.footer-inner {
  width: min(920px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #6f7979;
  font-size: 12px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 56px;
  }
}

@media (max-width: 640px) {
  .nav-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  main {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
