:root {
  --bg: #f7f4ed;
  --text: #1c1c1c;
  --muted: rgba(28, 28, 28, 0.82);
  --muted-soft: #5f5f5d;
  --border: #eceae4;
  --interactive: rgba(28, 28, 28, 0.4);
  --surface: #fcfbf8;
  --accent-red: #b85c38;
  --shadow-focus: rgba(0, 0, 0, 0.1) 0 4px 12px;
  --shadow-button:
    rgba(255, 255, 255, 0.2) 0 0.5px 0 0 inset,
    rgba(0, 0, 0, 0.2) 0 0 0 0.5px inset,
    rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Camera Plain Variable", ui-sans-serif, system-ui;
  background: var(--bg);
  color: var(--text);
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-red);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1;
  letter-spacing: -1.2px;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 5.3rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 58ch;
  margin: 28px 0 0;
  font-size: 1.18rem;
  line-height: 1.62;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button-dark {
  background: var(--text);
  color: var(--surface);
  box-shadow: var(--shadow-button);
}

.button-outline {
  border: 1px solid rgba(28, 28, 28, 0.18);
  color: var(--text);
  background: rgba(252, 251, 248, 0.7);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-focus);
}

.section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.methodology-grid,
.excluded-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.reports-list {
  display: grid;
  gap: 20px;
}

.method-card,
.excluded-card,
.report-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(252, 251, 248, 0.7);
}

.method-card,
.excluded-card {
  padding: 20px;
}

.report-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 20px;
}

.report-rank {
  font-size: 2rem;
  line-height: 1;
}

.report-meta,
.report-tier,
.site-footer {
  color: var(--muted-soft);
}

.report-section h4 {
  margin-bottom: 8px;
}

.report-section ul {
  margin-top: 0;
  padding-left: 18px;
}

.site-footer {
  margin-top: 48px;
  padding: 56px 0 80px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .page-shell {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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