@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=IBM+Plex+Mono:wght@500&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --color-navy: #0f2238;
  --color-blue: #1f5fa8;
  --color-teal: #1a8b87;
  --color-bg: #eff4f7;
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-surface-alt: rgba(15, 34, 56, 0.06);
  --color-border: rgba(15, 34, 56, 0.14);
  --color-text: #132538;
  --color-text-muted: #4a6076;
  --color-text-light: #6d8093;
  --color-warning: #a66e00;
  --color-success: #147b63;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(31, 95, 168, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(26, 139, 135, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbfc 0%, var(--color-bg) 100%);
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.94)),
    var(--color-surface);
  box-shadow: 0 24px 60px rgba(15, 34, 56, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 168, 0.18), transparent 70%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  color: var(--color-navy);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--color-navy);
}

p {
  margin: 0;
  line-height: 1.7;
}

.lede {
  max-width: 68ch;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 1.04rem;
}

.notice {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 4px solid var(--color-warning);
  border-radius: 14px;
  background: rgba(255, 241, 213, 0.82);
  color: #704b00;
}

.chip-row,
.actions,
.vendor-grid,
.content-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.chip-row {
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.chip {
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.chip strong,
.stat-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.content-grid,
.comparison-grid {
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-surface);
  box-shadow: 0 18px 44px rgba(15, 34, 56, 0.06);
}

.card p + p,
.card ul,
.card ol,
.card .vendor-grid,
.card .actions {
  margin-top: 16px;
}

.stat-list,
.citations {
  padding-left: 18px;
  color: var(--color-text-muted);
}

.stat-list li,
.citations li {
  margin-bottom: 10px;
}

.vendor-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.vendor-card {
  display: block;
  padding: 18px;
  text-decoration: none;
  border: 1px solid rgba(31, 95, 168, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31, 95, 168, 0.05), rgba(26, 139, 135, 0.04));
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.vendor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 95, 168, 0.34);
  box-shadow: 0 16px 36px rgba(31, 95, 168, 0.12);
}

.vendor-card strong {
  display: block;
  font-size: 1rem;
  color: var(--color-blue);
}

.vendor-card span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
}

.actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
}

.button.secondary {
  background: rgba(15, 34, 56, 0.08);
  color: var(--color-navy);
}

.muted {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 24px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 18px, 100%);
    padding: 18px 0 36px;
  }

  .hero,
  .card {
    padding: 20px;
    border-radius: 22px;
  }

  h1 {
    max-width: none;
  }
}