:root {
  --bg: #f7f8f4;
  --paper: #ffffff;
  --ink: #17231e;
  --muted: #596962;
  --line: #dce4dd;
  --green: #0f5b3c;
  --green-dark: #0a3827;
  --blue: #1b5d8f;
  --gold: #d89c2b;
  --shadow: 0 24px 70px rgba(23, 35, 30, 0.12);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
details:focus-visible {
  outline: 3px solid rgba(27, 93, 143, 0.55);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.9);
  border-bottom: 1px solid rgba(220, 228, 221, 0.8);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(20px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  justify-content: center;
}

.nav a,
.header-cta,
.primary-action,
.secondary-action {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  color: var(--muted);
}

.header-cta,
.primary-action {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  padding: 12px 16px;
}

.hero {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 6vw, 76px) clamp(20px, 4vw, 56px) 48px;
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

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

h1 {
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 720px;
}

.ownership-note {
  border-left: 4px solid var(--green);
  color: var(--green-dark) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  margin: 22px 0 0;
  padding-left: 16px;
}

.ownership-note a {
  color: var(--blue);
  font-weight: 800;
}

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

.entity-facts {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  max-width: 760px;
}

.entity-facts div {
  border-right: 1px solid var(--line);
  padding: 16px 18px 16px 0;
}

.entity-facts div + div {
  padding-left: 18px;
}

.entity-facts div:last-child {
  border-right: 0;
}

.entity-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.entity-facts dd {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.primary-action,
.secondary-action {
  align-items: center;
  min-height: 48px;
  padding: 14px 18px;
}

.secondary-action {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
}

.review-console {
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-column: 2;
  grid-row: 1;
  margin: clamp(250px, 24vw, 315px) 24px 0 0;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.console-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.console-heading span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.console-heading strong {
  font-size: 22px;
}

.source-row {
  align-items: center;
  border-bottom: 1px solid #edf1ed;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 0;
}

.source-row:last-child {
  border-bottom: 0;
}

.status {
  background: #eef6f1;
  border-radius: 999px;
  color: var(--green-dark);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.hero-image {
  align-self: start;
  border-radius: var(--radius);
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 4vw, 56px);
}

.section-intro {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(280px, 0.58fr);
  margin-bottom: 36px;
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: 0;
  line-height: 1;
}

.section-intro p,
.verification-section p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.source-grid,
.profile-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-note {
  color: var(--muted);
  line-height: 1.6;
  margin: -14px 0 28px;
  max-width: 920px;
}

.source-card,
.profile-card,
.reputation-overview article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.source-card {
  min-height: 280px;
}

.profile-card,
.reputation-overview article {
  min-height: 230px;
}

.source-card h3,
.profile-card h3,
.theme-list h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.source-card p,
.profile-card p,
.reputation-overview p,
.theme-list p {
  color: var(--muted);
  line-height: 1.55;
}

.reputation-overview {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.reputation-overview span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.reputation-overview strong {
  color: var(--green-dark);
  display: block;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.source-tags span {
  background: #f2f5f0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  margin: 0;
  padding: 7px 10px;
}

.source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.snapshot-list {
  border-top: 1px solid var(--line);
  margin: 18px 0 0;
  padding-top: 14px;
}

.snapshot-list div {
  display: grid;
  gap: 10px;
  grid-template-columns: 82px 1fr;
  margin-bottom: 10px;
}

.snapshot-list dt,
.snapshot-list dd {
  margin: 0;
}

.snapshot-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-list dd {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.source-card a,
.source-card > span,
.profile-card a {
  color: var(--blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  margin-top: 16px;
}

.themes-section {
  background: var(--green-dark);
  color: #fff;
}

.themes-section .section-intro p,
.themes-section .theme-list p {
  color: rgba(255, 255, 255, 0.74);
}

.theme-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-list article {
  background: rgba(255, 255, 255, 0.07);
  min-height: 260px;
  padding: 28px;
}

.theme-list span {
  color: var(--gold);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  min-height: 220px;
  padding: 24px;
  text-decoration: none;
}

.service-grid strong,
.service-grid span {
  display: block;
}

.service-grid strong {
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.area-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-links a {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  font-weight: 800;
  min-height: 76px;
  padding: 18px 20px;
  text-decoration: none;
}

.verification-section {
  background: #edf3ef;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
}

.verification-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.verification-panel strong {
  display: block;
  font-size: 21px;
  margin-bottom: 16px;
}

.verification-panel ul {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

.methodology-section {
  background: #f3f6f2;
}

.method-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.method-grid h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 12px;
}

.method-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  background: var(--paper);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-list summary {
  color: var(--green-dark);
  cursor: pointer;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.25;
}

.faq-list p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 860px;
}

.faq-list a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  align-items: end;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 36px clamp(20px, 4vw, 56px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .review-console,
  .hero-image {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .source-grid,
  .profile-grid,
  .reputation-overview,
  .service-grid,
  .method-grid,
  .area-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-content: center;
    width: 100%;
  }

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

  h1 {
    font-size: 38px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy p,
  .section-intro p,
  .verification-section p,
  .faq-list p {
    font-size: 16px;
  }

  .review-console {
    padding: 18px;
  }

  .source-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .status {
    white-space: normal;
  }

  .source-card,
  .profile-card,
  .reputation-overview article,
  .service-grid a,
  .method-grid article,
  .theme-list article {
    min-height: auto;
    padding: 20px;
  }

  .source-grid,
  .profile-grid,
  .reputation-overview,
  .service-grid,
  .method-grid,
  .theme-list,
  .area-links {
    grid-template-columns: 1fr;
  }

  .entity-facts {
    grid-template-columns: 1fr;
  }

  .entity-facts div,
  .entity-facts div + div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .entity-facts div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
