:root {
  color-scheme: dark;
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #a7b0c0;
  --gold: #f4c35b;
  --blue: #89b4ff;
  --green: #72e0a7;
  --red: #ff9b9b;
  --stone: #d8c8a9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 195, 91, 0.18), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(137, 180, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #101827 0%, var(--bg) 45%, #070b16 100%);
  color: var(--text);
}

.shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 20px;
}

.hero {
  display: grid;
  gap: 18px;
  padding: 28px 0 20px;
}

.hero h1 {
  margin: 8px 0 0;
  font-size: clamp(2.4rem, 12vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow,
.label {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-card,
.card,
.project-card,
.staff-card,
.health-card,
.launch-card,
.guardrails article {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.hero-card {
  border-radius: 28px;
  padding: 22px;
}

.hero-card h2,
.card h2,
.section-heading h2 {
  margin: 8px 0 0;
  letter-spacing: -0.04em;
}

.hero-card p:last-child,
.card p,
.project-card p,
.staff-card p,
.staff-card small,
.health-card p,
.health-card small,
.launch-card p,
.guardrails p {
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}

.two {
  grid-template-columns: 1fr;
}

.card {
  border-radius: 28px;
  padding: 22px;
}

.card.priority {
  background: linear-gradient(145deg, rgba(244, 195, 91, 0.16), rgba(255, 255, 255, 0.07));
}

.card.warning {
  background: linear-gradient(145deg, rgba(137, 180, 255, 0.16), rgba(255, 255, 255, 0.07));
}

a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.card a,
.project-card a,
.links-grid a,
.launch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 195, 91, 0.35);
  background: rgba(244, 195, 91, 0.14);
  padding: 0 16px;
  color: #fff8df;
}

.section-heading {
  padding: 30px 0 12px;
}

.section-heading h2 {
  margin-top: 6px;
  font-size: clamp(1.6rem, 7vw, 3rem);
}

.projects,
.staff-grid,
.health-grid,
.launch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.project-card,
.staff-card,
.health-card,
.launch-card {
  min-height: 180px;
  border-radius: 26px;
  padding: 20px;
}

.staff-card,
.health-card,
.launch-card {
  min-height: 210px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
}

.health-card,
.launch-card {
  border-color: rgba(244, 195, 91, 0.18);
}

.launch-card.live {
  background: linear-gradient(145deg, rgba(114, 224, 167, 0.15), rgba(255, 255, 255, 0.045));
}

.launch-card.watch {
  background: linear-gradient(145deg, rgba(244, 195, 91, 0.13), rgba(255, 255, 255, 0.045));
}

.launch-card.future {
  background: linear-gradient(145deg, rgba(216, 200, 169, 0.12), rgba(255, 255, 255, 0.045));
}

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

.launch-actions a {
  margin-top: 0;
}

.project-card span,
.staff-card span,
.health-card span,
.launch-card span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-card.active span,
.staff-card.active span,
.health-card.active span,
.launch-card.live span {
  border-color: rgba(114, 224, 167, 0.45);
  color: var(--green);
}

.project-card.watch span,
.staff-card.watch span,
.health-card.watch span,
.launch-card.watch span {
  border-color: rgba(244, 195, 91, 0.45);
  color: var(--gold);
}

.project-card.stable span,
.staff-card.stable span,
.health-card.stable span {
  border-color: rgba(137, 180, 255, 0.45);
  color: var(--blue);
}

.staff-card.future span,
.health-card.future span,
.launch-card.future span {
  border-color: rgba(216, 200, 169, 0.45);
  color: var(--stone);
}

.project-card h3,
.staff-card h3,
.health-card h3,
.launch-card h3,
.guardrails h3 {
  margin: 14px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.staff-card small,
.health-card small {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.links-grid a {
  min-height: 56px;
  justify-content: flex-start;
  border-color: var(--border);
  background: var(--panel-strong);
}

.guardrails {
  display: grid;
  gap: 12px;
  padding-bottom: 36px;
}

.guardrails article {
  border-radius: 22px;
  padding: 18px;
}

@media (min-width: 720px) {
  .shell {
    padding: 32px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
  }

  .two,
  .projects,
  .staff-grid,
  .health-grid,
  .launch-grid,
  .guardrails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .projects,
  .launch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .staff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
