:root {
  --navy: #0e1b27;
  --blue: #1061a5;
  --gold: #d7a624;
  --teal: #073b54;
  --aqua: #eaf3f6;
  --white: #ffffff;
  --ink: #17232e;
  --muted: #566471;
  --line: #dce5eb;
  --max: 1180px;
  --shadow: 0 22px 60px rgba(14, 27, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--gold); color: var(--navy); padding: .7rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #f4ca52; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.7rem); max-width: 12ch; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); max-width: 15ch; }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead { color: #dbe6ed; font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 46rem; }
.section-intro { margin-top: 1.2rem; max-width: 45rem; color: var(--muted); font-size: 1.08rem; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .5rem; padding: .78rem 1.1rem; border: 2px solid transparent; border-radius: .35rem; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #efc44a; }
.btn-secondary { border-color: #7792a6; color: var(--white); }
.btn-secondary:hover { border-color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.text-link { color: var(--blue); font-weight: 800; text-underline-offset: .22em; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { width: 290px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.45rem; }
.nav-links a { text-decoration: none; color: #253542; font-size: .94rem; font-weight: 700; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--blue); }
.menu-button { display: none; border: 1px solid var(--line); background: white; color: var(--navy); border-radius: .35rem; padding: .65rem .8rem; font-weight: 800; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); padding: clamp(5rem, 10vw, 8.6rem) 0 6.2rem; }
.hero::after { content: ""; position: absolute; width: 35rem; height: 35rem; right: -12rem; top: -13rem; border: 5rem solid rgba(16,97,165,.42); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 5rem; align-items: end; }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--gold); }
.hero-copy .lead { margin-top: 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-proof { border-left: 1px solid #526779; padding-left: 2rem; }
.hero-proof strong { display: block; color: var(--white); font-size: 1.3rem; margin-bottom: .5rem; }
.hero-proof p { color: #b9c9d4; }

.trust-strip { background: var(--blue); color: white; }
.trust-grid { min-height: 104px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.trust-item { padding: 1rem 2rem; border-left: 1px solid rgba(255,255,255,.35); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { color: #dceaf5; font-size: .9rem; }

.section { padding: clamp(4.8rem, 9vw, 8rem) 0; }
.section-soft { background: #f5f8fa; }
.section-dark { background: var(--navy); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-intro { color: #bdcbd5; }
.problem-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
.signal-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.signal { background: white; padding: 1.45rem 1.5rem; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; }
.signal b { color: var(--gold); font-size: 1.3rem; }
.signal p { color: var(--muted); }

.offer-card { margin-top: 3rem; display: grid; grid-template-columns: 1.05fr .95fr; background: white; color: var(--ink); box-shadow: var(--shadow); }
.offer-main { padding: clamp(2rem, 5vw, 4rem); }
.offer-side { padding: clamp(2rem, 5vw, 4rem); background: var(--blue); color: white; }
.offer-side h3 { color: white; }
.offer-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.offer-list li { position: relative; padding-left: 1.6rem; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: .62rem; width: .6rem; height: .6rem; background: var(--gold); border-radius: 50%; }
.pilot-specs { margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.pilot-specs div { border-top: 1px solid rgba(255,255,255,.35); padding-top: .9rem; }
.pilot-specs strong { display: block; color: #f4ca52; font-size: 1.45rem; }
.pilot-specs span { color: #e1ebf2; font-size: .9rem; }

.pathway-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.pathway-card { position: relative; border: 1px solid var(--line); padding: 2rem; min-height: 290px; background: white; }
.pathway-card .number { display: inline-grid; place-items: center; width: 2.7rem; height: 2.7rem; margin-bottom: 2rem; border-radius: 50%; background: var(--navy); color: white; font-weight: 900; }
.pathway-card:nth-child(2) .number { background: var(--blue); }
.pathway-card:nth-child(3) .number { background: var(--gold); color: var(--navy); }
.pathway-card p { margin-top: 1rem; color: var(--muted); }

.principles { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #38505f; border: 1px solid #38505f; margin-top: 3rem; }
.principle { background: var(--navy); padding: 2rem; }
.principle span { color: var(--gold); font-weight: 900; }
.principle h3 { margin-top: 1rem; }
.principle p { margin-top: .8rem; color: #bfcdd6; }

.founder-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; align-items: center; }
.portrait-wrap { position: relative; }
.portrait-wrap::before { content: ""; position: absolute; inset: -1.2rem 2rem 2rem -1.2rem; background: var(--gold); z-index: 0; }
.portrait-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 30%; box-shadow: var(--shadow); }
.founder-copy blockquote { margin: 2rem 0; padding-left: 1.4rem; border-left: 4px solid var(--gold); color: var(--navy); font-size: 1.3rem; font-weight: 750; line-height: 1.4; }
.founder-copy p + p { margin-top: 1rem; }

.specialties-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
.specialty { border-top: 4px solid var(--blue); background: white; padding: 1.5rem; }
.specialty:nth-child(3n+2) { border-top-color: var(--gold); }
.specialty:nth-child(3n) { border-top-color: var(--navy); }
.specialty p { margin-top: .7rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }
.contact-details { margin-top: 2rem; display: grid; gap: .8rem; }
.contact-details a { color: var(--blue); font-weight: 800; }
.form { display: grid; gap: 1rem; background: white; color: var(--ink); padding: clamp(1.5rem,4vw,3rem); box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 800; font-size: .92rem; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #aebcc6; border-radius: .25rem; padding: .85rem; color: var(--navy); background: white; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--muted); font-size: .85rem; }

.legal-hero { background: var(--navy); color: white; padding: 4rem 0; }
.legal-hero h1 { color: white; font-size: clamp(2.5rem,5vw,4.5rem); }
.legal { padding: 4rem 0 6rem; max-width: 850px; }
.legal h2 { font-size: 1.65rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.15rem; margin-top: 2rem; }
.legal p, .legal ul { color: #3f4f5b; }
.legal p { margin-top: .9rem; }
.legal li + li { margin-top: .5rem; }

.site-footer { background: #08131c; color: #c3d0d9; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-brand { color: white; font-size: 1.25rem; font-weight: 850; }
.footer-grid h3 { color: white; font-size: 1rem; }
.footer-links { display: grid; gap: .55rem; margin-top: 1rem; }
.footer-links a { color: #c3d0d9; text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: underline; }
.copyright { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #263743; font-size: .84rem; color: #899ba8; }

@media (max-width: 900px) {
  .nav-wrap { min-height: 74px; }
  .brand img { width: 230px; }
  .menu-button { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 74px; padding: 1.2rem; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .btn { text-align: center; }
  .hero-grid, .problem-grid, .offer-card, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-proof { border-left: 0; border-top: 1px solid #526779; padding: 2rem 0 0; }
  .trust-grid { grid-template-columns: 1fr; padding: 1rem 0; }
  .trust-item, .trust-item:first-child { border: 0; border-top: 1px solid rgba(255,255,255,.25); padding: .8rem 0; }
  .trust-item:first-child { border-top: 0; }
  .pathway-grid, .specialties-grid { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 1.5rem), var(--max)); }
  .brand img { width: 195px; }
  .hero { padding-top: 4rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
  .pilot-specs, .pathway-grid, .specialties-grid, .principles, .footer-grid { grid-template-columns: 1fr; }
  .offer-main, .offer-side { padding: 1.5rem; }
  .portrait-wrap::before { inset: -.7rem 1rem 1rem -.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}
