:root {
  color-scheme: dark;
  --bg: #101315;
  --bg-soft: #171c20;
  --panel: rgba(33, 39, 44, 0.86);
  --panel-strong: rgba(40, 46, 52, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.72);
  --accent: #f0a160;
  --accent-strong: #ffbf87;
  --accent-soft: rgba(240, 161, 96, 0.14);
  --shadow: rgba(0, 0, 0, 0.34);
  --network: #7cc5ef;
  --disk: #f1b46d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 192, 136, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(116, 189, 236, 0.12), transparent 26%),
    linear-gradient(180deg, #161b1f 0%, var(--bg) 58%);
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(22, 27, 31, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  box-shadow: 0 16px 30px -18px var(--shadow);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature-card,
.release-strip,
.install-card,
.footer {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 30px 70px -40px var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  padding: 34px;
  border-radius: 32px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-text {
  margin-top: 18px;
  max-width: 30rem;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, #f3b179 0%, #db8440 100%);
  color: #1c1712;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-meta li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  padding: 20px;
  border-radius: 32px;
}

.panel-window {
  height: 100%;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(32, 35, 39, 0.96), rgba(28, 31, 35, 0.96)),
    var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.panel-title {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.panel-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.mini-card {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card-wide {
  grid-column: 1 / -1;
}

.mini-card small,
.chart-labels span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-card strong,
.chart-labels strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mini-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.chart-labels {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.chart-labels strong {
  font-size: 15px;
  white-space: nowrap;
}

.sparkline {
  margin-top: 10px;
  height: 80px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(to bottom,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.06) 18px,
      rgba(255, 255, 255, 0.06) 19px);
  position: relative;
  overflow: hidden;
}

.sparkline::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sparkline-network::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0 82 L90 82 L96 80 L102 82 L188 82 L194 74 L200 82 L282 82 L288 81 L294 82 L332 82 L338 22 L346 82 L356 56 L364 82 L400 82' fill='none' stroke='%237cc5ef' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0 84 L90 84 L96 84 L102 83 L188 84 L194 83 L200 84 L282 84 L288 84 L294 84 L332 84 L338 68 L346 84 L356 74 L364 84 L400 84' fill='none' stroke='%239fd67a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sparkline-disk::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0 84 L268 84 L278 84 L286 82 L292 84 L300 84 L308 36 L316 84 L400 84' fill='none' stroke='%23f1b46d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M0 84 L268 84 L278 84 L286 70 L292 84 L300 84 L308 84 L316 58 L324 84 L400 84' fill='none' stroke='%23ef7d8a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-section,
.install-section {
  margin-top: 24px;
}

.section-head {
  padding: 0 2px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.feature-grid,
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-card,
.install-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card h3,
.install-card h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.feature-card p,
.install-card p,
.release-strip p,
.footer p,
.install-note {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.release-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px;
  border-radius: 28px;
}

.release-strip h2 {
  margin-top: 14px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.release-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.release-meta div {
  min-width: 120px;
}

.release-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-meta dd {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.install-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.install-card h3 {
  margin-top: 16px;
}

.install-note {
  max-width: 54rem;
  padding: 0 2px;
}

.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 28px;
}

.footer strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {

  .hero,
  .feature-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .release-strip,
  .footer,
  .chart-labels,
  .topbar {
    display: grid;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 24px, 1180px);
    padding-top: 12px;
  }

  .topbar,
  .hero-copy,
  .hero-panel,
  .feature-card,
  .release-strip,
  .install-card,
  .footer {
    border-radius: 22px;
  }

  h1 {
    font-size: 40px;
  }

  .panel-grid,
  .release-meta {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: start;
  }
}