:root {
  --bg: #07080d;
  --panel: #101116;
  --panel-2: #151720;
  --line: #252837;
  --text: #f7f7f8;
  --muted: #a2a6b3;
  --faint: #747987;
  --green: #5de0a3;
  --blue: #83b7ff;
  --amber: #e0b15c;
  --red: #f07b83;
  --max: 1120px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.top {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 8, 13, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #303443;
  border-radius: 7px;
  background: #151720;
  color: #dfffea;
  font-family: var(--mono);
  font-size: 10px;
}

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

.nav-links a {
  text-decoration: none;
}

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

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 72px 20px 46px;
}

.eyebrow {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 16px;
  color: var(--text);
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.94;
  font-weight: 850;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--text);
  padding: 8px 13px;
  text-decoration: none;
  font-weight: 720;
}

.button.primary {
  border-color: rgba(93, 224, 163, 0.38);
  background: #133125;
  color: #eafff4;
}

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

.command {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0e14;
  color: #d7dae4;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 13px;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d0e14;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 54px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 14px;
}

.card p {
  margin: 0;
}

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

.compare th,
.compare td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.compare th {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

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

.demo-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 260px;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #080a10;
}

.demo-side,
.demo-rail {
  background: #101116;
  padding: 16px;
}

.demo-main {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 18px;
}

.demo-label {
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.session-card,
.turn-card,
.metric {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #151720;
  padding: 12px;
  margin-top: 10px;
}

.session-card strong,
.turn-card strong,
.metric strong {
  display: block;
  margin-bottom: 5px;
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(93, 224, 163, 0.34);
  border-radius: 999px;
  color: var(--green);
  padding: 2px 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 8px;
}

.bar {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 54px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.track {
  height: 8px;
  border-radius: 999px;
  background: #252837;
}

.fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.fill.blue {
  background: var(--blue);
}

.fill.amber {
  background: var(--amber);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--faint);
  padding: 28px 20px 42px;
  text-align: center;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .demo-main {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
