:root {
  color-scheme: light;
  --prd-sky: #0284c7;
  --prd-slate: #0f172a;
  --prd-muted: #475569;
  --prd-border: rgba(148, 163, 184, 0.32);
  --prd-bg: #f8fafc;
}

html, body {
  background:
    radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef6fb 100%);
}

.site-body {
  color: #0f172a;
}

.content-prose h2,
.content-prose h3 {
  scroll-margin-top: 96px;
}

.content-prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.content-prose p,
.content-prose li {
  color: #334155;
  line-height: 1.75;
}

.content-prose a {
  color: var(--prd-sky);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--prd-border);
  box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.24);
}

.hero-ribbon {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(15, 23, 42, 0.04));
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-sky {
  background: rgba(2, 132, 199, 0.1);
  color: #0369a1;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  padding: 0.8rem 0.9rem;
  text-align: left;
}

.table-wrap th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
}

.callout {
  border-left: 4px solid var(--prd-sky);
  background: rgba(2, 132, 199, 0.06);
}
