:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #0f172a;
  background:
    radial-gradient(circle at 10% 0%, rgba(99, 102, 241, 0.15), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(59, 130, 246, 0.14), transparent 34%),
    #f8fafc;
}

.wrap {
  width: min(980px, 92%);
  margin: 0 auto;
  padding: 30px 0 72px;
}

.hub-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.hub-header-inner {
  width: min(980px, 92%);
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hub-brand {
  font-size: 20px;
  font-weight: 800;
  color: #312e81;
  text-decoration: none;
}

.hub-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hub-nav a {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.hub-nav a:hover {
  color: #0f172a;
}

.back {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
}

.hero {
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4f46e5;
}

h1 {
  margin: 8px 0 10px;
  line-height: 1.08;
  font-size: clamp(32px, 5vw, 52px);
}

.lede {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
  max-width: 72ch;
}

h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
}

h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

p,
li {
  color: #334155;
  line-height: 1.7;
  font-size: 17px;
}

ul {
  margin: 8px 0 4px;
}

.card-grid {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 16px;
}

.card h3 {
  margin-top: 0;
}

.pill {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  font-size: 13px;
}

.cta {
  margin-top: 26px;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #3b82f6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px;
  font-size: 15px;
}

th {
  background: #eef2ff;
  color: #1e1b4b;
}
