:root {
  --navy: #07131f;
  --ink: #0b1b2a;
  --orange: #ff6a13;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #5e6b78;
  --line: rgba(11, 27, 42, 0.12);
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 30px;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration-color: rgba(94, 107, 120, 0.45);
  text-underline-offset: 4px;
}

.policy-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 30px 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  background: var(--orange);
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 10vw, 120px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

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

.effective {
  margin: 26px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 760px);
  gap: clamp(50px, 8vw, 110px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 110px;
  align-items: start;
}

.data-route {
  position: sticky;
  top: 28px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 30px;
}

.route-label {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-route ol {
  position: relative;
  display: grid;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-route ol::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 17px;
  width: 2px;
  background: linear-gradient(var(--orange), rgba(255, 106, 19, 0.15));
}

.data-route li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
}

.data-route li > span {
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.data-route strong {
  align-self: center;
  font-size: 14px;
}

.data-route li p {
  grid-column: 2;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.data-route > a {
  display: inline-block;
  margin-top: 32px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.policy-copy > section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

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

.policy-copy h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 19px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.policy-copy h2 span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.policy-copy p,
.policy-copy li {
  color: #344250;
}

.policy-copy p {
  margin: 0 0 16px;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.policy-copy ul {
  margin: 18px 0 22px;
  padding-left: 24px;
}

.policy-copy li + li {
  margin-top: 8px;
}

.policy-copy a {
  font-weight: 650;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

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

th {
  background: rgba(11, 27, 42, 0.04);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.policy-copy .contact-card {
  margin-top: 36px;
  padding: 38px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(11, 27, 42, 0.07);
}

.contact-card .eyebrow {
  margin-bottom: 13px;
}

.contact-card h2 {
  margin-bottom: 10px;
}

.contact-card > a {
  display: inline-block;
  margin-top: 8px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  padding: 11px 19px;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(30px, calc((100vw - 1140px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--white);
}

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

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

  .data-route {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header,
  .policy-hero,
  .policy-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand small {
    display: none;
  }

  .home-link {
    font-size: 12px;
  }

  .policy-hero h1 {
    font-size: clamp(54px, 20vw, 78px);
  }

  .policy-copy .contact-card {
    padding: 28px;
  }

  footer {
    flex-direction: column;
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
