:root {
  --bg: #09111a;
  --bg-alt: #132130;
  --panel: rgba(10, 21, 33, 0.78);
  --panel-border: rgba(152, 205, 255, 0.16);
  --text: #eaf2f8;
  --muted: #a4b3c3;
  --accent: #7fe7c4;
  --accent-strong: #25c38f;
  --warn: #ffb55f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(63, 120, 255, 0.22), transparent 28rem),
    linear-gradient(180deg, #061018 0%, #0d1722 55%, #14212f 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.backdrop-a {
  top: 3rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(63, 120, 255, 0.22);
}

.backdrop-b {
  bottom: -6rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(127, 231, 196, 0.18);
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 2rem;
  animation: rise 600ms ease-out both;
}

.eyebrow,
.metric-label,
.status-label,
dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: end;
}

h1,
h2,
p,
ul,
dl {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  margin: 0.55rem 0 1rem;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.lede-secondary {
  max-width: 38rem;
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #bff2de 100%);
  color: #062116;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.status-tile {
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-tile strong {
  display: block;
  margin: 0.35rem 0 0.2rem;
  font-size: 1.2rem;
}

.status-tile span:last-child {
  color: var(--muted);
  line-height: 1.5;
}

.strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem;
  margin-top: 1.25rem;
  animation: rise 700ms ease-out both;
}

.strip article {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.strip strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.3rem;
}

.strip span:last-child,
.card p,
.action-list span,
dd {
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
  animation: rise 800ms ease-out both;
}

.card {
  padding: 1.4rem;
}

.card h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.action-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.action-list a,
.route-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.action-list a:hover,
.route-list a:hover {
  color: var(--accent);
}

.action-list li {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.action-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.route-list {
  display: grid;
  gap: 1rem;
}

.route-list div {
  display: grid;
  gap: 0.35rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 231, 196, 0.25);
  background: rgba(127, 231, 196, 0.08);
  color: #d9fff2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 640px) {
  .shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .hero,
  .card {
    padding: 1.1rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}
