:root {
  --ink: #15212a;
  --muted: #5e6870;
  --line: #d9dfe3;
  --paper: #ffffff;
  --paper-soft: #f4f1ec;
  --blue: #124f78;
  --blue-deep: #0b3655;
  --blue-pale: #dfeaf1;
  --rose: #9f3f5c;
  --rose-pale: #eadde1;
  --sand: #b68d55;
  --sand-pale: #efe6d6;
  --max: 1180px;
  --shadow: 0 18px 45px rgba(17, 42, 59, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.search-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 16px; top: 12px; transform: translateY(-160%); z-index: 1000; background: #fff; color: var(--blue-deep); padding: 10px 14px; border: 2px solid var(--blue); font-weight: 700; }
.skip-link:focus { transform: none; }

.utility-bar { background: var(--blue-deep); color: #fff; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 12px; }
.utility-inner p { margin: 0; letter-spacing: .02em; }
.utility-inner a { color: #fff; text-underline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; fill: none; stroke: var(--blue); stroke-width: 2.1; }
.brand-mark circle { fill: var(--blue); stroke: none; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 22px; letter-spacing: .08em; color: var(--blue-deep); }
.brand-copy small { margin-top: 5px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; color: var(--muted); }
.desktop-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.desktop-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--rose); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; background: var(--rose); color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; transition: background .2s ease; }
.header-cta:hover { background: #7e2f48; }
.icon-button, .menu-button, .search-close { border: 0; background: transparent; cursor: pointer; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; }
.icon-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px 8px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 4px 0; transition: .2s ease; }
.menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { border-top: 1px solid var(--line); background: #fff; }
.mobile-nav .wrap { padding-block: 10px 18px; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }

.hero { position: relative; overflow: hidden; background: linear-gradient(90deg, #fff 0 66%, var(--blue-pale) 66%); }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; right: -320px; top: -250px; border: 90px solid rgba(18,79,120,.08); border-radius: 50%; }
.hero-grid { position: relative; min-height: 610px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .65fr); align-items: center; gap: 80px; padding-block: 78px 92px; }
.section-kicker { margin: 0 0 18px; color: var(--rose); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.section-kicker.light { color: #d9b8c3; }
.hero h1 { max-width: 820px; margin: 0; color: var(--blue-deep); font-size: clamp(42px, 5.3vw, 75px); line-height: 1.01; letter-spacing: -.045em; font-weight: 700; }
.hero-intro { max-width: 760px; margin: 30px 0 0; font-size: 19px; line-height: 1.62; color: #37434b; }
.hero-links { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; text-decoration: none; font-weight: 700; font-size: 14px; }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-deep); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--blue-deep); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span { font-size: 18px; }
.hero-panel { position: relative; background: var(--blue); color: #fff; padding: 34px 32px 30px; box-shadow: var(--shadow); }
.hero-panel::after { content: ""; position: absolute; width: 54px; height: 54px; right: 0; bottom: 0; background: var(--rose); clip-path: polygon(100% 0,100% 100%,0 100%); }
.panel-label { display: inline-block; padding-bottom: 8px; border-bottom: 2px solid rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 800; }
.panel-lead { font-size: 20px; line-height: 1.4; margin: 28px 0 24px; font-weight: 700; }
.facts { margin: 0; }
.facts div { display: grid; grid-template-columns: 95px 1fr; gap: 14px; border-top: 1px solid rgba(255,255,255,.22); padding: 15px 0; }
.facts dt { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.65); }
.facts dd { margin: 0; font-size: 14px; }
.hero-panel > a { display: inline-block; margin-top: 22px; color: #fff; font-weight: 700; font-size: 13px; text-underline-offset: 4px; }

/* New application shell */
.test-banner { min-height: 32px; display:flex; align-items:center; justify-content:center; gap:22px; padding:6px 20px; color:#d8e5ff; background:#07152a; font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.test-banner span:first-child { color:#80aefc; font-weight:800; }
.app-header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,.96); border-bottom:1px solid #dce4ef; backdrop-filter:blur(16px); }
.shell { width:min(1180px, calc(100% - 40px)); margin-inline:auto; }
.header-row { min-height:82px; display:flex; align-items:center; gap:30px; }
.wordmark { display:inline-flex; align-items:center; gap:11px; color:#0b1f3a; text-decoration:none; min-width:240px; }
.wordmark strong { display:block; font-size:21px; letter-spacing:.12em; line-height:1; }
.wordmark small { display:block; max-width:190px; margin-top:6px; color:#64748b; font-size:10px; letter-spacing:.05em; line-height:1.2; }
.logo-orbit { width:39px; height:39px; display:grid; place-items:center; border:2px solid #0b5bd3; border-radius:50%; color:#0b5bd3; font-weight:900; font-size:20px; box-shadow:8px 0 #86b5ff, -5px 4px #e91e63; }
.main-nav { display:flex; align-items:center; gap:21px; margin-left:auto; }
.main-nav a,.quiet-link { color:#263853; text-decoration:none; font-size:13px; font-weight:700; }
.main-nav a { padding:30px 0 27px; border-bottom:3px solid transparent; }
.main-nav a:hover,.main-nav a.active { color:#0b5bd3; border-color:#0b5bd3; }
.header-tools { display:flex; align-items:center; gap:16px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:45px; padding:0 17px; border:0; border-radius:3px; background:#0b5bd3; color:#fff; text-decoration:none; font-size:13px; font-weight:800; }
.button.small { min-height:38px; padding-inline:14px; }
.page-content { min-height:60vh; padding-block:55px 100px; }
.page-hero { padding:60px 0 55px; border-bottom:1px solid #dce4ef; }
.page-hero h1 { max-width:850px; margin:0; color:#0b1f3a; font-size:clamp(40px,6vw,76px); line-height:1.02; letter-spacing:-.05em; }
.page-hero .lead { max-width:700px; margin:25px 0 0; color:#52627a; font-size:20px; line-height:1.65; }
.eyebrow { margin:0 0 18px; color:#0b5bd3; font-size:11px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.content-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; padding-top:35px; }
.surface { min-height:300px; padding:32px; border:1px solid #dce4ef; background:#fff; box-shadow:0 14px 35px rgba(11,31,58,.06); }
.surface.tinted { background:#eef5ff; border-color:#c9dcfa; }
.surface h2 { margin:30px 0 15px; color:#0b1f3a; font-size:28px; letter-spacing:-.03em; }
.surface p { max-width:55ch; color:#52627a; line-height:1.75; }
.section-number { color:#0b5bd3; font-size:12px; font-weight:800; letter-spacing:.12em; }
.notice { margin-bottom:25px; padding:14px 17px; border-left:4px solid #0b5bd3; background:#eef5ff; color:#24436d; }
.app-footer { padding:55px 0 20px; background:#07152a; color:#cbd8ed; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .8fr; gap:40px; }
.footer-mark { color:#fff; }
.footer-mark small { color:#9fb2cf; }
.app-footer p { color:#9fb2cf; font-size:13px; }
.footer-grid > div > strong { display:block; margin-bottom:15px; color:#fff; }
.footer-grid a:not(.wordmark),.footer-grid span:not(.logo-orbit) { display:block; margin:9px 0; color:#cbd8ed; font-size:13px; text-decoration:none; }
.status-dot { color:#43d17a; }
.footer-bottom { margin-top:45px; padding-top:18px; border-top:1px solid rgba(255,255,255,.14); color:#8296b4; font-size:12px; }
@media (max-width: 960px) { .main-nav { display:none; } .header-tools { margin-left:auto; } .content-grid,.footer-grid { grid-template-columns:1fr; } }
@media (max-width: 560px) { .test-banner { display:block; text-align:center; } .test-banner span { display:block; } .quiet-link { display:none; } .shell { width:min(100% - 28px, 1180px); } .wordmark { min-width:0; } .wordmark small { display:none; } }
.hero-band { height: 14px; display: grid; grid-template-columns: 27% 16% 23% 11% 23%; }
.hero-band span:nth-child(1) { background: var(--blue-deep); }
.hero-band span:nth-child(2) { background: var(--rose); }
.hero-band span:nth-child(3) { background: var(--sand-pale); }
.hero-band span:nth-child(4) { background: var(--blue); }
.hero-band span:nth-child(5) { background: var(--rose-pale); }

.section { padding-block: 100px; }
.section-intro { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.section h2, .contact-section h2, .search-box h2 { margin: 0; color: var(--blue-deep); font-size: clamp(34px, 4vw, 54px); line-height: 1.05; letter-spacing: -.035em; }
.prose-large { max-width: 760px; border-left: 1px solid var(--line); padding-left: 42px; }
.prose-large p { margin: 0 0 22px; font-size: 20px; line-height: 1.65; }
.prose-large p:last-child { margin-bottom: 0; }

.actions-section { background: var(--paper-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.action-card { position: relative; min-height: 380px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(21,33,42,.12); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.action-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(26,46,59,.10); }
.action-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 9px; background: currentColor; }
.tone-blue { background: #fff; color: var(--blue); }
.tone-rose { background: var(--rose-pale); color: var(--rose); }
.tone-sand { background: var(--sand-pale); color: #82602f; }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-top svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .2s ease; }
.action-card:hover .card-top svg { transform: translateX(4px); }
.card-number { font-size: 13px; font-weight: 800; letter-spacing: .09em; }
.action-card h3 { margin: auto 0 16px; color: var(--ink); font-size: 29px; line-height: 1.08; letter-spacing: -.02em; }
.action-card p { margin: 0; color: #46515a; font-size: 15px; line-height: 1.65; }

.resource-section { background: #fff; }
.resource-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.resource-copy { position: sticky; top: 130px; align-self: start; }
.resource-copy p:last-child { max-width: 390px; font-size: 16px; color: var(--muted); }
.resource-list { border-top: 1px solid var(--ink); }
.resource-row { display: grid; grid-template-columns: 120px 1fr 34px; gap: 24px; padding: 30px 0 32px; border-bottom: 1px solid var(--line); align-items: start; }
.resource-type { margin: 4px 0 0; color: var(--rose); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.resource-row h3 { margin: 0; font-size: 24px; line-height: 1.25; color: var(--blue-deep); }
.resource-row p:not(.resource-type) { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.resource-arrow { font-size: 24px; color: var(--blue); transition: transform .2s ease; }
.resource-row:hover .resource-arrow { transform: translate(3px,-3px); }

.editorial-section { background: var(--blue-pale); }
.editorial-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; align-items: stretch; }
.editorial-main { padding: 28px 20px 28px 0; }
.editorial-main p:not(.section-kicker) { max-width: 700px; margin: 26px 0 28px; font-size: 18px; line-height: 1.7; }
.editorial-note { position: relative; background: var(--rose); color: #fff; padding: 38px 36px 40px; }
.editorial-note::before { content: ""; position: absolute; left: -16px; top: 34px; width: 32px; height: 32px; background: var(--rose); transform: rotate(45deg); }
.note-tag { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; color: rgba(255,255,255,.74); }
.editorial-note h3 { margin: 58px 0 18px; font-size: 34px; line-height: 1; }
.editorial-note p { margin: 0; font-size: 15px; line-height: 1.7; }

.faq-section { background: var(--paper-soft); }
.faq-layout { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-size: 18px; font-weight: 700; }
.faq-symbol { color: var(--rose); font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-symbol { transform: rotate(45deg); }
.faq-answer { padding: 0 54px 24px 0; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.contact-section { padding-block: 82px; color: #fff; background: var(--blue-deep); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.contact-section h2 { color: #fff; }
.contact-copy { max-width: 720px; padding-left: 42px; border-left: 1px solid rgba(255,255,255,.25); }
.contact-copy p { margin: 0 0 18px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.88); }
.contact-note { padding: 16px 18px; background: rgba(255,255,255,.08); font-size: 13px !important; }

.site-footer { background: #0a2739; color: #fff; padding-block: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 60px; align-items: start; }
.brand-footer .brand-mark { stroke: #fff; }
.brand-footer .brand-mark circle { fill: #fff; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255,255,255,.6); }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.65); font-size: 13px; }
.site-footer nav { display: grid; gap: 9px; }
.site-footer nav a { color: rgba(255,255,255,.78); font-size: 13px; text-underline-offset: 3px; }
.footer-legal { color: rgba(255,255,255,.57); font-size: 12px; }
.footer-legal p { margin: 0 0 9px; }

.search-dialog { position: fixed; inset: 0; z-index: 200; }
.search-backdrop { position: absolute; inset: 0; background: rgba(6,29,43,.72); backdrop-filter: blur(4px); }
.search-box { position: relative; width: min(calc(100% - 40px), 760px); margin: 9vh auto 0; background: #fff; padding: 36px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.search-box-head { display: flex; justify-content: space-between; gap: 25px; align-items: start; }
.search-box h2 { font-size: 34px; }
.search-close { width: 38px; height: 38px; font-size: 30px; line-height: 1; }
.search-box label { display: block; margin: 28px 0 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.search-box input { width: 100%; height: 52px; border: 1px solid #9aa7ae; padding: 0 14px; outline: 0; }
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,79,120,.13); }
.search-results { margin-top: 20px; max-height: 44vh; overflow: auto; }
.search-result { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--blue-deep); text-decoration: none; }
.search-result strong { display: block; }
.search-result span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }
.search-empty { color: var(--muted); font-size: 14px; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-actions { margin-left: auto; }
  .hero { background: linear-gradient(90deg,#fff 0 72%,var(--blue-pale) 72%); }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 42px; }
  .action-card { min-height: 410px; }
}

@media (max-width: 780px) {
  .utility-bar { display: none; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 74px; }
  .header-cta, .icon-button { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { background: #fff; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 38px; padding-block: 56px 62px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-intro { font-size: 17px; }
  .hero-links { align-items: flex-start; flex-direction: column; }
  .hero-panel { width: calc(100% - 12px); margin-left: 12px; }
  .section { padding-block: 72px; }
  .split-heading, .resource-layout, .editorial-grid, .faq-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .prose-large, .contact-copy { padding-left: 0; border-left: 0; }
  .prose-large { border-top: 1px solid var(--line); padding-top: 28px; }
  .prose-large p { font-size: 18px; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 310px; }
  .resource-copy { position: static; }
  .resource-row { grid-template-columns: 90px 1fr 26px; gap: 14px; }
  .editorial-note::before { display: none; }
  .faq-layout { gap: 28px; }
  .contact-copy { border-top: 1px solid rgba(255,255,255,.22); padding-top: 28px; }
  .footer-grid { gap: 34px; }
  .search-box { margin-top: 4vh; padding: 28px 22px; }
}

@media (max-width: 520px) {
  .brand-copy small { display: none; }
  .resource-row { grid-template-columns: 1fr 24px; }
  .resource-type { grid-column: 1 / -1; }
  .resource-row > div { grid-column: 1; }
  .resource-arrow { grid-column: 2; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
