:root {
  --navy: #20344b;
  --navy-2: #18283a;
  --gold: #fcb614;
  --cream: #f7f2e8;
  --white: #ffffff;
  --muted: #627086;
  --line: rgba(32, 52, 75, 0.14);
  --shadow: 0 24px 70px rgba(24, 40, 58, 0.16);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 96px 0; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--gold); color: var(--navy); padding: 10px 14px; border-radius: 999px;
}
.skip-link:focus { top: 16px; }
.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: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 232, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(32, 52, 75, 0.08); }
.nav-wrap { display: flex; align-items: center; min-height: 86px; gap: 28px; }
.brand { width: 168px; flex: 0 0 auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 0.95rem; }
.site-nav a { opacity: .82; transition: opacity 160ms ease, color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { opacity: 1; color: var(--navy-2); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  background: var(--gold); color: var(--navy); border: 2px solid var(--gold);
  font-weight: 800; cursor: pointer; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 10px 28px rgba(252, 182, 20, 0.28);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(252, 182, 20, 0.36); }
.btn-ghost { background: transparent; border-color: rgba(32,52,75,.18); box-shadow: none; }

.hero { padding-top: 86px; position: relative; overflow: hidden; }
.hero:before {
  content: ""; position: absolute; inset: 0 0 auto auto; width: 42vw; height: 42vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(252,182,20,.26), transparent 64%); transform: translate(20%, -28%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr); gap: 52px; align-items: center; position: relative; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .9; letter-spacing: -.07em; margin-bottom: 28px; max-width: 850px; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1; letter-spacing: -.045em; margin-bottom: 22px; }
h3 { font-size: 1.28rem; line-height: 1.18; letter-spacing: -.02em; margin-bottom: 10px; }
.lead { font-size: clamp(1.12rem, 2.2vw, 1.45rem); color: var(--muted); max-width: 720px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 660px; margin: 0; }
.trust-row div { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.5); }
.trust-row dt { font-weight: 900; }
.trust-row dd { margin: 2px 0 0; color: var(--muted); font-size: .94rem; }

.hero-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card:after { content: ""; position: absolute; right: -90px; bottom: -100px; width: 260px; height: 260px; border-radius: 999px; background: rgba(252,182,20,.17); }
.card-topline { width: 80px; height: 10px; background: var(--gold); border-radius: 999px; margin-bottom: 42px; }
.card-label { color: rgba(255,255,255,.7); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; }
.hero-card h2 { font-size: clamp(2rem, 3vw, 3.1rem); color: #fff; }
.progress-list { display: grid; gap: 18px; position: relative; z-index: 1; }
.progress-list div { border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; }
.progress-list span { color: var(--gold); font-weight: 900; display: block; margin-bottom: 4px; }
.progress-list strong { display: block; font-size: 1.08rem; margin-bottom: 4px; }
.progress-list p { margin: 0; color: rgba(255,255,255,.72); }

.logo-band { background: var(--navy); color: #fff; padding: 22px 0; text-align: center; }
.logo-band p { margin: 0; font-weight: 800; letter-spacing: -.01em; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; gap: 22px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.service-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); padding: 30px; border-radius: var(--radius); min-height: 260px; box-shadow: 0 16px 40px rgba(32,52,75,.07); }
.service-card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--navy); color: var(--gold); font-size: 1.45rem; font-weight: 900; margin-bottom: 34px; }

.work-section { background: rgba(255,255,255,.38); }
.work-grid, .split-grid, .results-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.work-grid p, .split-grid p, .results .section-heading p { color: var(--muted); font-size: 1.08rem; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 26px; min-height: 175px; box-shadow: 0 16px 40px rgba(32,52,75,.07); }
.capability strong { display: block; font-size: 1.35rem; margin-bottom: 12px; letter-spacing: -.02em; }
.capability span { color: var(--muted); }

.split-section { background: rgba(255,255,255,.64); }
.timeline { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px; }
.timeline-item { padding: 24px; border-radius: 22px; }
.timeline-item + .timeline-item { border-top: 1px solid var(--line); }
.timeline-item span { color: var(--gold); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; font-size: .72rem; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric { background: var(--navy); color: #fff; border-radius: 24px; padding: 28px; min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; }
.metric strong { color: var(--gold); font-size: 2.1rem; line-height: 1; }
.metric span { font-weight: 900; font-size: 1.15rem; }
.statement-section { padding-top: 0; }
.quote { margin: 0; background: var(--gold); color: var(--navy); border-radius: var(--radius); padding: clamp(32px, 5vw, 64px); box-shadow: var(--shadow); }
.quote blockquote { margin: 0 0 22px; font-size: clamp(1.65rem, 3.6vw, 3.4rem); line-height: 1.06; font-weight: 900; letter-spacing: -.045em; }
.quote figcaption { font-weight: 800; opacity: .78; }

.site-footer { padding: 36px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-brand { width: 130px; }
.site-footer p { margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: 20px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 74px; }
  .brand { width: 142px; }
  .nav-toggle { display: grid; gap: 5px; margin-left: auto; background: transparent; border: 0; padding: 10px; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 999px; }
  .site-nav { position: fixed; top: 74px; left: 14px; right: 14px; margin: 0; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .hero-grid, .work-grid, .split-grid, .results-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 54px; }
  .hero-card { padding: 26px; }
  .three-col { grid-template-columns: 1fr; }
  .trust-row, .metric-grid, .capability-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .hero-actions .btn { width: 100%; }
  .quote { border-radius: 22px; }
}
