:root {
  color-scheme: dark;
  --bg: #07080a;
  --panel: #11151a;
  --panel-2: #161114;
  --text: #f2f4ef;
  --muted: #aab3b2;
  --acid: #b7ff4a;
  --cyan: #40f6ff;
  --pink: #ff3978;
  --line: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(64, 246, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(183, 255, 74, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(255, 57, 120, 0.18), transparent 28rem),
    #07080a;
  background-size: 4rem 4rem, 4rem 4rem, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 25rem);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: 86vh;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.55) 55%, rgba(7, 8, 10, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255, 255, 255, 0.035) 7px);
  pointer-events: none;
}

.hero-copy,
.console-panel,
.signal-grid {
  position: relative;
  z-index: 1;
}

.kicker,
.section-label {
  margin: 0 0 0.85rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 12vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.console-panel {
  align-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 17, 20, 0.92), rgba(17, 21, 26, 0.92));
  box-shadow: 0 0 0 1px rgba(64, 246, 255, 0.1), 0 1rem 4rem rgba(0, 0, 0, 0.55);
}

.console-top {
  display: flex;
  gap: 0.45rem;
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.console-top span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--pink);
}

.console-top span:nth-child(2) {
  background: var(--acid);
}

.console-top span:nth-child(3) {
  background: var(--cyan);
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.1rem;
}

dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

dt {
  color: var(--muted);
  font-size: 0.84rem;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.signal-grid {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 2.2rem);
  grid-auto-rows: 2.2rem;
  gap: 0.6rem;
  opacity: 0.5;
}

.signal-grid span {
  border: 1px solid rgba(64, 246, 255, 0.55);
  background: rgba(183, 255, 74, 0.08);
}

.signal-grid span:nth-child(3n) {
  border-color: rgba(255, 57, 120, 0.75);
  background: rgba(255, 57, 120, 0.08);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(12rem, 24rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 6vw, 5rem);
  background: #f2f4ef;
  color: #101214;
}

.content-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.content-band .section-label {
  color: #7d1540;
}

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

article {
  min-height: 14rem;
  padding: 1.2rem;
  border: 1px solid #c9cfca;
  border-radius: 8px;
  background: #ffffff;
}

article h3 {
  margin-bottom: 0.75rem;
  color: #11151a;
  font-size: 1.15rem;
  letter-spacing: 0;
}

article p {
  margin-bottom: 0;
  color: #4d5653;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .hero,
  .content-band,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  h1 {
    max-width: 8ch;
  }

  .console-panel {
    align-self: auto;
  }

  .signal-grid {
    grid-template-columns: repeat(4, 1.45rem);
    grid-auto-rows: 1.45rem;
    opacity: 0.28;
  }
}

@media (max-width: 460px) {
  .hero,
  .content-band {
    padding-inline: 1.1rem;
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.6rem);
  }

  dl div {
    display: grid;
    gap: 0.2rem;
  }

  dd {
    text-align: left;
  }
}
