:root {
  --navy: #04152f;
  --teal: #087f7a;
  --mint: #55d6cf;
  --ink: #0a1c35;
  --muted: #536277;
  --line: #dbe2e8;
  --mist: #f3f7f8;
  --max: 920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-underline-offset: 3px; }
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px; padding: 12px 16px;
  color: #fff; border-radius: 3px; background: var(--navy); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button):focus-visible { outline: 3px solid #f1cf6a; outline-offset: 4px; }
.legal-header {
  color: #fff; background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.header-inner {
  width: min(calc(100% - 48px), 1220px); min-height: 96px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; width: 230px; }
.brand img { display: block; width: 100%; height: auto; }
.home-link { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.home-link:hover { color: var(--mint); }
.legal-hero {
  padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 68px;
  color: #fff; background: linear-gradient(135deg, #031329, #06314c);
}
.eyebrow { margin: 0 0 14px; color: var(--mint); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { line-height: 1.2; letter-spacing: -.025em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 6vw, 66px); }
.legal-hero p:last-child { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 17px; }
.legal-content { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 68px 0 100px; }
.notice {
  margin-bottom: 44px; padding: 22px 24px; border-left: 4px solid var(--teal);
  background: var(--mist); color: #3f4f63;
}
h2 { margin: 48px 0 12px; font-size: 27px; }
p, li { color: var(--muted); }
ul { padding-left: 22px; }
li { margin: 8px 0; }
.meta { color: #66758a; font-size: 14px; }
.contact-box {
  margin-top: 48px; padding: 26px; border: 1px solid var(--line); background: var(--mist);
}
.contact-box h2 { margin-top: 0; }
footer { padding: 42px max(24px, calc((100vw - 1220px) / 2)) 30px; color: #fff; background: #031329; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 24px; }
.footer-links a { color: rgba(255,255,255,.82); }
.footer-base { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,255,255,.64); border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }
@media (max-width: 620px) {
  .header-inner { width: calc(100% - 36px); min-height: 80px; }
  .brand { width: 185px; }
  .legal-hero { padding-top: 58px; }
  .legal-content { width: calc(100% - 40px); padding-top: 50px; }
  .footer-base { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
