:root {
  color-scheme: dark;
  --bg: #0f1217;
  --panel: #171b22;
  --panel-2: #1d232c;
  --line: #2b3340;
  --text: #f2f5f8;
  --muted: #9aa7b7;
  --faint: #6f7b89;
  --accent: #22c86f;
  --accent-2: #43c6df;
  --danger: #f06c71;
  --radius: 8px;
  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;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 18, 23, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
}

.brand img {
  width: 30px;
  height: 30px;
}

.brand span span {
  color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

nav a:hover,
footer a:hover {
  color: var(--text);
}

main {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 72px);
  padding: 44px 0 36px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 850;
}

.primary-action {
  color: #06100b;
  background: linear-gradient(180deg, #27dd7d, var(--accent));
  box-shadow: 0 18px 40px rgba(34, 200, 111, 0.18);
}

.secondary-action {
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent-2), transparent 30%);
  background: rgba(67, 198, 223, 0.06);
}

.download-note {
  color: var(--muted);
}

.hero-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.hero-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-grid,
.download-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid {
  padding: 18px 0 28px;
}

.feature-grid article,
.download-card,
.status-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  padding: 22px;
}

.feature-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 45%);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(34, 200, 111, 0.08);
  font-weight: 900;
}

.feature-grid p,
.download-card p,
.status-panel p,
li {
  color: var(--muted);
  line-height: 1.5;
}

.downloads-panel,
.status-panel {
  margin: 28px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.download-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.download-card.recommended {
  border-color: color-mix(in srgb, var(--accent), transparent 58%);
}

.badge {
  justify-self: start;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 42%);
  border-radius: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.dev {
  color: var(--accent-2);
  border-color: color-mix(in srgb, var(--accent-2), transparent 42%);
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.status-list div:last-child {
  border-bottom: 0;
}

.status-list span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.status-list strong {
  color: var(--accent);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--faint);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero,
  .feature-grid,
  .download-cards,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions a {
    width: 100%;
  }
}
