:root {
  --ink: #171717;
  --muted: #5f656d;
  --line: #d9dde1;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --panel: #e9eef0;
  --dark: #202629;
  --green: #25614f;
  --green-dark: #183d33;
  --steel: #4b6472;
  --safety: #d99227;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  color: var(--surface);
  background: var(--dark);
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a,
.site-footer nav a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  min-height: 74vh;
  margin: 0 auto;
  padding: 58px 28px 76px;
  border-top: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero p {
  max-width: 710px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--surface);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img,
.image-band img {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual img {
  aspect-ratio: 4 / 5;
}

.score-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(32, 38, 41, 0.88);
  color: var(--surface);
}

.score-strip span {
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.score-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 28px;
}

.report-intro,
.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 68px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 88px;
}

.category-grid article {
  min-height: 260px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.category-grid article:first-child {
  border-left: 1px solid var(--line);
}

.category-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--safety);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 92px;
}

.image-band img {
  aspect-ratio: 21 / 9;
}

.method-section {
  max-width: none;
  background: var(--dark);
  color: var(--surface);
}

.method-section > * {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.method-section .eyebrow,
.method-list span {
  color: var(--safety);
}

.method-section .section-heading p,
.method-list p {
  color: rgba(255, 255, 255, 0.72);
}

.method-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.method-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.method-list span {
  font-size: 14px;
  font-weight: 800;
}

.method-list h3 {
  color: var(--surface);
}

.decision-list {
  border-top: 1px solid var(--line);
}

.decision-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 28px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-disclosure {
  max-width: 760px;
  margin-top: 18px;
}

.footer-disclosure p {
  max-width: none;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.legal-hero {
  padding: 82px 28px 52px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.legal-hero > div,
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  padding: 60px 28px 94px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 28px;
  line-height: 1.1;
}

.legal-content ul {
  padding-left: 22px;
}

.contact-card {
  border-left: 5px solid var(--green);
  padding: 28px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(23, 23, 23, 0.08);
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .report-intro,
  .decision-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid article:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .image-band img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .legal-hero,
  .legal-content,
  .site-footer,
  .image-band,
  .category-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .main-nav {
    gap: 12px 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .score-strip {
    position: static;
  }

  .category-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .category-grid article,
  .category-grid article:first-child {
    border-left: 1px solid var(--line);
  }

  .section,
  .image-band,
  .category-grid {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .method-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
