:root {
  color-scheme: light;
  --ink: #102d50;
  --deep: #071f3e;
  --blue: #075caf;
  --sky: #d9ebfb;
  --gold: #fbb117;
  --paper: #f6f8fa;
  --line: #d6e0e9;
  --muted: #5f7083;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 40, 76, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 8px 14px;
  color: var(--deep);
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--deep);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.header-inner, .hero-inner, .page-shell, .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 45px;
  height: 45px;
  padding: 3px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}
.brand-mark img, .footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; gap: 3px; }
.brand-eyebrow {
  color: #b9cde0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.brand-title { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.header-contact {
  color: #f6cf70;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}
.header-contact span, .contact-card span { margin-left: 5px; }
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(7, 92, 175, .72), transparent 29%),
    linear-gradient(120deg, var(--deep) 0%, #0a315e 55%, #0a477e 100%);
}
.hero-inner { position: relative; padding: 76px 0 32px; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7ca5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker span { width: 28px; height: 2px; background: var(--gold); }
.hero-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 40px;
}
.hero-copy { padding: 48px 0 20px; }
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 30px;
  font-size: clamp(66px, 10vw, 144px);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .84;
}
h1 em {
  color: var(--gold);
  font-style: normal;
  -webkit-text-stroke: 1px var(--gold);
}
.hero-intro {
  max-width: 400px;
  margin: 0;
  color: #c8d9e9;
  font-size: 17px;
  line-height: 1.65;
}
.hero-meta {
  justify-self: end;
  width: min(100%, 330px);
}
.hero-logo-frame {
  width: 170px;
  height: 170px;
  margin: 0 0 35px auto;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.95);
  border: 9px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.hero-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.date-block {
  margin: 0;
  padding: 19px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.3);
}
.date-block div { display: grid; gap: 2px; }
.date-block dt {
  color: #9fb8d0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.date-block dd { margin: 0; color: var(--white); font-size: 15px; font-weight: 700; }
.hero-rule { display: flex; align-items: center; gap: 15px; color: #8eacc7; font-size: 11px; font-weight: 700; }
.hero-rule i { display: block; height: 1px; flex: 1; background: rgba(255,255,255,.25); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 620px; height: 620px; top: -260px; right: -140px; }
.hero-orbit-two { width: 430px; height: 430px; top: -165px; right: -45px; border-color: rgba(251,177,23,.2); }
.page-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 82px;
  padding-top: 84px;
}
.section-index { align-self: start; position: sticky; top: 25px; }
.index-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-index nav { display: grid; gap: 3px; }
.section-index a {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 6px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.section-index a span { color: #99a8b6; font-size: 10px; font-weight: 700; }
.section-index a:hover { color: var(--blue); transform: translateX(4px); }
.document-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 68px;
  padding: 21px 25px;
  color: #456078;
  background: var(--sky);
  border-left: 4px solid var(--gold);
}
.document-note p { margin: 0; font-size: 14px; line-height: 1.55; }
.note-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}
.policy-section {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 70px;
  margin-bottom: 68px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 25px;
}
.section-number {
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
}
.section-body { max-width: 700px; }
h2 {
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.1;
}
.section-body p { margin-bottom: 20px; color: #3e5368; }
.section-body p:last-child { margin-bottom: 0; }
.section-body ul { margin: -3px 0 23px; padding: 0; list-style: none; color: #3e5368; }
.section-body li {
  position: relative;
  padding: 4px 0 4px 22px;
}
.section-body li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.contact-section { border-bottom: 0; padding-bottom: 105px; margin-bottom: 0; }
.contact-card {
  display: grid;
  gap: 8px;
  width: min(100%, 510px);
  margin-top: 30px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--deep);
  box-shadow: var(--shadow);
}
.contact-card strong { font-size: 14px; letter-spacing: .04em; }
.contact-card a { color: #f6cf70; font-size: 15px; text-underline-offset: 4px; }
.site-footer {
  color: #aec3d8;
  background: var(--deep);
  border-top: 4px solid var(--gold);
}
.footer-inner {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 35px;
  font-size: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.footer-brand img { width: 35px; height: 35px; padding: 3px; background: var(--white); border-radius: 50%; }
.footer-inner > a { color: #f6cf70; text-underline-offset: 4px; }
.footer-updated { text-align: right; }
.footer-updated strong { display: block; color: var(--white); font-size: 13px; }
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(8,40,76,.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #ffd262; }
.back-to-top span { font-size: 21px; line-height: 1; }
.reveal { animation: rise-in .6s ease both; }
@keyframes rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media (max-width: 900px) {
  .page-shell { grid-template-columns: 1fr; gap: 0; padding-top: 46px; }
  .section-index { position: relative; top: auto; margin-bottom: 55px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
  .section-index nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
  .section-index a { font-size: 11px; }
  .hero-inner { padding-top: 58px; }
}
@media (max-width: 620px) {
  .header-inner, .hero-inner, .page-shell, .footer-inner { width: min(100% - 34px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-title { font-size: 16px; }
  .brand-eyebrow { font-size: 8px; letter-spacing: .1em; }
  .header-contact { font-size: 11px; }
  .hero-inner { padding: 48px 0 24px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 25px; min-height: 0; }
  .hero-copy { padding: 33px 0 0; }
  h1 { margin-bottom: 25px; font-size: clamp(58px, 19vw, 95px); }
  .hero-intro { font-size: 15px; }
  .hero-meta { width: 100%; display: flex; align-items: end; gap: 22px; }
  .hero-logo-frame { width: 100px; height: 100px; flex: 0 0 100px; margin: 0; padding: 11px; border-width: 6px; }
  .date-block { flex: 1; padding-top: 12px; gap: 11px; }
  .date-block dt { font-size: 8px; }
  .date-block dd { font-size: 13px; }
  .section-index nav { grid-template-columns: 1fr; }
  .document-note { grid-template-columns: 36px minmax(0, 1fr); gap: 11px; margin-bottom: 48px; padding: 17px; }
  .note-symbol { width: 32px; height: 32px; font-size: 19px; }
  .document-note p { font-size: 13px; }
  .policy-section { grid-template-columns: 38px minmax(0, 1fr); gap: 10px; padding-bottom: 48px; margin-bottom: 48px; }
  .section-number { font-size: 13px; }
  h2 { margin-bottom: 18px; font-size: 29px; }
  .section-body p, .section-body li { font-size: 15px; line-height: 1.68; }
  .contact-section { padding-bottom: 68px; }
  .contact-card { padding: 21px; }
  .footer-inner { grid-template-columns: 1fr; gap: 13px; padding: 27px 0; }
  .footer-updated { text-align: left; }
  .back-to-top { right: 16px; bottom: 16px; }
}