:root {
  --navy: #0b2545;
  --navy-2: #153b63;
  --ink: #183047;
  --slate: #587086;
  --blue: #147db3;
  --cyan: #10b8c7;
  --teal: #00aeb7;
  --gold: #f2bd3d;
  --mist: #eff7fa;
  --sky: #e2f3f7;
  --paper: #ffffff;
  --line: #c8dce6;
  --success: #1a746e;
  --shadow: 0 22px 60px rgba(12, 43, 73, 0.14);
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 252, 0.94);
  border-bottom: 1px solid rgba(11, 37, 69, 0.1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 184px; height: auto; display: block; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--navy);
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 10px;
  color: #344f68;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--navy); background: var(--sky); }

.nav-links .nav-cta { background: var(--navy); color: white; margin-left: 6px; }
.nav-links .nav-cta:hover { background: var(--blue); color: white; }

.shell { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 89% 18%, rgba(16, 184, 199, 0.22), transparent 26%),
    radial-gradient(circle at 12% 87%, rgba(242, 189, 61, 0.15), transparent 25%),
    linear-gradient(135deg, #f6fbfd 0%, #ebf6f8 52%, #f8fbfc 100%);
}

.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--navy); line-height: 1.12; letter-spacing: -0.025em; }
h1 { margin: 0 0 22px; font-size: clamp(3.15rem, 6.5vw, 6.5rem); font-weight: 820; max-width: 880px; }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4.2vw, 3.75rem); font-weight: 800; }
h3 { margin: 0 0 10px; font-size: 1.25rem; }

