:root {
  --ink: #080b12;
  --surface: #141925;
  --raised: #222735;
  --coral: #f06059;
  --violet: #946af5;
  --teal: #59d8d1;
  --gold: #d9ae69;
  --text: #f6f4f1;
  --muted: #aaaebc;
  --subtle: #74798a;
  --line: rgba(255, 255, 255, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 106, 245, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 7%, rgba(240, 96, 89, 0.07), transparent 22rem),
    var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 10px;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 120ms ease;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--text);
  background: linear-gradient(145deg, var(--violet), var(--coral));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(148, 106, 245, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover {
  color: var(--text);
}

.header-contact:hover {
  border-color: rgba(89, 216, 209, 0.55);
  background: rgba(89, 216, 209, 0.06);
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 40px), 920px);
  padding: 112px 0 90px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.12;
}

.hero-orb-violet {
  top: 55px;
  left: 2%;
  background: var(--violet);
}

.hero-orb-coral {
  right: 2%;
  bottom: 20px;
  background: var(--coral);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(46px, 7vw, 80px);
  line-height: 0.99;
}

.hero-copy {
  max-width: 630px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.effective-date span {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(89, 216, 209, 0.65);
}

.snapshot {
  width: min(calc(100% - 40px), var(--max));
  padding: 52px;
  margin: 0 auto 110px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.snapshot-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  background: rgba(8, 11, 18, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.snapshot-card::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  content: "";
  filter: blur(35px);
  opacity: 0.2;
}

.snapshot-card-teal::after {
  background: var(--teal);
}

.snapshot-card-violet::after {
  background: var(--violet);
}

.snapshot-card-coral::after {
  background: var(--coral);
}

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

.card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.snapshot-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  font-size: 16px;
  line-height: 1.25;
}

.snapshot-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.important-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 25px 0 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.important-note strong {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.important-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 80px;
  justify-content: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.table-of-contents {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 20px 0;
}

.table-of-contents > p {
  margin: 0 0 14px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.table-of-contents nav {
  display: grid;
}

.table-of-contents a {
  padding: 6px 0;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.25;
  text-decoration: none;
}

.table-of-contents a:hover {
  color: var(--teal);
}

.policy section {
  padding: 0 0 82px;
  scroll-margin-top: 28px;
}

.policy section + section {
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

.section-number {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.policy h2 {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1.08;
}

.policy h3 {
  margin: 34px 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy p {
  margin: 0 0 18px;
}

.policy ul {
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.policy li {
  position: relative;
  padding: 0 0 13px 24px;
}

.policy li::before {
  position: absolute;
  top: 0.72em;
  left: 3px;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 12px rgba(89, 216, 209, 0.35);
}

.policy strong {
  color: var(--text);
}

.not-collected {
  padding: 24px;
  margin-top: 30px;
  background: rgba(89, 216, 209, 0.055);
  border: 1px solid rgba(89, 216, 209, 0.18);
  border-radius: 16px;
}

.not-collected h3 {
  margin-top: 0;
  color: var(--teal);
}

.not-collected p {
  margin-bottom: 0;
}

.provider-list {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.provider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.provider strong,
.provider span {
  display: block;
}

.provider strong {
  font-size: 14px;
}

.provider span {
  margin-top: 3px;
  color: var(--subtle);
  font-size: 12px;
}

.provider a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.contact-section {
  padding: 42px !important;
  margin-bottom: 100px;
  background:
    radial-gradient(circle at 90% 15%, rgba(148, 106, 245, 0.16), transparent 15rem),
    var(--surface);
  border: 1px solid var(--line) !important;
  border-radius: 24px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  margin-top: 8px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-button:hover {
  background: #fa726b;
}

.response-note {
  margin: 14px 0 0 !important;
  color: var(--subtle) !important;
  font-size: 12px;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 40px), var(--max));
  padding: 34px 0 48px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

footer strong,
footer span {
  display: block;
}

footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

footer span,
footer p {
  color: var(--subtle);
  font-size: 10px;
}

footer p {
  max-width: 500px;
  margin: 0;
  text-align: right;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-card {
    min-height: 205px;
  }

  .policy-layout {
    grid-template-columns: 180px minmax(0, 650px);
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .snapshot,
  .policy-layout,
  footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    min-height: 76px;
  }

  .header-contact {
    padding: 0 14px;
  }

  .hero {
    padding: 76px 0 68px;
    text-align: left;
  }

  h1 {
    margin: 0;
    font-size: clamp(42px, 13.5vw, 62px);
    line-height: 1.01;
  }

  .hero-copy {
    margin: 24px 0 0;
    font-size: 16px;
  }

  .snapshot {
    padding: 26px;
    margin-bottom: 76px;
    border-radius: 24px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

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

  .snapshot-card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 24px;
  }

  .important-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .policy-layout {
    display: block;
  }

  .table-of-contents {
    position: static;
    padding: 0 0 62px;
  }

  .table-of-contents nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .table-of-contents a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 4px 0;
    border-bottom: 1px solid var(--line);
  }

  .policy section {
    padding-bottom: 62px;
  }

  .policy section + section {
    padding-top: 62px;
  }

  .policy h2 {
    font-size: 36px;
  }

  .contact-section {
    padding: 28px !important;
    margin-bottom: 70px;
  }

  .contact-button {
    width: 100%;
    padding: 12px 14px;
    overflow-wrap: anywhere;
    text-align: center;
  }

  footer {
    display: block;
  }

  footer p {
    margin-top: 18px;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .footer-links {
    margin-top: 18px;
  }
}

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .snapshot {
    padding: 20px;
  }

  .table-of-contents nav {
    grid-template-columns: 1fr;
  }

  .provider {
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  :root {
    --ink: #ffffff;
    --surface: #ffffff;
    --raised: #f5f5f5;
    --text: #111111;
    --muted: #333333;
    --subtle: #555555;
    --line: rgba(0, 0, 0, 0.16);
  }

  body {
    background: #ffffff;
    font-size: 11pt;
  }

  .site-header,
  .table-of-contents,
  .hero-orb {
    display: none;
  }

  .hero {
    padding: 30px 0;
    text-align: left;
  }

  .snapshot {
    padding: 22px;
    margin-bottom: 40px;
    box-shadow: none;
  }

  .policy-layout {
    display: block;
  }

  .policy section {
    padding: 0 0 28px;
    break-inside: avoid;
  }

  .policy section + section {
    padding-top: 28px;
  }

  .contact-section {
    padding: 22px !important;
  }

  a {
    text-decoration: none;
  }
}
