:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #10233a;
  --muted: #5e7087;
  --stroke: rgba(16, 35, 58, 0.08);
  --primary: #0a66ff;
  --primary-deep: #0048bf;
  --accent: #13a67b;
  --shadow: 0 28px 50px rgba(16, 35, 58, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(10, 102, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(19, 166, 123, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}

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

.hero {
  padding: 1rem 0 2.5rem;
}

.eyebrow,
.card-label {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 102, 255, 0.08);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.status-panel h2 {
  margin: 1rem 0 0.75rem;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
}

.hero p,
.card p,
.status-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 44rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 18px 34px rgba(10, 102, 255, 0.22);
}

.ghost-button {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

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

.card,
.status-panel {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card {
  padding: 1.4rem;
}

.card strong {
  display: block;
  margin: 1rem 0 0.55rem;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.status-panel {
  margin-top: 1rem;
  padding: 1.5rem;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.94em;
}

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

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

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