.hero-copy > p:not(.eyebrow) { margin: 0; max-width: 690px; font-size: clamp(1.08rem, 1.8vw, 1.32rem); color: #405c74; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; }
.button.primary:hover { background: var(--blue); border-color: var(--blue); }
.button.secondary { background: white; color: var(--navy); }
.button.secondary:hover { background: var(--sky); }
.button.ghost { border-color: transparent; padding-left: 5px; padding-right: 5px; color: var(--blue); }

.micro-note { margin-top: 18px; color: var(--slate); font-size: 0.9rem; }

.document-stack { position: relative; min-height: 525px; }
.doc-card {
  position: absolute;
  width: 86%;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 37, 69, .12);
  overflow: hidden;
}
.doc-card.back { right: 0; top: 8px; transform: rotate(4deg); }
.doc-card.front { left: 0; bottom: 0; transform: rotate(-2deg); }
.doc-bar { height: 13px; background: linear-gradient(90deg, var(--teal), var(--blue)); }
.doc-inner { padding: 24px 24px 26px; }
.doc-kicker { font-size: 0.7rem; color: var(--blue); font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.doc-title { margin: 4px 0 4px; color: var(--navy); font-weight: 850; font-size: 1.38rem; }
.doc-meta { margin: 0 0 18px; color: var(--slate); font-size: .78rem; }
.doc-section { margin-top: 15px; padding-top: 12px; border-top: 7px solid #e2eef3; }
.doc-section strong { font-size: .86rem; color: var(--navy); }
.career-row { display: grid; grid-template-columns: 1.4fr auto; gap: 8px; align-items: center; padding: 9px 0; border-bottom: 1px solid #e6eef2; font-size: .76rem; }
.tag { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: var(--sky); color: var(--blue); font-size: .62rem; font-weight: 850; }
.tag.gold { background: #fff2c9; color: #795600; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 12px; }
.mini-box { min-height: 58px; border-radius: 9px; background: #eef5f8; padding: 9px; font-size: .7rem; color: #4d6579; }
.mini-box b { display: block; color: var(--navy); }

.section { padding: 86px 0; }
.section.compact { padding: 64px 0; }
.section.tint { background: var(--mist); }
.section.navy { background: var(--navy); color: #dfeaf1; }
.section.navy h2, .section.navy h3 { color: white; }
.section.navy .eyebrow { color: #5edbe1; }

.section-head { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 52px; align-items: end; margin-bottom: 40px; }
.section-head > p { margin: 0; color: var(--slate); font-size: 1.08rem; max-width: 680px; }
.section.navy .section-head > p { color: #bfd0dc; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(12,43,73,.05);
}
.card p { color: var(--slate); margin: 0; }
.card .number { display: inline-block; margin-bottom: 28px; color: var(--blue); font-weight: 900; font-size: .82rem; letter-spacing: .08em; }
.card.dark { background: #123455; border-color: rgba(255,255,255,.12); color: #dfeaf1; box-shadow: none; }
.card.dark h3 { color: white; }
.card.dark p { color: #bfd0dc; }

.key-card { position: relative; overflow: hidden; min-height: 215px; }
.key-card::after { content: ""; position: absolute; width: 86px; height: 86px; right: -24px; bottom: -28px; border-radius: 50%; background: var(--accent, var(--cyan)); opacity: .18; }
.key-card .key-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--accent, var(--blue)); font-weight: 900; margin-bottom: 28px; }

.durable-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
  border: 1px solid #b9dce5;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #e9f7f8);
  box-shadow: 0 8px 24px rgba(12,43,73,.05);
}
.durable-panel h3 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.durable-panel p:not(.eyebrow) { margin: 0; color: var(--slate); }
.skill-pills { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.skill-pills span { display: flex; align-items: center; min-height: 46px; padding: 10px 13px; border: 1px solid #b9dce5; border-radius: 12px; background: white; color: var(--navy); font-size: .9rem; font-weight: 780; }
.skill-pills.compact { margin: 12px 0 4px; gap: 7px; }
.skill-pills.compact span { min-height: 38px; padding: 8px 10px; font-size: .76rem; }

.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.journey-step { position: relative; padding: 26px 22px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.journey-step:not(:last-child)::after { content: "→"; position: absolute; right: -13px; top: 31px; z-index: 2; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; }
.journey-step .step-label { color: var(--blue); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.journey-step p { margin: 8px 0 0; color: var(--slate); font-size: .93rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.feature .check { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #d8f5f3; color: var(--success); font-weight: 900; }
.feature p { margin: 2px 0 0; color: var(--slate); }

.quote-panel { padding: 40px; border-radius: 24px; background: var(--navy); color: white; }
.quote-panel blockquote { margin: 0; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.35; font-weight: 680; letter-spacing: -.015em; }
.quote-panel p { color: #bfd0dc; }

.context-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 37, 69, .14);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(12, 43, 73, .14);
}
.context-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.context-photo figcaption {
  margin: 0;
  padding: 8px 12px 9px;
  color: var(--slate);
  background: rgba(255,255,255,.96);
  font-size: .75rem;
  line-height: 1.35;
}
.context-photo figcaption a { text-underline-offset: 2px; }
.section.navy .context-photo { border-color: rgba(255,255,255,.16); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.photo-intro { align-items: center; }
.photo-intro > div > p:not(.eyebrow) { margin: 0; color: var(--slate); }
.section.navy .photo-intro > div > p:not(.eyebrow) { color: #bfd0dc; }
.supporting-cards { margin-top: 28px; }
.supporting-cards .card { padding: 23px; }
.supporting-cards .card h3 { font-size: 1.08rem; }
.supporting-cards .card p { font-size: .9rem; }

.page-hero { padding: 78px 0 62px; background: linear-gradient(135deg, #eef8fa, #f9fbfc 63%); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.7rem, 5.5vw, 5.1rem); max-width: 900px; }
.page-hero .lede { max-width: 800px; margin: 0; color: #49657b; font-size: 1.18rem; }
.crumb { display: inline-flex; margin-bottom: 20px; color: var(--blue); text-decoration: none; font-weight: 780; font-size: .9rem; }

.process-list { display: grid; gap: 18px; }
.process-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; padding: 30px 0; border-top: 1px solid var(--line); }
.process-item:first-child { border-top: 0; }
.process-number { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: var(--navy); color: white; font-size: 1.4rem; font-weight: 850; }
.process-item p { margin: 8px 0 0; color: var(--slate); max-width: 770px; }

.flow-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.flow-strip .flow-item { padding: 22px; border-left: 4px solid var(--teal); background: white; border-radius: 4px 16px 16px 4px; }
.flow-strip small { display: block; color: var(--blue); font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.flow-strip p { margin: 8px 0 0; color: var(--slate); }

.sample-plan { background: white; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.sample-plan .sample-head { padding: 26px; background: linear-gradient(90deg, var(--navy), var(--navy-2)); color: white; }
.sample-plan .sample-head strong { font-size: 1.35rem; }
.sample-plan .sample-body { padding: 26px; }
.sample-plan .sample-band { padding: 11px 14px; background: #e8f1f5; color: var(--navy); font-weight: 850; }
.sample-plan .sample-table { display: grid; margin: 10px 0 22px; }
.sample-plan .sample-row { display: grid; grid-template-columns: 1.35fr .7fr; gap: 12px; padding: 10px 4px; border-bottom: 1px solid #e5eef2; font-size: .88rem; }
.sample-plan .sample-row span:last-child { color: var(--blue); font-weight: 750; }
.privacy-note { margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #fff8df; color: #6d560e; font-size: .88rem; }

.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.metric strong { display: block; color: var(--navy); font-size: 1.8rem; }
.metric span { color: var(--slate); font-size: .9rem; }

.pilot-frame { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; }
.pilot-sidebar { padding: 30px; border-radius: 22px; background: var(--navy); color: #d9e7ef; }
.pilot-sidebar h3 { color: white; }
.pilot-sidebar ul { padding-left: 20px; }
.pilot-sidebar a { color: #67e2e6; }
.pilot-detail { display: grid; gap: 22px; }
.pilot-phase { padding: 24px 0; border-top: 1px solid var(--line); }
.pilot-phase:first-child { border-top: 0; padding-top: 0; }
.pilot-phase p { color: var(--slate); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; color: var(--navy); font: inherit; font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.faq-question span:last-child { color: var(--blue); font-size: 1.45rem; transition: transform .2s; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 48px 22px 0; color: var(--slate); }
.faq-answer p { margin: 0; }
.faq-item.open .faq-answer { display: block; }

.cta-band { padding: 64px 0; background: linear-gradient(120deg, var(--teal), var(--blue)); color: white; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cta-band h2 { margin: 0 0 10px; color: white; font-size: clamp(2rem, 4vw, 3.3rem); }
.cta-band p { margin: 0; color: #e6fbff; max-width: 720px; }
.cta-band .button { border-color: white; background: white; color: var(--navy); }

.site-footer { padding: 50px 0 28px; background: #071c33; color: #aabfce; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: 176px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 440px; font-size: .92rem; }
.footer-links h3 { color: white; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin: 8px 0; color: #c9d8e1; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 72px; padding: 12px; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split, .pilot-frame, .durable-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .document-stack { max-width: 660px; margin: 0 auto; width: 100%; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-step:nth-child(2)::after { display: none; }
}

@media (max-width: 760px) {
  .nav-wrap, .shell { padding-left: 18px; padding-right: 18px; }
  .brand img { width: 160px; }
  .hero { padding: 62px 0 54px; }
  .hero-grid { gap: 36px; }
  .document-stack { min-height: 455px; }
  .doc-card { width: 91%; }
  .doc-inner { padding: 18px; }
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .card-grid, .card-grid.two, .card-grid.four, .journey, .flow-strip, .metric-row, .footer-grid, .skill-pills { grid-template-columns: 1fr; }
  .journey-step::after { display: none !important; }
  .process-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-number { width: 50px; height: 50px; border-radius: 14px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
