:root {
  --bg: #060c10;
  --bg-soft: #0d151b;
  --panel: rgba(13, 21, 27, 0.82);
  --panel-strong: rgba(18, 31, 40, 0.96);
  --line: rgba(173, 221, 204, 0.18);
  --text: #eef5f1;
  --muted: #9bb1ac;
  --accent: #8df0c4;
  --accent-2: #ffcc73;
  --accent-3: #8fb7ff;
  --danger: #ff8f8f;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(141, 240, 196, 0.12), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 204, 115, 0.08), transparent 22%),
    linear-gradient(180deg, #091117 0%, #04070a 100%);
}

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

.shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 25% 25%, rgba(141, 240, 196, 0.5), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: rgba(141, 240, 196, 0.32);
  background: rgba(141, 240, 196, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 18px 0 0;
  max-width: 920px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.03;
}

.hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #77d5ff);
  color: #03212a;
  border-color: transparent;
  font-weight: 600;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.panel strong,
.metric strong,
.status-pill strong {
  font-family: "Unbounded", sans-serif;
}

.panel h2 {
  margin: 10px 0 12px;
  font-size: 26px;
}

.panel p,
.list li,
.timeline li {
  color: var(--muted);
  line-height: 1.72;
}

.list,
.timeline {
  margin: 14px 0 0;
  padding-left: 18px;
}

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

.metric {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.status-board {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.status-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online {
  background: rgba(141, 240, 196, 0.12);
  color: var(--accent);
}

.pending {
  background: rgba(255, 204, 115, 0.12);
  color: var(--accent-2);
}

.internal {
  background: rgba(143, 183, 255, 0.14);
  color: var(--accent-3);
}

.warning {
  background: rgba(255, 143, 143, 0.12);
  color: var(--danger);
}

.footer {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    padding: 24px;
    border-radius: 24px;
  }

  .section-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }
}
