:root {
  color-scheme: dark;
  --bg: #0b1020;
  --panel: #121a2f;
  --text: #f8fafc;
  --muted: #a7b2c5;
  --cyan: #22d3ee;
  --rose: #fb7185;
  --lime: #bef264;
  --line: rgba(248, 250, 252, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #0b1020 0%, #10182b 48%, #161126 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(34rem, 74vh) auto;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.hero-copy {
  padding-block: 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 10ch;
  margin-block-end: 1rem;
  font-size: clamp(4.2rem, 6.4rem, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  aspect-ratio: 1;
  width: min(100%, 24rem);
  justify-self: end;
}

.visual-grid span {
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.26), rgba(251, 113, 133, 0.2));
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.12);
}

.visual-grid span:nth-child(2n) {
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.22), rgba(34, 211, 238, 0.18));
}

.visual-grid span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.24), rgba(190, 242, 100, 0.16));
}

.status-band {
  border-top: 1px solid var(--line);
  background: rgba(18, 26, 47, 0.74);
}

.status-band > div {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0 2.4rem;
}

h2 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.status-band p {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-shell {
    grid-template-rows: auto auto;
  }

  .hero {
    width: min(100% - 32px, 38rem);
    min-height: 88vh;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: center;
  }

  .hero-copy {
    padding-block: 4rem 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 4.1rem, 4.1rem);
  }

  .lede {
    font-size: 1.08rem;
  }

  .visual-grid {
    width: min(100%, 18rem);
    justify-self: start;
    margin-bottom: 3rem;
  }

  .status-band > div {
    width: min(100% - 32px, 38rem);
  }
}
