:root {
  color-scheme: dark;
  --bg: #111312;
  --panel: #1b1e1d;
  --panel-2: #242827;
  --text: #f4f6f4;
  --muted: #b7bdb8;
  --line: #343a37;
  --green: #44d86a;
  --blue: #5a9dff;
  --silver: #cfd5d2;
  --danger: #ff6464;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.4);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 19, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.language-select {
  min-height: 36px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--green);
  color: #08100b;
  font-weight: 760;
  box-shadow: 0 12px 40px rgba(68, 216, 106, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.github-button {
  width: auto;
  padding: 0 16px;
  display: inline-flex;
  gap: 9px;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.13);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 132px 24px 88px;
  background:
    radial-gradient(circle at 72% 22%, rgba(68, 216, 106, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(17, 19, 18, 0.76) 0%, rgba(17, 19, 18, 0.92) 68%, var(--bg) 100%),
    #111312;
}

.hero-inner,
.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 14px 0 18px;
  font-size: 96px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p,
.lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.requirement {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.stats-strip {
  padding: 0 24px;
  background: #111312;
}

.stats-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  padding: 28px 24px;
  background: #151816;
}

.metric strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: 86px 24px;
}

.section.alt {
  background: #171a18;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p,
.page-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature .symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #061109;
  background: var(--green);
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.screens {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: center;
}

.screens img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.screen-stack {
  display: grid;
  gap: 18px;
}

.page {
  padding: 128px 24px 88px;
}

.page-title {
  width: min(920px, 100%);
  margin: 0 auto 38px;
}

.release-list,
.download-panel {
  width: min(920px, 100%);
  margin: 0 auto;
}

.release-more {
  width: min(920px, 100%);
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

.release-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  margin-bottom: 14px;
}

.release-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.release-card h2,
.download-card h2 {
  margin: 0;
  font-size: 26px;
}

.release-date,
.muted {
  color: var(--muted);
}

.release-body {
  color: var(--silver);
  line-height: 1.58;
  white-space: pre-wrap;
  margin: 18px 0 0;
}

.download-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
}

.download-card img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.notice {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(90, 157, 255, 0.32);
  background: rgba(90, 157, 255, 0.08);
  color: var(--silver);
  line-height: 1.55;
}

.site-footer {
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#comments {
  width: min(920px, 100%);
  margin: 24px auto 0;
}

#foot-ads {
  width: 100%;
  text-align: center;
  margin: 30px 0;
}

@media (max-width: 840px) {
  .nav {
    min-height: 62px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    background:
      linear-gradient(180deg, rgba(17, 19, 18, 0.2), var(--bg) 84%),
      #111312;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: 68px;
  }

  .hero-copy p,
  .lead {
    font-size: 19px;
  }

  .metric strong {
    font-size: 34px;
  }

  .section-head h2,
  .page-title h1 {
    font-size: 44px;
  }

  .stats-inner,
  .feature-grid,
  .screens,
  .download-card {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .nav-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  .language-select {
    width: 100%;
  }

  .page {
    padding-top: 150px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 56px;
  }

  .section-head h2,
  .page-title h1 {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
    #foot-ads {
        display: none;
    }
}
