:root {
  --navy: #0B2942;
  --deep: #071D30;
  --teal: #1D7A8C;
  --teal-light: #A6D6DC;
  --soft: #F5F7F8;
  --white: #FFFFFF;
  --ink: #172C3B;
  --muted: #5B6B77;
  --line: #DCE5E8;
  --header-height: 80px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 1rem/1.65 Manrope, Inter, Arial, sans-serif; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.container { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 2000; top: -100px; left: 20px; padding: 10px 15px; color: var(--white); background: var(--navy); }
.skip-link:focus { top: 12px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid #DCE5E8; box-shadow: 0 3px 18px rgba(11,41,66,.035); }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { flex: none; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { width: 40px; height: 40px; display: inline-grid; place-items: center; background: var(--navy); color: var(--white); font-size: .82rem; letter-spacing: -.04em; }
.brand-text { font-size: 1.04rem; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px,2vw,30px); }
.nav a { text-decoration: none; color: #32495A; font-size: .87rem; font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--teal); }
.nav-cta { flex: none; display: inline-flex; align-items: center; gap: 18px; padding: 10px 17px; border: 1px solid var(--navy); text-decoration: none; color: var(--navy); font-size: .87rem; font-weight: 800; transition: background .2s,color .2s; }
.nav-cta:hover { background: var(--navy); color: var(--white); }
.menu-toggle { display: none; border: 0; padding: 12px; margin-left: auto; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s,opacity .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.hero { position: relative; min-height: min(840px,100svh); min-height: max(740px, min(840px, 100svh)); display: flex; align-items: center; padding: calc(var(--header-height) + 75px) 0 60px; isolation: isolate; overflow: hidden; background: var(--navy); color: var(--white); }
.hero::before { position: absolute; z-index: -2; inset: 0; content: ""; background: url('assets/hero.jpg') center 55% / cover no-repeat; }
.hero::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg,rgba(5,27,45,.95) 0%,rgba(8,34,55,.87) 47%,rgba(7,33,52,.46) 100%),linear-gradient(0deg,rgba(5,27,45,.72),transparent 38%); }
.hero-content { position: relative; }
.eyebrow { display: block; margin-bottom: 19px; color: var(--teal-light); font-size: .76rem; line-height: 1.4; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow.dark { color: var(--teal); }
.hero h1 { max-width: 860px; margin: 0; font-size: clamp(3.4rem,6.5vw,6.15rem); line-height: 1.04; font-weight: 700; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #E1EDF2; font-size: clamp(1.08rem,1.5vw,1.29rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 23px; text-decoration: none; font-size: .87rem; line-height: 1.3; font-weight: 800; transition: transform .2s ease,background .2s ease,border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #155D6D; }
.btn-secondary { border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.04); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,.13); }
.hero-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); max-width: 760px; margin-top: clamp(55px,7vw,100px); border-top: 1px solid rgba(255,255,255,.42); }
.hero-stats div { padding: 22px 20px 0 0; }
.hero-stats div + div { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { font-size: .96rem; }
.hero-stats span { margin-top: 2px; color: #C1D2DB; font-size: .85rem; }
.hero-side-label { position: absolute; right: 30px; bottom: 58px; color: rgba(255,255,255,.75); font-size: .69rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.section { padding: clamp(78px,9vw,120px) 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: var(--white); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,8vw,115px); }
h2 { margin: 0; max-width: 740px; color: var(--navy); font-size: clamp(2.25rem,4vw,3.35rem); line-height: 1.14; font-weight: 700; letter-spacing: -.045em; text-wrap: balance; }
h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.2rem; line-height: 1.35; font-weight: 800; letter-spacing: -.025em; }
p { margin: 0; }
p + p { margin-top: 18px; }
.large-copy { padding-top: 6px; color: #435765; font-size: 1.17rem; line-height: 1.78; }
.section-head { max-width: 760px; margin-bottom: 49px; }
.section-head p { margin-top: 19px; color: var(--muted); font-size: 1.08rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.card { min-height: 267px; padding: 29px 28px 33px; background: var(--white); border: 1px solid var(--line); transition: border-color .2s ease,transform .2s ease; }
.card:hover { border-color: #8DBCC6; transform: translateY(-3px); }
.card-num { margin-bottom: 42px; color: var(--teal); font-size: .82rem; font-weight: 800; letter-spacing: .12em; }
.card p { color: var(--muted); font-size: .96rem; line-height: 1.65; }
.focus-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.focus-box { padding: clamp(30px,4vw,48px); border: 1px solid var(--line); background: #FAFBFC; }
.focus-box h3 { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 1.4rem; }
.accent-box { background: var(--navy); border-color: var(--navy); color: var(--white); }
.accent-box h3 { color: var(--white); border-color: rgba(255,255,255,.22); }
.check-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px 27px; list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { position: relative; padding-left: 23px; font-size: .98rem; line-height: 1.5; }
.check-list li::before { position: absolute; left: 0; content: '—'; color: var(--teal); font-weight: 800; }
.accent-box .check-list li::before { color: var(--teal-light); }
.dual { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(50px,7vw,100px); }
.dual-block + .dual-block { padding-left: clamp(35px,5vw,75px); border-left: 1px solid rgba(255,255,255,.25); }
.dual-block h2 { color: var(--white); font-size: clamp(2.15rem,3.2vw,3rem); }
.dual-block p { margin-top: 24px; color: #D1E0E7; font-size: 1.06rem; }
.dual-block .muted-light { margin-top: 27px; padding-left: 18px; color: #A6D6DC; border-left: 2px solid var(--teal-light); font-weight: 800; }
.process { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0 28px; counter-reset: steps; }
.process-step { display: flex; gap: 18px; min-height: 160px; padding: 25px 0; border-top: 1px solid #BFCFD5; }
.process-step span { flex: 0 0 40px; color: var(--teal); font-size: .84rem; line-height: 1.6; font-weight: 800; }
.process-step h3 { font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .94rem; }
.opportunity { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.opportunity-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px,7vw,105px); align-items: center; }
.opportunity-inner p { max-width: 620px; margin-top: 23px; color: var(--muted); font-size: 1.08rem; }
.opportunity-list { display: flex; flex-wrap: wrap; gap: 10px; }
.opportunity-list span { display: inline-block; padding: 9px 14px; background: var(--soft); border: 1px solid var(--line); color: #334A59; font-size: .84rem; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 35px; padding-bottom: 8px; border-bottom: 2px solid var(--teal); text-decoration: none; color: var(--navy); font-weight: 800; }
.text-link:hover { color: var(--teal); }
.contact { background: #EDF3F5; }
.contact-grid { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(50px,8vw,110px); align-items: start; }
.contact-grid > div:first-child p { max-width: 550px; margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.contact-card { padding: 35px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 50px rgba(11,41,66,.07); }
.contact-label { margin-top: 22px; color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-label:first-child { margin-top: 0; }
.contact-card > a:not(.btn), .contact-card > span { display: block; margin-top: 4px; overflow-wrap: anywhere; text-decoration: none; font-size: 1rem; font-weight: 700; }
.contact-card > a:not(.btn):hover { color: var(--teal); }
.btn.full { width: 100%; margin-top: 31px; }
.footer { padding: 52px 0; background: var(--deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { background: var(--teal); }
.footer p { margin-top: 14px; color: #B4C6CF; font-size: .83rem; line-height: 1.65; }
.legal { max-width: 680px; justify-self: end; }
.legal p:first-child { margin-top: 0; }
@media (max-width: 1080px) {
  .nav { gap: 15px; }
  .nav-wrap { gap: 17px; }
  .brand-text { font-size: .92rem; }
}
@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .container { width: min(100% - 40px,1200px); }
  .nav-wrap { position: relative; justify-content: space-between; }
  .brand-text { font-size: 1rem; }
  .menu-toggle { display: block; }
  .nav-wrap > .nav-cta { display: none; }
  .nav { position: absolute; top: 100%; left: -20px; right: -20px; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 15px 20px 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 25px rgba(11,41,66,.1); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 4px; font-size: 1rem; }
  .hero-side-label { display: none; }
  .cards-grid, .process { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .dual, .opportunity-inner, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .dual-block + .dual-block { padding: 38px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .legal { justify-self: start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 36px,1200px); }
  .nav { left: -18px; right: -18px; padding-inline: 18px; }
  .hero { min-height: 0; padding: calc(var(--header-height) + 68px) 0 35px; }
  .hero::before { background-position: 48% center; }
  .hero::after { background: linear-gradient(90deg,rgba(5,27,45,.92),rgba(7,33,52,.67)),linear-gradient(0deg,rgba(5,27,45,.75),transparent 60%); }
  .hero h1 { font-size: clamp(2.55rem,10vw,3.65rem); }
  .hero-lead { margin-top: 21px; font-size: 1.02rem; }
  .hero-actions { flex-direction: column; margin-top: 29px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 44px; }
  .hero-stats div, .hero-stats div + div { padding: 10px 0; border-left: 0; }
  .hero-stats div + div { border-top: 1px solid rgba(255,255,255,.2); }
  .hero-stats span { display: inline; margin-left: 8px; }
  .section { padding: 70px 0; }
  h2 { font-size: clamp(2rem,8vw,2.65rem); }
  .large-copy { font-size: 1.03rem; }
  .section-head { margin-bottom: 33px; }
  .cards-grid, .focus-grid, .process { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 24px; }
  .card-num { margin-bottom: 24px; }
  .focus-box { padding: 27px; }
  .check-list { grid-template-columns: 1fr; gap: 12px; }
  .process-step { min-height: 0; }
  .contact-card { padding: 26px; }
  .brand-text { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
