:root {
  --black: #000000;
  --ink: #151517;
  --paper: #f6f1e8;
  --paper-2: #eee5d7;
  --text: #fbfaf7;
  --muted: rgba(251, 250, 247, 0.7);
  --muted-dark: rgba(21, 21, 23, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(21, 21, 23, 0.14);
  --green: #1c5b46;
  --green-strong: #176b46;
  --peach: #ffc38d;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Outfit", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

p,
li {
  line-height: 1.72;
}

p,
ul,
ol {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-cta {
  border: 1px solid var(--line);
  color: var(--text);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(28, 91, 70, 0.32);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--green-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(255, 195, 141, 0.5);
  background: rgba(255, 195, 141, 0.11);
}

.policy-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  isolation: isolate;
  background: #000000;
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000000 0%, #000000 38%, rgba(0, 0, 0, 0.66) 76%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.06) 70%, #000000 100%);
}

.policy-hero-media {
  position: absolute;
  right: max(-170px, -8vw);
  bottom: -92px;
  width: min(760px, 58vw);
  z-index: 0;
  opacity: 0.84;
}

.policy-hero-media img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0c;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.56);
}

.policy-hero-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: clamp(54px, 8vw, 96px) 0;
}

.policy-hero-copy {
  max-width: 690px;
  display: grid;
  gap: 20px;
}

.eyebrow {
  color: var(--peach);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(650px, 100%);
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.68;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(251, 250, 247, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 700;
}

.summary-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0e;
}

.summary-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--line);
}

.summary-item {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  background: #111113;
}

.summary-item strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.policy-content {
  color: var(--ink);
  background: var(--paper);
}

.policy-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(54px, 8vw, 94px) 0;
}

.policy-toc {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  border-left: 2px solid rgba(28, 91, 70, 0.32);
  padding-left: 18px;
}

.policy-toc strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc a {
  color: rgba(21, 21, 23, 0.7);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.policy-toc a:hover {
  color: var(--green);
}

.policy-body {
  display: grid;
  gap: 42px;
}

.policy-section {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}

.policy-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-section h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.policy-section h3 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.policy-section p,
.policy-section li {
  color: rgba(21, 21, 23, 0.78);
  font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin-bottom: 0;
}

.policy-section a {
  color: var(--green);
  font-weight: 800;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #ffffff;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(21, 21, 23, 0.78);
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--paper-2);
}

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

.note {
  border-left: 4px solid var(--green);
  padding: 16px 18px;
  color: rgba(21, 21, 23, 0.78);
  background: rgba(28, 91, 70, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #000000;
  color: var(--muted);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .policy-hero-media {
    right: -34vw;
    width: 86vw;
    opacity: 0.58;
  }

  .policy-hero::before {
    background:
      linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.93) 52%, rgba(0, 0, 0, 0.58) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.08) 70%, #000000 100%);
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-top: 2px solid rgba(28, 91, 70, 0.32);
    padding: 18px 0 0;
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    gap: 6px;
    padding-bottom: 0;
  }

  .nav-links a {
    padding: 0 10px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .policy-hero,
  .policy-hero-inner {
    min-height: auto;
  }

  .policy-hero-media {
    right: -72vw;
    bottom: -44px;
    width: 142vw;
    opacity: 0.36;
  }

  .policy-hero-inner {
    padding: 58px 0 70px;
  }

  .summary-grid,
  .policy-toc {
    grid-template-columns: 1fr;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
  }

  .data-table thead {
    display: none;
  }

  .data-table tr {
    border-bottom: 1px solid var(--line-dark);
  }

  .data-table tr:last-child {
    border-bottom: 0;
  }

  .data-table td {
    border-bottom: 0;
  }

  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}
