:root {
  --primary: #061a4d;
  --accent: #f8cd2e;
  --background: #061a4d;
  --card: #0a245e;
  --text: #ffffff;
  --muted: color-mix(in srgb, var(--text), transparent 36%);
  --border: color-mix(in srgb, var(--text), transparent 84%);
  --radius: 2px;
  --shadow: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--background); color: var(--text); font-weight: 300; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header { position: absolute; top: 0; left: 0; right: 0; z-index: 10; background: linear-gradient(180deg, rgba(6,26,77,.82), rgba(6,26,77,0)); border-bottom: 0; }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: white; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(248,205,46,.72); color: var(--accent); font-size: .9rem; font-weight: 800; letter-spacing: .08em; }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-size: clamp(1.65rem, 3vw, 2.15rem); font-weight: 300; letter-spacing: -.02em; }
.brand-tagline { margin-top: 6px; color: rgba(255,255,255,.64); font-size: .62rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
.nav-links { display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.9); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.nav-links a:hover { color: var(--accent); }
.button { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--primary); border: 1px solid var(--accent); padding: 13px 20px; border-radius: var(--radius); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.45); }
.section .button.secondary { color: var(--accent); border-color: color-mix(in srgb, var(--accent), transparent 55%); }
.button:hover { transform: translateY(-1px); }
.hero { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,26,77,.92) 0%, rgba(6,26,77,.58) 42%, rgba(6,26,77,.08) 100%); opacity: 1; }
.hero-content { position: relative; z-index: 1; color: white; padding: 136px 0 92px; max-width: 760px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); font-weight: 300; }
h2 { font-size: clamp(2.1rem, 5vw, 4.5rem); color: white; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; }
h3 { font-size: 1.45rem; color: var(--accent); font-weight: 400; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: color-mix(in srgb, currentColor, transparent 18%); max-width: 720px; }
.section { padding: 88px 0; }
.section.alt { background: #071f5c; }
.grid { display: grid; gap: 24px; }
.grid.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: color-mix(in srgb, var(--card), transparent 14%); border: 1px solid rgba(255,255,255,.16); border-radius: 0; padding: 30px; box-shadow: none; }
.country-card { aspect-ratio: 16 / 9; display: flex; flex-direction: column; justify-content: center; text-align: center; text-transform: uppercase; letter-spacing: .16em; }
.card:hover { border-color: var(--accent); }
.page-hero { padding-top: 150px; background: radial-gradient(circle at 75% 10%, rgba(248,205,46,.12), transparent 34%), #061a4d; border-bottom: 1px solid rgba(255,255,255,.12); }
.page-hero h1 { color: white; max-width: 920px; font-size: clamp(2.75rem, 6vw, 5rem); }
.page-hero .lead { color: rgba(255,255,255,.76); margin-top: 24px; }
.blog-section { background: #071f5c; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.post-card { min-height: 270px; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.post-card:hover { transform: translateY(-4px); background: color-mix(in srgb, var(--card), white 6%); }
.post-card h3 { margin-top: 18px; color: white; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.16; }
.post-card p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.post-meta, .article-meta { margin-top: auto; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }
.page-article { padding-top: 150px; padding-bottom: 100px; }
.page-article .lead { color: rgba(255,255,255,.74); margin-top: 24px; }
.article-body { margin-top: 48px; padding-top: 42px; border-top: 1px solid rgba(255,255,255,.16); }
.article-body p, .article-body li { color: rgba(255,255,255,.82); font-size: 1.06rem; line-height: 1.82; }
.article-body h2, .article-body h3 { color: white; text-transform: none; letter-spacing: 0; }
.article-body a { color: var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent), transparent 50%); }
.article-image { margin: 34px 0 0; border: 1px solid rgba(255,255,255,.14); }
.article-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .95rem; }
.article-body th, .article-body td { border: 1px solid rgba(255,255,255,.16); padding: 12px 14px; vertical-align: top; }
.article-body th { color: var(--accent); text-align: left; background: rgba(248,205,46,.08); }
.article-body blockquote { margin: 30px 0; padding: 18px 22px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.05); }
.metric { font-size: clamp(2rem, 5vw, 4rem); color: var(--accent); font-weight: 800; line-height: 1; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.image-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.list li { padding-left: 28px; position: relative; }
.list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 10px; border-radius: 999px; background: var(--accent); }
.article { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0; }
.article h1 { color: white; font-size: clamp(2.4rem, 6vw, 4.8rem); }
.article h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-top: 48px; }
.article p, .article li { color: var(--muted); }
.article .article-body p, .article .article-body li { color: rgba(255,255,255,.82); }
.article blockquote { margin: 32px 0; padding: 22px 28px; border-left: 4px solid var(--accent); background: color-mix(in srgb, var(--accent), transparent 90%); }
.form { display: grid; gap: 16px; }
input, textarea, select { width: 100%; border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: var(--radius); padding: 14px 16px; font: inherit; }
label { color: var(--accent); font-weight: 800; font-size: .9rem; }
.footer { margin-top: auto; padding: 48px 0; background: var(--primary); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .brand { min-width: 0; }
  .brand-name { font-size: 1.45rem; }
  .nav-links { gap: 10px 14px; font-size: .66rem; letter-spacing: .15em; }
  .button { margin-bottom: 8px; }
  .hero { min-height: 72vh; }
  h1 { font-size: clamp(3rem, 13vw, 4.25rem); }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .page-hero, .page-article { padding-top: 180px; }
  .post-card { min-height: auto; }
}
