:root {
  --ink: #18202a;
  --muted: #5a6673;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #d9dfd2;
  --blue: #1f5f8b;
  --green: #1f7a5a;
  --gold: #a76a16;
  --red: #a3332d;
  --soft-blue: #eaf4f8;
  --soft-green: #eaf5ef;
  --soft-gold: #fbf1df;
  --soft-red: #f8e9e7;
  --shadow: 0 14px 40px rgba(24, 32, 42, 0.08);
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

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

.language-links {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.language-links a {
  padding: 4px 9px;
  border-right: 1px solid var(--line);
}

.language-links a:last-child {
  border-right: 0;
}

.hero {
  min-height: calc(100vh - 62px);
  display: grid;
  align-items: center;
  padding: 56px 22px 28px;
}

.hero-inner,
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 44px);
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.lead {
  max-width: 770px;
  margin: 22px 0 0;
  color: #344050;
  font-size: clamp(18px, 2.5vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(24, 32, 42, 0.06);
}

.button.primary {
  border-color: #164c70;
  background: #164c70;
  color: white;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.proof-item {
  min-height: 94px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.proof-item strong {
  display: block;
  font-size: 14px;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.visual-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-caption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 68px 22px;
  border-top: 1px solid var(--line);
}

.section.alt {
  background: #f3f7f0;
}

.section.tight {
  padding-top: 44px;
  padding-bottom: 44px;
}

.kicker {
  max-width: 780px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card.blue {
  background: var(--soft-blue);
}

.card.green {
  background: var(--soft-green);
}

.card.gold {
  background: var(--soft-gold);
}

.card.red {
  background: var(--soft-red);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 10px 0 0;
  padding-left: 19px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: #344050;
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #344050;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.year {
  color: var(--green);
  font-weight: 780;
}

.quote {
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 18px;
  color: #344050;
  font-size: 20px;
}

.source-list {
  columns: 2;
  column-gap: 32px;
  margin: 0;
  padding-left: 19px;
}

.source-list li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.page-hero {
  padding: 74px 22px 44px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(38px, 7vw, 72px);
}

.page-hero .lead {
  max-width: 850px;
}

.notice {
  padding: 16px 18px;
  border: 1px solid #e5c7c2;
  border-radius: 8px;
  background: var(--soft-red);
  color: #4b2a27;
}

.site-footer {
  padding: 32px 22px;
  border-top: 1px solid var(--line);
  background: #16202a;
  color: #dce5ea;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer a {
  color: #dce5ea;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-list {
    columns: 1;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
