:root {
  color-scheme: light;
  --ink: #101412;
  --muted: #52616f;
  --line: #d9e1e8;
  --paper: #f5f7fa;
  --white: #fff;
  --navy: #0a2342;
  --navy-deep: #07182d;
  --ice: #e6edf5;
  --copper: #d97706;
  --shadow: 0 24px 80px rgba(5, 20, 38, .18);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.62 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.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; }
.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 clamp(20px,5vw,72px); background: rgba(255,255,255,.97); box-shadow: 0 12px 40px rgba(5,20,38,.09); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; min-width: 230px; }
.brand img { width: 224px; }
.site-nav { display: flex; align-items: center; gap: 4px; font-size: .94rem; font-weight: 700; }
.site-nav a { padding: 10px 14px; border-radius: var(--radius); }
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(10,35,66,.1); outline: none; }
.site-nav .nav-cta { margin-left: 8px; background: var(--navy); color: var(--white); }
.language-switcher { display: inline-flex; min-height: 42px; align-items: center; gap: 7px; margin-left: 6px; padding: 0 9px 0 11px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--navy-deep); }
.language-switcher:hover, .language-switcher:focus-within { border-color: #375a7f; box-shadow: 0 0 0 3px rgba(55,90,127,.12); }
.language-switcher-icon { font-size: 1rem; line-height: 1; }
.language-switcher select { max-width: 116px; border: 0; outline: 0; background: transparent; color: inherit; font: inherit; font-weight: 800; cursor: pointer; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: var(--radius); background: var(--navy); color: #fff; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }
.hero { overflow: hidden; padding: 142px clamp(20px,5vw,72px) 78px; background: var(--navy-deep); color: #fff; }
.hero-inner { width: min(1180px,100%); margin: auto; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(310px,.72fr); gap: clamp(48px,7vw,96px); align-items: center; }
.eyebrow { margin: 0 0 14px; color: #fbbf24; font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumbs { margin: 0 0 26px; color: #c5d1df; font-size: .86rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.7rem,6vw,5.55rem); line-height: .96; letter-spacing: -.055em; }
.hero-lede { max-width: 720px; margin: 28px 0 0; color: #dce5ee; font-size: clamp(1.12rem,2vw,1.38rem); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 800; }
.button-primary { background: var(--copper); color: #fff; }
.button-secondary { border-color: rgba(255,255,255,.36); color: #fff; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 42px 0 0; padding: 0; background: rgba(255,255,255,.18); }
.hero-proof div { padding: 17px; background: var(--navy-deep); }
.hero-proof dt { color: #fff; font-weight: 850; }
.hero-proof dd { margin: 4px 0 0; color: #bfcddd; font-size: .85rem; }
.report-card { position: relative; max-width: 440px; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.08); box-shadow: var(--shadow); }
.report-card img { width: 100%; border-radius: 4px; box-shadow: 0 18px 45px rgba(0,0,0,.34); }
.report-card p { margin: 15px 0 0; color: #cbd7e3; font-size: .89rem; }
.section { padding: 88px clamp(20px,5vw,72px); }
.section-inner { width: min(1100px,100%); margin: auto; }
.section-white { background: #fff; }
.section h2 { max-width: 820px; margin: 0 0 24px; color: var(--navy); font-size: clamp(2rem,4vw,3.25rem); line-height: 1.06; letter-spacing: -.035em; }
.section h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.25rem; line-height: 1.25; }
.section-intro { max-width: 820px; color: var(--muted); font-size: 1.14rem; }
.content-grid { display: grid; grid-template-columns: 1.55fr .72fr; gap: clamp(38px,7vw,90px); align-items: start; }
.prose { max-width: 760px; }
.prose p, .prose li { color: #354452; }
.prose h2 { margin-top: 58px; font-size: clamp(1.75rem,3vw,2.45rem); }
.prose h3 { margin-top: 30px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 9px; }
.aside { position: sticky; top: 100px; padding: 24px; border-top: 4px solid var(--copper); background: var(--ice); }
.aside ul { padding: 0; margin: 16px 0 0; list-style: none; }
.aside li + li { border-top: 1px solid #c7d2df; }
.aside a { display: block; padding: 11px 0; color: var(--navy); font-weight: 750; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.step { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.step span { display: block; margin-bottom: 20px; color: var(--copper); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.compare { width: 100%; margin: 30px 0; border-collapse: collapse; background: #fff; }
.compare th, .compare td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { background: var(--navy); color: #fff; }
.download-panel { display: grid; grid-template-columns: minmax(180px,.42fr) 1fr; gap: 36px; align-items: center; padding: 42px; background: var(--navy); color: #fff; }
.download-panel img { width: min(240px,100%); box-shadow: 0 18px 48px rgba(0,0,0,.32); }
.download-panel h2 { color: #fff; }
.download-panel p { color: #cbd7e3; }
.faq-list { max-width: 900px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 42px 22px 0; color: var(--navy); font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.faq-list p { max-width: 760px; margin: -4px 0 22px; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.related-card p { color: var(--muted); font-size: .92rem; }
.related-card a { color: var(--navy); font-weight: 850; }
.site-footer { padding: 48px clamp(20px,5vw,72px); background: #06172a; color: #c5d1df; }
.footer-inner { width: min(1100px,100%); margin: auto; display: flex; justify-content: space-between; gap: 32px; }
.footer-inner strong { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 820px) {
  .site-header { height: 68px; }
  .brand, .brand img { min-width: 0; width: 188px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 68px 0 auto; display: none; padding: 18px 20px 24px; background: #fff; box-shadow: 0 20px 40px rgba(5,20,38,.16); }
  .site-nav.is-open { display: grid; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .language-switcher { width: 100%; margin-left: 0; padding: 8px 14px; }
  .language-switcher select { max-width: none; flex: 1; }
  .hero { padding-top: 112px; }
  .hero-inner, .content-grid { grid-template-columns: 1fr; }
  .report-card { max-width: 370px; }
  .hero-proof, .steps, .related-grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .download-panel { grid-template-columns: 1fr; padding: 28px; }
  .download-panel img { width: 190px; }
  .footer-inner { display: grid; }
  .compare { display: block; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
