:root {
  --navy: #07152b;
  --navy-2: #0c2344;
  --blue: #246bfe;
  --yellow: #ffda3d;
  --coral: #ff6f61;
  --ink: #0a1220;
  --muted: #5c6675;
  --paper: #f6f7f9;
  --white: #fff;
  --line: #d7dce3;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 17px; line-height: 1.55; letter-spacing: 0; }
a { color: inherit; }
.wrap, .header-inner { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 40; background: var(--yellow); padding: 10px 14px; }
.skip:focus { top: 12px; }
.header { position: relative; z-index: 20; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: inline-flex; gap: 0; align-items: center; text-decoration: none; font-size: 21px; font-weight: 950; text-transform: uppercase; }
.wordmark span { color: var(--blue); }
.wordmark i { width: 9px; height: 9px; margin-left: 7px; background: var(--yellow); border-radius: 50%; }
.nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 750; }
.nav a { text-decoration: none; }
.nav a:not(.button):hover { color: var(--blue); }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 21px; border: 1px solid var(--ink); border-radius: 5px; background: var(--yellow); color: var(--ink); font-weight: 850; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 var(--blue); }
.button.blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.button.light { background: var(--white); }
.menu { display: none; }
.hero { position: relative; min-height: 670px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy) url('/assets/hero-v2.webp') center / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 16, 36, .98), rgba(4, 16, 36, .86) 42%, rgba(4, 16, 36, .1) 76%); }
.hero-copy { position: relative; width: min(720px, 62%); padding: 100px 0; }
.tag { display: inline-flex; align-items: center; gap: 9px; color: #9fbaff; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.tag::before { content: ""; width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; text-wrap: balance; }
h1 { margin-top: 21px; max-width: 13ch; font-size: clamp(50px, 6.5vw, 86px); }
h2 { font-size: clamp(35px, 4.2vw, 58px); }
h3 { font-size: 22px; }
.hero p { max-width: 620px; margin: 26px 0 0; font-size: 20px; color: #cbd7e9; }
.actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.actions small { color: #9fb0c9; }
.quick { background: var(--yellow); color: var(--ink); }
.quick-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); }
.quick-title, .quick-item { min-height: 116px; padding: 28px; border-right: 1px solid #c6a900; }
.quick-title { display: flex; align-items: center; font-size: 20px; font-weight: 900; }
.quick-item b { display: block; color: #3c3300; font-size: 12px; }
.quick-item span { display: block; margin-top: 7px; font-weight: 750; }
.section { padding: 100px 0; }
.section.white { background: var(--white); }
.section.navy { background: var(--navy); color: var(--white); }
.head-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 450px); gap: 70px; align-items: end; margin-bottom: 52px; }
.head-grid p { margin: 0; color: var(--muted); }
.navy .head-grid p { color: #aebcd1; }
.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.capability-label { color: var(--blue); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.capability h3 { margin-top: 72px; }
.capability p { color: var(--muted); }
.report-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.report-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #304566; }
.report-list li { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid #304566; color: #c6d1e1; }
.report-list b { color: var(--yellow); }
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.route { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); text-decoration: none; }
.route:hover { border-color: var(--blue); }
.route p { color: var(--muted); }
.route span { display: block; margin-top: 32px; color: var(--blue); font-weight: 800; }
.cta { background: var(--coral); color: #210b08; }
.cta-inner { min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.page-hero { padding: 92px 0 78px; background: var(--navy); color: var(--white); }
.page-hero h1 { max-width: 16ch; }
.page-hero p { max-width: 760px; color: #b8c6da; font-size: 20px; }
.crumbs { margin-bottom: 27px; color: #91a4bf; font-size: 13px; }
.crumbs a { color: var(--yellow); }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 80px; }
.article h2 { margin: 58px 0 18px; font-size: clamp(30px, 3.2vw, 44px); }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: var(--muted); }
.article ul { padding-left: 22px; }
.aside { position: sticky; top: 24px; align-self: start; border-top: 3px solid var(--blue); }
.aside a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 750; }
.faq { border-top: 2px solid var(--ink); }
.faq article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq p { margin-bottom: 0; }
.footer { padding: 52px 0; background: #030b19; color: #9daec7; }
.footer-inner { display: flex; justify-content: space-between; gap: 36px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--white); }
.fine { max-width: 560px; font-size: 13px; }
@media (max-width: 820px) {
  .nav { display: none; }
  .menu { display: block; position: relative; }
  .menu summary { list-style: none; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; font-size: 22px; }
  .menu summary::-webkit-details-marker { display: none; }
  .menu nav { position: absolute; right: 0; top: 50px; width: min(280px, calc(100vw - 40px)); display: grid; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 36px rgba(0,0,0,.14); }
  .menu a { padding: 12px; text-decoration: none; font-weight: 750; }
  .hero { min-height: 700px; align-items: end; background-position: 64% center; }
  .hero::before { background: linear-gradient(180deg, rgba(4, 16, 36, .12), rgba(4, 16, 36, .99) 68%); }
  .hero-copy { width: 100%; padding: 250px 0 58px; }
  h1 { font-size: clamp(44px, 13vw, 66px); }
  .quick-grid, .capabilities, .routes { grid-template-columns: 1fr; }
  .quick-title, .quick-item { border-right: 0; border-bottom: 1px solid #c6a900; min-height: auto; }
  .section { padding: 72px 0; }
  .head-grid, .report-layout, .article-grid { grid-template-columns: 1fr; gap: 34px; }
  .aside { position: static; }
  .cta-inner, .footer-inner { flex-direction: column; align-items: flex-start; padding-block: 42px; }
}
@media (max-width: 480px) { .wrap, .header-inner { width: calc(100% - 28px); } .actions .button, .cta .button { width: 100%; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }

/* Dark product refresh */
:root {
  --navy: #080d18;
  --ink: #f3f6fb;
  --muted: #a1acbb;
  --paper: #090d14;
  --white: #f7f9fc;
  --blue: #6388ff;
  --yellow: #f3c95c;
  --coral: #ff725f;
  --line: #2a3341;
  --max: 1220px;
}
body { background: #090d14; color: var(--ink); }
.header { background: #0b1019; border-color: var(--line); }
.wordmark { color: #fff; }
.wordmark span { color: #81a0ff; }
.nav { color: #c0c8d4; }
.nav a:not(.button):hover { color: #fff; }
.button { border: 1px solid #f4d06f; border-radius: 6px; background: var(--yellow); color: #13110a; box-shadow: none; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(243, 201, 92, .15); }
.button.blue { border-color: #7898ff; background: var(--blue); color: #080b12; }
.button.light { border-color: #d9dee6; background: #f5f7fa; color: #0f131a; }
.hero { min-height: 650px; background-color: #080d18; background-blend-mode: luminosity; }
.hero::before { background: rgba(5, 10, 19, .82); }
.hero-copy { width: min(880px, 76%); padding: 92px 0 96px; }
.tag { color: #9bb1ff; }
h1, h2, h3 { line-height: 1.07; overflow-wrap: normal; word-break: normal; text-wrap: balance; }
h1 { max-width: 940px; font-size: 70px; }
h2 { font-size: 50px; }
h3 { font-size: 23px; line-height: 1.2; }
.hero p { max-width: 700px; color: #c2cada; }
.actions small { color: #99a7bb; }
.quick { background: #111725; color: var(--ink); border-block: 1px solid var(--line); }
.quick-item, .quick-title { border-color: var(--line); }
.quick-item b { color: #f1ca67; }
.quick-item span { color: #d9dfe8; }
.section, .section.white, .section.navy { background: #0b1018; color: var(--ink); }
.section.navy { background: #070b12; }
.head-grid p, .navy .head-grid p, .article p, .article li, .faq p { color: var(--muted); }
.capability { border-color: var(--line); background: #121824; color: var(--ink); }
.capability-label { color: #89a4ff; }
.capability p { color: var(--muted); }
.report-list { border-color: #303a4b; }
.report-list li { border-color: #303a4b; color: #c8d0dc; }
.report-list b { color: #f0cb6e; }
.route { border-color: var(--line); background: #121824; color: var(--ink); }
.route:hover { border-color: #668cff; }
.route p { color: var(--muted); }
.route span { color: #8fa8ff; }
.cta { background: #211316; color: var(--ink); border-block: 1px solid #5c2e35; }
.page-hero { background: #0e1420; color: var(--ink); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 940px; }
.page-hero p, .crumbs { color: var(--muted); }
.crumbs a { color: #f0ca68; }
.aside { border-color: #6d8fff; }
.aside a, .faq, .faq article { border-color: var(--line); }
.footer { background: #04070c; color: #8f9bad; border-top: 1px solid #1d2430; }
.menu summary { border-color: #465166; color: #fff; }
.menu nav { background: #131a27; border-color: #344054; box-shadow: 0 16px 34px rgba(0,0,0,.38); }

@media (max-width: 820px) {
  .hero { min-height: 650px; background-position: 64% center; }
  .hero::before { background: rgba(5, 10, 19, .82); }
  .hero-copy { width: 100%; padding: 190px 0 56px; }
  h1 { max-width: 740px; font-size: 52px; }
  h2 { font-size: 42px; }
  .quick-item, .quick-title { border-color: var(--line); }
}
@media (max-width: 480px) {
  h1 { font-size: 41px; line-height: 1.09; }
  h2 { font-size: 34px; }
  .hero { min-height: 620px; }
  .hero-copy { padding-top: 170px; }
  .hero p, .page-hero p { font-size: 18px; }
}
