:root {
  --navy: #062654;
  --blue: #155eef;
  --violet: #6f2cff;
  --ink: #101828;
  --muted: #596579;
  --line: #dbe4f0;
  --surface: #f6f9ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - 1120px) / 2));
  background: var(--navy);
  color: #fff;
}
.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.policy-brand img {
  width: 94px;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}
.policy-brand strong,
.policy-brand small { display: block; }
.policy-brand small { margin-top: 3px; color: #c7d7ee; font-size: 12px; }
.policy-home {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 11px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}
.policy-home:hover,
.policy-home:focus-visible { background: #fff; color: var(--navy); }
.policy-shell {
  width: min(920px, calc(100% - 36px));
  margin: 42px auto 80px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  box-shadow: 0 24px 60px rgba(6,38,84,.09);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1 { margin: 0; color: var(--navy); font-size: clamp(34px, 6vw, 56px); line-height: 1.05; }
.policy-lead { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.policy-shell section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
h2 { margin: 0 0 14px; color: var(--navy); font-size: 26px; }
p, li { line-height: 1.7; }
li + li { margin-top: 8px; }
.policy-meta { margin-top: 24px; color: var(--muted); font-size: 13px; }
.policy-footer { padding: 26px 18px; background: var(--navy); color: #c7d7ee; text-align: center; font-size: 13px; }
.policy-footer a { color: #fff; }
@media (max-width: 620px) {
  .policy-header { align-items: flex-start; }
  .policy-brand span { display: none; }
  .policy-shell { margin-top: 20px; }
}
