:root {
  --navy: #0b2450;
  --navy-2: #12386d;
  --gold: #d6a632;
  --gold-soft: #f5e7b8;
  --ink: #172033;
  --muted: #667085;
  --line: #e5eaf1;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --success: #0c7a5a;
  --shadow: 0 14px 38px rgba(11, 36, 80, .10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--navy-2); }
img { max-width: 100%; display: block; }

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: #fff; opacity: .92; }

.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,234,241,.9);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #fff7cf 0 11%, #e7bf59 12% 40%, #b98518 41% 100%);
  color: var(--navy);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold), 0 6px 18px rgba(11,36,80,.14);
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 17px;
}
.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}
.brand-text span { color: var(--muted); font-size: 12px; }
.nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #28364f;
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover, .nav a.active { background: #eef3fb; color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(214,166,50,.24), transparent 22%),
    linear-gradient(135deg, #0b2450 0%, #12386d 58%, #0d2a5b 100%);
  color: #fff;
  padding: 80px 0 76px;
}
.hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #ffe59a; font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .15em; }
.hero h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 12px 0 18px;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); }
.hero p { max-width: 720px; color: #dfe8f7; font-size: 18px; }
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.hero-card h3 { margin: 0 0 12px; font-size: 18px; }
.hero-card ul { margin: 0; padding-left: 20px; color: #e6eefb; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
}
.btn-primary { background: var(--gold); color: #15213a; }
.btn-primary:hover { background: #e5b94f; color: #15213a; }
.btn-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.17); color: #fff; }

.section { padding: 70px 0; }
.section.soft { background: var(--soft); }
.section-title { margin-bottom: 30px; }
.section-title .kicker { color: #9a6d00; text-transform: uppercase; font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.section-title h2 { margin: 8px 0 6px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 42px); }
.section-title p { margin: 0; color: var(--muted); max-width: 760px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 24px rgba(11,36,80,.04);
}
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #eef3fb;
  color: var(--navy);
  font-weight: 900;
}
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 26px; }
.stat { border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 16px; background: rgba(255,255,255,.07); }
.stat strong { display:block; font-size: 22px; color: #ffe59a; }
.stat span { font-size: 12px; color: #dce6f5; }

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2450, #173f76);
  color: #fff;
  padding: 52px 0 48px;
}
.page-hero .inner { position: relative; }
.breadcrumbs { color: #cdd9eb; font-size: 13px; }
.breadcrumbs a { color: #fff; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 8px; }
.page-hero p { color: #dbe5f4; max-width: 760px; margin: 0; }
.content { padding: 56px 0 74px; }
.prose { max-width: 900px; }
.prose h2, .prose h3 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; }
.prose h2 { font-size: 30px; margin: 34px 0 12px; }
.prose h3 { font-size: 22px; margin: 28px 0 10px; }
.prose p { color: #344054; }
.prose ul { padding-left: 22px; }
.prose li { margin: 8px 0; }
.callout {
  background: #fff9e9;
  border: 1px solid #f1dd9e;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  padding: 18px 20px;
  color: #5f4a0c;
  margin: 24px 0;
}
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 24px 0; }
.feature-item { padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; display:flex; gap:12px; align-items:flex-start; }
.feature-item .tick { flex:0 0 26px; width:26px; height:26px; border-radius:50%; background:#e8f5ef; color:var(--success); display:grid; place-items:center; font-weight:900; }

.streams { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:24px; }
.stream { border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff; }
.stream h3 { margin:0; padding:16px 18px; background:var(--navy); color:#fff; font-size:18px; font-family:inherit; }
.stream ul { margin:0; padding:18px 18px 20px 38px; }
.stream li { margin:7px 0; }

.meta-row { display:flex; flex-wrap:wrap; gap:14px; margin:18px 0 26px; }
.meta-pill { border:1px solid var(--line); background:#fff; border-radius:999px; padding:8px 12px; font-size:13px; color:#44506a; }
.notice-box { border:1px solid #dbe5f1; border-radius:18px; padding:26px; background:#f8fbff; }
.notice-box h2 { margin-top:0; }

.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:16px; }
table { width:100%; border-collapse:collapse; min-width:620px; background:#fff; }
th, td { padding:14px 16px; text-align:left; border-bottom:1px solid var(--line); }
th { background:#eef3fb; color:var(--navy); font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
tr:last-child td { border-bottom:0; }

.footer { background:#081b3d; color:#d6e0ee; padding:48px 0 22px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .9fr; gap:32px; }
.footer h3 { color:#fff; margin:0 0 12px; font-size:16px; }
.footer p, .footer li { color:#b9c7da; font-size:14px; }
.footer ul { margin:0; padding-left:18px; }
.footer a { color:#dbe5f4; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:30px; padding-top:18px; font-size:13px; color:#9fb0c8; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }

.mobile-menu { display:none; }
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid, .streams { grid-template-columns:1fr; }
  .hero { padding:58px 0; }
  .hero-card { max-width:640px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .header-row { align-items:flex-start; padding:14px 0; flex-direction:column; }
  .nav { justify-content:flex-start; }
  .feature-list { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
  .wrap { width:min(100% - 22px,1160px); }
  .topbar .wrap { justify-content:center; text-align:center; min-height:48px; }
  .topbar .right { display:none; }
  .brand { min-width:0; }
  .brand-text strong { font-size:17px; }
  .brand-text span { font-size:11px; }
  .nav { gap:4px; }
  .nav a { padding:8px 9px; font-size:12px; }
  .hero h1 { font-size:39px; }
  .page-hero { padding:42px 0 38px; }
  .section, .content { padding:48px 0; }
  .stats { grid-template-columns:1fr 1fr; }
  .card { padding:20px; }
}
