:root {
  --charcoal: #232323;
  --ink: #111111;
  --panel: #2b2b2b;
  --panel-raised: #303030;
  --white: #f5f5f3;
  --light-gray: #c8c8c6;
  --mid-gray: #8b8b89;
  --line: #484846;
  --gold: #f6a000;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--charcoal);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 5%, rgba(255, 255, 255, 0.035), transparent 28rem),
    linear-gradient(180deg, #1d1d1d 0, var(--charcoal) 34rem);
  color: var(--light-gray);
  line-height: 1.65;
}

a {
  color: var(--white);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffffff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 0.45rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 270px;
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 5vw, 4rem);
  padding: 2.5rem 0;
}

.brand {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid #4d4d4b;
  border-radius: 50%;
  background: #202020;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: 142px;
  object-fit: contain;
}

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

.eyebrow,
.section-kicker,
.contents-title,
.request-label {
  margin: 0 0 0.45rem;
  color: var(--light-gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.updated {
  margin: 0;
  color: var(--mid-gray);
  font-size: 0.95rem;
}

.page-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.5rem;
  padding: 3rem 0 5rem;
}

.contents {
  align-self: start;
  position: sticky;
  top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(17, 17, 17, 0.5);
}

.contents nav {
  display: grid;
  gap: 0.45rem;
}

.contents a {
  padding: 0.3rem 0;
  color: var(--mid-gray);
  font-size: 0.86rem;
  text-decoration: none;
}

.contents a:hover,
.contents a:focus-visible {
  color: var(--white);
}

.policy-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(43, 43, 43, 0.95);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.policy-card section {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 1rem;
}

.policy-card section:last-child {
  border-bottom: 0;
}

.policy-card .intro {
  background: var(--ink);
}

h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.intro h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.65rem;
}

strong {
  color: var(--white);
}

.request-card {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem;
  border: 1px solid #565654;
  border-radius: 0.8rem;
  background: var(--panel-raised);
}

.request-card p:last-child,
.request-label {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: #ffffff;
}

address {
  padding-left: 1rem;
  border-left: 3px solid var(--light-gray);
  font-style: normal;
}

.provider-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--mid-gray);
  font-size: 0.85rem;
  text-align: center;
}

footer img {
  object-fit: contain;
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.disclosure {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border: 1px solid #565654;
  border-radius: 0.8rem;
  background: var(--panel-raised);
  color: var(--white);
}

.disclosure-label {
  margin-bottom: 0.55rem;
  color: var(--light-gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

@media (max-width: 800px) {
  .header-inner {
    min-height: auto;
  }

  .brand {
    width: 118px;
    height: 118px;
  }

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

  .page-shell {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
  }

  .contents {
    position: static;
  }

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

@media (max-width: 540px) {
  .header-inner {
    align-items: flex-start;
    gap: 1rem;
  }

  .brand {
    width: 84px;
    height: 84px;
  }

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

  h1 {
    font-size: 3rem;
  }

  .contents nav,
  .request-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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