:root {
  color-scheme: dark;
  --bg: #111315;
  --panel: #1b1f23;
  --panel-2: #232a2f;
  --text: #f2f5f7;
  --muted: #aab4bd;
  --line: #34404a;
  --blue: #33a6ff;
  --green: #6ee7a8;
  --yellow: #f4cc62;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

main {
  min-height: 100vh;
}

.hero,
.band,
.compare,
.install {
  padding: 72px max(24px, calc((100vw - 1120px) / 2));
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(51, 166, 255, 0.24), transparent 38%),
    linear-gradient(315deg, rgba(110, 231, 168, 0.16), transparent 32%),
    #111315;
}

.app-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: var(--blue);
  color: #06121d;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel > div,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 31, 35, 0.84);
  padding: 22px;
}

.metric {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.band {
  background: #15191c;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.feature-grid p,
.install p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.compare {
  background: #101214;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.install {
  background: var(--panel-2);
}

ol {
  max-width: 720px;
  padding-left: 24px;
}

.note {
  max-width: 720px;
  padding-top: 12px;
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero,
  .band,
  .compare,
  .install {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 32px;
  }

  .lede {
    font-size: 18px;
  }

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

  table {
    display: block;
    overflow-x: auto;
  }
}
