:root {
  --ink: #061326;
  --navy: #062c57;
  --navy-2: #0a3b72;
  --muted: #607083;
  --soft: #f5f9fa;
  --surface: #ffffff;
  --line: #dfe9ee;
  --green: #55b66d;
  --green-2: #2d9652;
  --gold: #d9972b;
  --shadow: 0 22px 60px rgba(6, 44, 87, 0.1);
  --wrap: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(140deg, rgba(85, 182, 109, 0.1), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f7fafb 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(85, 182, 109, 0.24);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

p,
li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.62;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 233, 238, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 76px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: max-content;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

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

.brand span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  color: #172232;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  white-space: nowrap;
}

.nav-links a:hover,
.footer-links a:hover,
.policy-body a:hover,
.policy-nav a:hover {
  color: var(--navy);
}

.header-cta {
  justify-self: end;
  padding: 15px 22px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(8, 42, 87, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: #061c3d;
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 10px 18px;
    min-height: auto;
    padding: 14px clamp(18px, 4vw, 42px) 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    gap: 2px;
    overflow-x: auto;
    padding: 4px;
    border: 1px solid rgba(143, 177, 210, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #263b55;
    font-size: 12px;
    font-weight: 750;
    box-shadow:
      0 10px 28px rgba(8, 45, 95, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-links a:hover {
    background: rgba(8, 45, 95, 0.08);
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }
}

.policy-hero {
  padding: 86px 0 64px;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-copy {
  max-width: 720px;
  color: #495b70;
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.58;
}

.policy-summary,
.policy-nav,
.contact-panel,
.table-scroll {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(6, 44, 87, 0.07);
}

.policy-summary {
  padding: 24px;
}

.policy-summary strong,
.policy-nav strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-2);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-summary span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 950;
}

.policy-summary p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.section {
  padding: 74px 0;
}

.section.compact {
  padding-top: 26px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 780px);
  gap: 60px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 4px;
  padding: 22px;
}

.policy-nav a {
  display: block;
  border-radius: 6px;
  padding: 9px 0;
  color: #24364b;
  font-size: 0.86rem;
  font-weight: 850;
}

.policy-body {
  min-width: 0;
}

.policy-body section {
  scroll-margin-top: 116px;
}

.policy-body h2 {
  margin: 48px 0 18px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.policy-body section:first-child h2 {
  margin-top: 0;
}

.policy-body p,
.policy-body li {
  font-size: 1.03rem;
}

.policy-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.policy-body strong {
  color: #24364b;
  font-weight: 950;
}

.policy-body a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.table-scroll {
  margin: 28px 0;
  overflow-x: auto;
  box-shadow: none;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

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

th {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.48;
}

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

.contact-panel {
  margin-top: 54px;
  padding: 34px;
}

.contact-panel h2 {
  margin-top: 0;
}

address {
  color: #24364b;
  font-style: normal;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.62;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding: 32px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr minmax(260px, 360px);
  gap: 36px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .policy-hero {
    padding-top: 54px;
  }

  .policy-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .policy-summary {
    max-width: 440px;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
    padding: 12px 18px;
  }

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

  .header-cta {
    padding: 12px 14px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .policy-hero {
    padding-bottom: 38px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .policy-body p,
  .policy-body li {
    font-size: 0.98rem;
  }

  .contact-panel {
    padding: 26px;
  }

  th,
  td {
    padding: 16px;
  }
}
