:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #dbe4ef;
  --primary: #012a77;
  --accent: #07d3fe;
  --ok: #0f9f6e;
  --warn: #b7791f;
  --error: #c2410c;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(7, 211, 254, 0.20), transparent 34rem),
    linear-gradient(135deg, #f8fbff 0%, var(--bg) 55%, #eef4fb 100%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(7, 211, 254, 0.13);
  border: 1px solid rgba(7, 211, 254, 0.30);
  font-weight: 700;
  font-size: 0.88rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, var(--primary), #064bb4);
  box-shadow: 0 18px 40px rgba(1, 42, 119, 0.24);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 1.18rem;
  line-height: 1.6;
}

.architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.architecture span {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--border);
  color: #1e293b;
  font-weight: 700;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card,
.next {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.muted {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.next {
  margin-top: 18px;
}

.next h2 {
  margin: 0 0 8px;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.next p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

code {
  padding: 3px 7px;
  border-radius: 8px;
  background: #eef4fb;
  color: var(--primary);
  font-weight: 700;
}

.ok {
  color: var(--ok);
}

.warn {
  color: var(--warn);
}

.error {
  color: var(--error);
}

@media (max-width: 900px) {
  .status-grid,
  .architecture {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding: 24px 0;
  }

  .brand-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-action {
  color: white;
  background: linear-gradient(135deg, var(--primary), #064bb4);
  box-shadow: 0 16px 36px rgba(1, 42, 119, 0.22);
}

.secondary-action {
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--border);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 3px solid rgba(7, 211, 254, 0.45);
  outline-offset: 3px;
}
