@font-face {
  font-family: "Vera Custom";
  src: url("/fonts/VeraCustom.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #ffffff;
  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f3;
  --neutral-200: #e7e5e4;
  --neutral-300: #d6d3d1;
  --neutral-400: #a8a29e;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-900: #1c1917;
  --primary: #d85959;
  --primary-50: #fef2f2;
  --primary-100: #fde3e3;
  --primary-200: #fccbcb;
  --primary-700: #a33434;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-vera: "Vera Custom", var(--font-sans);
  --radius-lg: 8px;
  --radius-full: 999px;
}

body {
  font-family: var(--font-sans);
  color: var(--neutral-900);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--neutral-200);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-logo,
.footer-logo {
  font-family: var(--font-vera);
  font-size: 19px;
  color: var(--neutral-900);
  text-decoration: none;
}

.nav-logo span,
.footer-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--neutral-600);
  font-size: 13px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--primary);
}

.breadcrumb {
  padding: 22px 0 0;
  font-size: 12px;
  color: var(--neutral-400);
}

.breadcrumb a {
  color: var(--neutral-500);
  text-decoration: none;
}

.hero {
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--neutral-200);
}

.hero-label,
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.aliases,
.byline {
  font-size: 13px;
  color: var(--neutral-400);
  margin-bottom: 18px;
}

.hero-answer {
  font-size: 19px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 32px;
}

.hero-cta,
.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--neutral-200);
  padding-top: 28px;
}

.hero-cta p,
.mid-cta p {
  color: var(--neutral-600);
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: var(--primary-700);
}

main {
  padding: 56px 0 0;
}

.quick-facts {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 54px;
}

.quick-facts table {
  width: 100%;
  border-collapse: collapse;
}

.quick-facts tr {
  border-bottom: 1px solid var(--neutral-200);
}

.quick-facts tr:last-child {
  border-bottom: 0;
}

.quick-facts td {
  padding: 15px 22px;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.55;
}

.quick-facts td:first-child {
  color: var(--neutral-600);
  width: 36%;
  font-weight: 600;
}

.quick-facts tr:nth-child(even) td {
  background: var(--neutral-50);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -28px 0 56px;
}

.pill-row a {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-200);
  background: var(--primary-50);
  color: var(--primary-700);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.info-card {
  display: block;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: var(--neutral-700);
  text-decoration: none;
  background: #ffffff;
}

.info-card:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.info-card strong {
  display: block;
  color: var(--neutral-900);
  font-size: 15px;
  margin-bottom: 8px;
}

.info-card span,
.info-card p {
  display: block;
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.6;
}

.body-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.body-section h2,
.comparison h2,
.faq h2,
.sources h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 22px;
}

.body-section h3 {
  font-size: 15px;
  margin: 24px 0 8px;
}

.body-section p,
.body-section li {
  font-size: 17px;
  line-height: 1.78;
}

.body-section p {
  margin-bottom: 18px;
}

.body-section ul {
  margin: 16px 0 0 20px;
}

.body-section li {
  margin-bottom: 9px;
}

.stat {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--neutral-700);
}

.stat p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.cite-ref {
  color: var(--primary);
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
}

.mid-cta {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 56px 0;
}

.footer-cta {
  background: var(--primary-50);
  border-top: 1px solid var(--primary-200);
  border-bottom: 1px solid var(--primary-200);
  padding: 52px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 12px;
}

.footer-cta p {
  color: var(--neutral-600);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
}

.comparison {
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 72px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

table.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare th {
  background: var(--neutral-900);
  color: #ffffff;
  text-align: left;
  padding: 14px 18px;
  font-size: 13px;
}

.compare td {
  border-bottom: 1px solid var(--neutral-200);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: top;
}

.compare tr:last-child td {
  border-bottom: 0;
}

.faq {
  padding: 72px 0;
}

.faq-item {
  border: 1px solid var(--neutral-200);
  border-bottom: 0;
}

.faq-item:first-of-type {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--neutral-200);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--neutral-600);
  font-size: 15px;
  line-height: 1.75;
}

.sources {
  padding: 56px 0 64px;
  border-top: 1px solid var(--neutral-200);
}

.sources h2 {
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.sources ol {
  list-style: decimal;
  margin-left: 20px;
  color: var(--neutral-600);
}

.sources li {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.65;
}

.sources a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-200);
}

footer {
  border-top: 1px solid var(--neutral-200);
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.disclaimer {
  font-size: 12px;
  color: var(--neutral-400);
}

.disclaimer {
  margin-top: 18px;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .nav-links {
    gap: 14px;
  }

  .hero-cta,
  .mid-cta,
  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-facts td {
    display: block;
    width: 100% !important;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
