:root {
  color-scheme: dark;
  --bg: #080b0f;
  --panel: #101820;
  --line: #243241;
  --text: #eef5ff;
  --muted: #9fb1c2;
  --blue: #4da3ff;
  --cyan: #00e5ff;
  --green: #8bd17c;
}

* {
  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;
}

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

.hero {
  min-height: 92vh;
  padding: 28px clamp(20px, 5vw, 72px) 52px;
  background:
    linear-gradient(rgba(8, 11, 15, 0.66), rgba(8, 11, 15, 0.92)),
    url("./terminal-workspace-1440.png") center / cover;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 78px;
}

nav strong {
  color: var(--cyan);
  font-size: 15px;
}

nav div {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  color: #d5e5f5;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.shareLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.shareLinks a {
  border-bottom: 1px solid rgba(0, 229, 255, 0.45);
}

.primary,
.secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
}

.primary {
  background: var(--cyan);
  color: #001018;
}

.secondary {
  border: 1px solid rgba(238, 245, 255, 0.35);
  color: var(--text);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.heroMedia img {
  width: 100%;
  border: 1px solid rgba(238, 245, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

main {
  background: #0b1016;
}

.band,
.compare,
.download {
  padding: 72px clamp(20px, 5vw, 72px);
}

.band h2,
.compare h2,
.download h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

article h3 {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 18px;
}

article p,
.download p {
  color: var(--muted);
  line-height: 1.55;
}

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

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

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

td {
  color: #d7e4f0;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #101820;
}

.download p {
  max-width: 720px;
}

@media (max-width: 920px) {
  .heroGrid,
  .features {
    grid-template-columns: 1fr;
  }

  nav {
    margin-bottom: 44px;
  }

  .download {
    align-items: flex-start;
    flex-direction: column;
  }

  th,
  td {
    padding: 12px;
    font-size: 13px;
  }
}
