:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --panel: #14171c;
  --line: #2a2a32;
  --text: #e8eaf0;
  --muted: #9aa3b2;
  --teal: #4dd0c4;
  --amber: #ffbf5f;
  --coral: #ff4d7d;
}

* { box-sizing: border-box; }

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

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

.hero {
  min-height: 92vh;
  padding: 24px clamp(18px, 4vw, 56px) 56px;
  background:
    radial-gradient(circle at 76% 18%, rgba(77, 208, 196, 0.16), transparent 30%),
    linear-gradient(135deg, #0b0d10 0%, #10141a 58%, #161119 100%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

nav strong { color: var(--text); }
nav div { display: flex; gap: 18px; flex-wrap: wrap; }
nav a:hover { color: var(--teal); }

.hero-grid {
  min-height: calc(92vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 8vw, 106px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(77, 208, 196, 0.45);
  border-radius: 6px;
  color: var(--text);
  background: rgba(20, 23, 28, 0.72);
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: #06100f;
}

.console {
  border: 1px solid rgba(77, 208, 196, 0.28);
  border-radius: 8px;
  background: rgba(20, 23, 28, 0.82);
  padding: 22px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
}

.console-top, .meters {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.console strong { color: var(--text); }

.lane {
  height: 74px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-size: 64px 100%;
  overflow: hidden;
}

.lane.teal {
  background-image: linear-gradient(90deg, transparent 0 35%, rgba(77, 208, 196, 0.86) 35% 42%, transparent 42% 100%);
}

.lane.amber {
  background-image: linear-gradient(90deg, transparent 0 15%, rgba(255, 191, 95, 0.78) 15% 22%, transparent 22% 55%, rgba(255, 191, 95, 0.48) 55% 62%, transparent 62% 100%);
}

.lane.coral {
  background-image: linear-gradient(90deg, transparent 0 12%, rgba(255, 77, 125, 0.74) 12% 17%, transparent 17% 44%, rgba(77, 208, 196, 0.62) 44% 51%, transparent 51% 77%, rgba(255, 77, 125, 0.55) 77% 82%, transparent 82% 100%);
}

main { padding: 64px clamp(18px, 4vw, 56px); }

.band, .release {
  max-width: 980px;
  padding: 42px 0;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 0;
}

.band p, .release p, article p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.screenshots {
  padding: 16px 0 72px;
}

.section-head {
  max-width: 980px;
  margin-bottom: 24px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.screenshot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.screenshot-card.featured {
  grid-row: span 2;
}

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

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0b0d10;
}

.screenshot-card figcaption {
  min-height: 88px;
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.screenshot-card figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16px;
}

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

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

article h3 {
  margin: 0 0 10px;
  color: var(--teal);
}

@media (max-width: 840px) {
  .hero-grid, .cards, .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-card.featured, .screenshot-card.wide { grid-column: auto; grid-row: auto; }
  nav { align-items: flex-start; flex-direction: column; }
  .hero { min-height: auto; }
}
