:root {
  --ink: #101820;
  --muted: #43515a;
  --paper: #fffaf1;
  --pale: #f8faf4;
  --teal: #0f766e;
  --orange: #c2410c;
  --gold: #fbbf24;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.site-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

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

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

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.95), rgba(234, 246, 247, 0.96)),
    repeating-linear-gradient(
      90deg,
      rgba(16, 24, 32, 0.06) 0,
      rgba(16, 24, 32, 0.06) 1px,
      transparent 1px,
      transparent 42px
    );
}

main {
  position: relative;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.teal {
  color: var(--teal);
}

.eyebrow.orange {
  color: var(--orange);
}

.eyebrow.gold {
  color: var(--gold);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 950;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 950;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.lead,
.section-heading p,
.split p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.22);
}

.button.secondary {
  border: 1px solid rgba(15, 118, 110, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: #134e4a;
}

.poster {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 520px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      -24deg,
      rgba(249, 115, 22, 0.9) 0,
      rgba(249, 115, 22, 0.9) 16px,
      transparent 16px,
      transparent 56px
    ),
    var(--ink);
  box-shadow: var(--shadow);
  color: white;
  padding: 28px;
}

.poster::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(16, 24, 32, 0.74);
}

.poster > * {
  position: relative;
}

.poster-label {
  display: inline-block;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.poster h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.fact-grid {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.fact-grid div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 16px;
}

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

.fact-grid strong {
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.fact-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.policy-note {
  background: var(--ink);
  color: white;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  font-size: 15px;
}

.section {
  padding: 76px max(20px, calc((100vw - 1180px) / 2));
}

.section.pale {
  background: var(--pale);
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 780px;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

article p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.dark article h3 {
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 16px 16px 16px 44px;
  color: #263238;
  font-weight: 800;
}

.check-list li::before {
  float: left;
  width: 22px;
  margin-left: -30px;
  color: var(--teal);
  content: "✓";
  font-weight: 950;
}

.sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.sources a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--pale);
  padding: 14px 16px;
  color: #263238;
  font-weight: 800;
  text-decoration: none;
}

.sources a::after {
  color: var(--teal);
  content: "↗";
}

.sources a:hover {
  border-color: rgba(15, 118, 110, 0.4);
  background: #ecfdf5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: white;
}

.site-footer span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.66);
}

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

  nav {
    justify-content: flex-start;
  }

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

  .poster {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero,
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 40px;
  }

  .lead,
  .section-heading p,
  .split p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }
}
