:root {
  --ink: #17212b;
  --muted: #607080;
  --line: #dce4ea;
  --soft: #f5f8fa;
  --panel: #ffffff;
  --teal: #087f7a;
  --teal-dark: #075f5b;
  --gold: #bf8a2b;
  --radius: 8px;
  --warn-bg: #fff7e8; --warn-line: #edd3a1; --warn-ink: #80540f;
  --danger-bg: #fbeaea; --danger-line: #f0c4c4; --danger-ink: #8a2b2b;
  --good-bg: #e5f3ea; --good-ink: #1e7d4f;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--soft); line-height: 1.55; }
a { color: var(--teal-dark); }
.topbar { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav { max-width: 1180px; margin: 0 auto; padding: 13px 20px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.brand { display: flex; gap: 10px; align-items: center; min-width: 168px; font-weight: 900; color: var(--ink); text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--teal), #15a06f 65%, var(--gold)); font-size: 13px; }
.links { display: flex; gap: 14px; flex: 1; flex-wrap: wrap; color: #334453; font-size: 13.5px; font-weight: 800; }
.links a { color: #334453; text-decoration: none; }
.links a:hover, .links a.active { color: var(--teal-dark); }
.actions { display: flex; gap: 10px; margin-left: auto; }
.btn { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); min-height: 42px; padding: 10px 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn.primary { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn.gold { background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn-ink); }

.hero { background: linear-gradient(120deg, #0c161f 0%, var(--teal-dark) 120%); color: #fff; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 56px 20px 48px; }
.eyebrow { display: inline-flex; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; padding: 7px 12px; color: #d7efe8; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.hero h1 { max-width: 820px; margin: 0 0 12px; font-size: clamp(30px,4.4vw,50px); line-height: 1.08; }
.hero-copy { max-width: 760px; margin: 0 0 26px; color: #dbe7ec; font-size: 17.5px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 10px; padding: 12px 18px; min-width: 130px; }
.stat .num { font-size: 19px; font-weight: 800; }
.stat .lab { font-size: 11.5px; color: #a9c6c2; text-transform: uppercase; letter-spacing: .5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section { max-width: 1180px; margin: 0 auto; padding: 44px 20px; }
.section-head { margin-bottom: 18px; }
h2 { margin: 0 0 6px; font-size: clamp(24px,2.6vw,32px); line-height: 1.15; }
h3 { font-size: 16.5px; margin: 0 0 6px; color: var(--teal-dark); }
.muted { color: var(--muted); font-size: 14px; }
.lede { color: var(--muted); font-size: 15.5px; max-width: 820px; }

.part-divider { background: #13222c; color: #fff; border-radius: 10px; padding: 22px 26px; margin: 0 20px 8px; max-width: 1140px; margin-left:auto; margin-right:auto; display:flex; gap:16px; align-items:center; }
.part-divider .num { background: var(--gold); color: #2b1e05; font-weight: 900; font-size: 18px; width: 40px; height: 40px; border-radius: 50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.part-divider h2 { color: #fff; margin: 0; font-size: 19px; }
.part-divider p { margin: 2px 0 0; color: #9fb3bd; font-size: 13.5px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width: 760px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: 0 1px 3px rgba(18,33,43,.04); }

table { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); font-size: 14px; }
th, td { text-align: left; padding: 11px 13px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--teal-dark); color: #fff; font-weight: 800; }
tr:last-child td { border-bottom: none; }

.tag { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px; }
.tag.confirmed { background: var(--good-bg); color: var(--good-ink); }
.tag.progress { background: var(--warn-bg); color: var(--warn-ink); }

.note { background: #eefaf8; color: var(--teal-dark); border-radius: 8px; padding: 14px 16px; }
.note h3 { color: var(--teal-dark); }
.note ul { margin: 6px 0 0; padding-left: 20px; }
.note li { margin-bottom: 6px; }

.unverified { background: var(--danger-bg); border: 1px solid var(--danger-line); border-radius: 10px; padding: 14px 16px; color: var(--danger-ink); font-size: 14px; }
.unverified strong { color: #6f1f1f; }

.timeline { border-left: 3px solid var(--gold); padding-left: 18px; margin-left: 4px; }
.timeline .item { margin-bottom: 16px; position: relative; font-size: 14.5px; }
.timeline .item::before { content:''; position:absolute; left:-24px; top:5px; width:9px; height:9px; border-radius:50%; background:var(--gold); }
.timeline .date { font-weight: 800; color: var(--teal-dark); font-size: 13px; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 10px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

.contact-card { background: #13222c; color: #fff; border-radius: 12px; padding: 32px; text-align: center; }
.contact-card h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 14px; margin-top: 22px; text-align: left; }
.contact-grid .item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 14px 16px; }
.contact-grid .item .lab { font-size: 10.5px; text-transform: uppercase; letter-spacing: .5px; color: #9fb3bd; margin-bottom: 3px; }
.contact-grid .item a { color: #fff; font-weight: 700; text-decoration: none; }

.sources { font-size: 13px; columns: 2; column-gap: 24px; }
.sources li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width:760px){ .sources{ columns:1; } }

footer { background: #0c161f; color: #9fb3bd; padding: 30px 20px; text-align: center; font-size: 13px; }
footer a { color: var(--gold); }
