:root {
  --bg: #f7fafc;
  --panel: #ffffff;
  --panel-2: #f1f5f9;
  --text: #0f172a;
  --muted: #614769;
  --accent: #8f0a37;
  --accent-2: #f50b32;
  --border: #e2e8f0;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(140deg, #f8fafc 0%, #e8f0f5 40%, #f8fafc 100%);
  min-height: 100vh;
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  padding: 14px 16px;
  background: rgba(247, 250, 252, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", "Source Sans 3", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  background: var(--panel-2);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 36px 0 28px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 8px 0 12px;
}

.hero-text .lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 6px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 16px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow);
  background: #fff;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: #fff;
  border: none;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.25);
}

.button.ghost {
  background: var(--panel-2);
  color: var(--text);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 10px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 8px;
}

.hero-card ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
  line-height: 1.4;
}

.section-header {
  margin: 46px 0 12px;
}

.section-header h2 {
  margin: 6px 0;
  font-size: 30px;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
}

.section-header .lede {
  margin: 0;
  color: var(--muted);
}

.grid {
  margin-top: 12px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ticks {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.5;
}

.ticks li {
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  background: var(--panel-2);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.badge-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  background: #ecfeff;
  color: var(--accent);
  border: 1px solid rgba(15, 118, 110, 0.2);
  margin-bottom: 8px;
}

.badge-label.verified {
  background: #fffbeb;
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.45);
}

.guidance {
  margin-top: 12px;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.steps li {
  margin-bottom: 8px;
}

.inline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mini-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.mini-card p {
  margin: 4px 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.inline-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-links a {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}

.footer {
  margin-top: 48px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}

.footer .muted {
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 360px;
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .topbar {
    position: static;
  }
}
