:root {
  --navy: #07111f;
  --navy-2: #0b1f3a;
  --gold: #c9922a;
  --ink: #101828;
  --muted: #5d6b7d;
  --line: #dbe3ee;
  --paper: #ffffff;
  --bg: #f7f9fc;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: #0b61a4; }
.site-header {
  background: var(--navy);
  color: #fff;
  padding: 22px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}
.site-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-nav a { color: #e8eef7; text-decoration: none; font-size: 14px; }
.hero {
  background: linear-gradient(135deg, rgba(7,17,31,.96), rgba(11,31,58,.92)), url('/media/hero-poster.webp') center/cover;
  color: #fff;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
}
.eyebrow {
  color: #e6bd6a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.03;
  margin: 0 0 18px;
  letter-spacing: 0;
  max-width: 960px;
}
.hero p {
  max-width: 760px;
  color: #dbe5f2;
  font-size: clamp(18px, 2vw, 22px);
}
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 42px) 72px;
}
section { margin: 0 0 34px; }
h2 { font-size: clamp(26px, 4vw, 42px); line-height: 1.12; margin: 0 0 14px; }
h3 { font-size: 22px; line-height: 1.2; margin: 24px 0 10px; }
p, li { font-size: 17px; }
.content {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 44px);
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.note {
  background: #f3f7fb;
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
}
.cta {
  background: var(--navy-2);
  color: #fff;
  padding: 28px;
  margin: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  background: var(--gold);
  color: #08111f;
  text-decoration: none;
  font-weight: 800;
}
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a {
  border: 1px solid var(--line);
  background: #fff;
  color: #172033;
  text-decoration: none;
  padding: 10px 12px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  margin: 10px 0;
}
summary { cursor: pointer; font-weight: 800; }
.disclaimer {
  color: #475467;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.site-footer {
  background: var(--navy);
  color: #cdd7e5;
  padding: 28px clamp(18px, 4vw, 56px);
}
@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  .site-nav { width: 100%; }
  .two-col { grid-template-columns: 1fr; }
  .cta { align-items: flex-start; }
}
