:root {
  --ink: #1a2230;
  --ink-deep: #141b28;
  --slate: #3a4a5c;
  --mist: #f5f7fa;
  --paper: #ffffff;
  --line: #e5e7eb;
  --copy: #4b5563;
  --soft: #a8b8c8;
  --white: #f4f6f8;
}

* { box-sizing: border-box; }
html { overflow-y: scroll; scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--ink); font-family: Inter, Arial, sans-serif; line-height: 1.65; }
a { color: inherit; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; background: rgba(26, 34, 48, .92); border-bottom: 1px solid transparent; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background .4s ease, border-color .4s ease; }
.site-header::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(168,184,200,.15); content: ""; opacity: 0; transform: scaleX(0); transform-origin: left center; transition: transform .4s ease, opacity .4s ease; }
.site-header.is-scrolled { background: var(--ink); border-bottom-color: rgba(255,255,255,.07); }
.site-header.is-scrolled::after { opacity: 1; transform: scaleX(1); }
.site-header__inner, .container, .site-footer__inner { width: min(1280px, 100%); margin: 0 auto; padding-right: 24px; padding-left: 24px; }
.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-brand { display: inline-block; color: var(--white); text-decoration: none; }
.site-brand:hover { opacity: .85; }
.site-brand__name { display: block; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.site-brand__global { display: block; margin-top: 4px; padding-right: .05em; color: rgba(244,246,248,.52); font-family: Inter, Arial, sans-serif; font-size: .46rem; font-weight: 500; letter-spacing: .42em; line-height: 1.5; text-align: right; text-transform: uppercase; }
.wordmark { display: inline-flex; flex-direction: column; color: var(--white); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; text-decoration: none; white-space: nowrap; }
.wordmark small { align-self: flex-end; margin-top: 4px; color: rgba(244,246,248,.5); font-family: Inter, Arial, sans-serif; font-size: .46rem; font-weight: 500; letter-spacing: .42em; text-transform: uppercase; }
.site-nav-links, .header-cta-wrap { display: none; }
.site-nav-links a { color: inherit; text-decoration: none; }
.site-nav-link { position: relative; display: block; padding: 8px 16px; cursor: pointer; line-height: 1.5; }
.site-nav-link > span:first-child { display: block; color: rgba(244,246,248,.5); font-size: .875rem; font-weight: 400; letter-spacing: .01em; transition: color .2s ease; }
.site-nav-links a[aria-current="page"] .site-nav-link > span:first-child { color: var(--white); }
.site-nav-links a[aria-current="page"] .site-nav-link::after { position: absolute; right: 16px; bottom: 2px; left: 16px; height: 1px; border-radius: 1px; background: rgba(244,246,248,.35); content: ""; }
.site-nav-links a:not([aria-current="page"]):hover .site-nav-link > span:first-child { color: rgba(244,246,248,.85); }
.header-cta { display: block; padding: 9px 20px; border: 1px solid rgba(244,246,248,.2); border-radius: 4px; color: var(--white); font-size: .82rem; font-weight: 500; letter-spacing: .04em; line-height: 1.5; text-decoration: none; transition: border-color .2s ease, background .2s ease; user-select: none; }
.header-cta:hover { border-color: rgba(244,246,248,.5); background: rgba(244,246,248,.05); }
.mobile-menu-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; border: 0; background: none; cursor: pointer; gap: 5px; }
.mobile-menu-toggle span { display: block; width: 20px; height: 1px; background: rgba(244,246,248,.7); transform-origin: center; transition: transform .25s ease, opacity .2s ease; }
.site-header.is-menu-open .mobile-menu-toggle span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.is-menu-open .mobile-menu-toggle span:last-child { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-menu { position: fixed; inset: 0; z-index: 40; display: none; padding-top: 72px; background: var(--ink); }
.mobile-menu.is-open { display: block; }
.mobile-menu__inner { padding: 32px 24px; }
.mobile-menu__links { margin: 0; padding: 0; list-style: none; }
.mobile-menu__links li { border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu__links a { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; color: rgba(244,246,248,.52); font-size: 1.1rem; font-weight: 400; letter-spacing: .01em; text-decoration: none; }
.mobile-menu__links a[aria-current="page"] { color: var(--white); }
.mobile-menu__links a span:last-child { color: rgba(244,246,248,.2); font-size: 1rem; }
.mobile-menu .header-cta { margin-top: 32px; padding: 14px; text-align: center; }
body.menu-open { overflow: hidden; }
main { padding-top: 72px; background: linear-gradient(to bottom, transparent 0, transparent 72px, var(--mist) 72px); }

@media (min-width: 1024px) {
  .site-header__inner, .container, .site-footer__inner { padding-right: 40px; padding-left: 40px; }
  .site-nav-links { display: flex; align-items: center; gap: 0; }
  .header-cta-wrap { display: flex; align-items: center; gap: 16px; }
  .mobile-menu-toggle { display: none; }
}

.page-hero { padding: 92px 0 78px; background: radial-gradient(circle at 80% 20%, #27364a 0, var(--ink) 46%, var(--ink-deep) 100%); color: var(--white); }
.page-hero--article { padding-bottom: 62px; }
.eyebrow { margin: 0 0 14px; color: var(--soft); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.page-hero h1 { max-width: 880px; margin: 0; color: var(--white); font-size: clamp(2.25rem, 5vw, 4.1rem); letter-spacing: -.04em; line-height: 1.08; }
.page-hero__copy { max-width: 660px; margin: 20px 0 0; color: rgba(244,246,248,.72); font-size: 1.05rem; }
.article-meta { margin: 20px 0 0; color: rgba(244,246,248,.58); font-size: .85rem; }

.content { padding: 72px 0; }
.content--insights { padding-top: 54px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.post-card { display: flex; flex-direction: column; min-height: 320px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: 0 2px 8px rgba(26,34,48,.04); }
.post-card h2 { margin: 4px 0 14px; color: var(--ink); font-size: 1.45rem; letter-spacing: -.02em; line-height: 1.2; }
.post-card p { margin: 0; color: var(--copy); }
.post-card__link, .text-link { margin-top: auto; padding-top: 24px; color: var(--slate); font-size: .9rem; font-weight: 700; text-decoration: none; }
.post-card__link:hover, .text-link:hover { text-decoration: underline; }

.article { width: min(760px, calc(100% - 48px)); margin: 0 auto; padding: 64px 0 76px; color: var(--copy); font-size: 1.03rem; }
.article > p { margin: 0 0 22px; }
.article > p:first-of-type { color: #374151; font-size: 1.2rem; line-height: 1.7; }
.article-note { margin: 38px 0 0; padding: 22px 24px; border-left: 3px solid var(--slate); border-radius: 0 7px 7px 0; background: var(--paper); color: var(--copy); }
.article-note a { color: var(--slate); font-weight: 700; }
.article-back { display: inline-block; margin-top: 42px; color: var(--slate); font-size: .9rem; font-weight: 700; text-decoration: none; }

.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: var(--ink); color: rgba(244,246,248,.64); }
.site-footer__inner { padding-top: 48px; padding-bottom: 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-title { margin: 0 0 12px; color: rgba(244,246,248,.82); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-copy, .footer-list { margin: 0; font-size: .84rem; }
.footer-list { padding: 0; list-style: none; }
.footer-list li + li { margin-top: 8px; }
.footer-list a { color: rgba(244,246,248,.64); text-decoration: none; }
.footer-list a:hover { color: var(--white); }
.footer-base { display: flex; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: rgba(244,246,248,.52); font-size: .76rem; }

@media (max-width: 760px) {
  .container, .site-footer__inner { width: 100%; padding-right: 16px; padding-left: 16px; }
  .page-hero { padding: 66px 0 58px; }
  .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .post-card { min-height: 0; }
  .footer-base { flex-direction: column; }
  .content--insights { padding-top: 38px; }
  .article { width: min(100% - 32px, 760px); padding-top: 46px; }
}
