:root {
  --navy-950: #040a25;
  --navy-900: #07143f;
  --navy-800: #0b2365;
  --blue: #2756ff;
  --blue-bright: #4576ff;
  --yellow: #ffd727;
  --ice: #eef3ff;
  --white: #ffffff;
  --ink: #07122f;
  --muted: #65708d;
  --line: rgba(7, 18, 47, .14);
  --container: 1240px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(4, 10, 37, .95); box-shadow: 0 12px 32px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 108px; height: auto; }
.brand-separator {
  color: rgba(255,255,255,.48);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}
.brand-tagline {
  max-width: 190px;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
}
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; font-size: .88rem; font-weight: 650; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { padding: 13px 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; transition: color .2s, background .2s; }
.header-cta:hover, .header-cta:focus-visible { color: var(--navy-950); background: var(--yellow); border-color: var(--yellow); }
.menu-button { display: none; }

.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  max-height: none;
  aspect-ratio: 2048 / 602;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,10,37,.99) 0%, rgba(4,10,37,.93) 31%, rgba(4,10,37,.48) 58%, rgba(4,10,37,.22) 100%), linear-gradient(0deg, rgba(4,10,37,.85), transparent 35%); }
.hero-grid, .cta-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: calc(100% - 132px); flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 104px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 4px; background: var(--yellow); }
.eyebrow-dark { color: var(--blue); }
.hero h1, .section h2, .final-cta h2 { margin: 0; font-weight: 360; line-height: .93; letter-spacing: -.065em; }
.hero h1 { max-width: 900px; font-size: clamp(4rem, 6.5vw, 7.4rem); }
.hero h1 strong, .method h2 strong, .credibility h2 strong, .final-cta h2 strong { color: var(--yellow); font-weight: 850; }
.hero-copy { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.35vw, 1.22rem); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 56px; padding: 0 24px; border-radius: 999px; font-size: .84rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { color: var(--navy-950); background: var(--yellow); box-shadow: 0 10px 35px rgba(255,215,39,.2); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 14px 42px rgba(255,215,39,.34); }
.button-outline { color: var(--white); border: 1px solid rgba(255,255,255,.42); }
.button-outline:hover, .button-outline:focus-visible { color: var(--navy-950); background: var(--white); }
.text-link { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .85rem; font-weight: 750; }
.hero-proof { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.18); background: rgba(4,10,37,.46); backdrop-filter: blur(10px); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid p { display: flex; min-height: 132px; flex-direction: column; justify-content: center; margin: 0; padding: 22px 28px; border-left: 1px solid rgba(255,255,255,.16); }
.proof-grid p:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.proof-grid strong { color: var(--yellow); font-size: 2.1rem; line-height: 1; letter-spacing: -.04em; }
.proof-grid span { margin-top: 8px; color: rgba(255,255,255,.74); font-size: .82rem; }

.pathways { background: var(--ice); }
.split-heading { display: grid; grid-template-columns: 1.4fr .65fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .outcomes-title-row h2 { font-size: clamp(3.2rem, 5.3vw, 6rem); }
.section-heading h2 em, .outcomes h2 em { color: var(--blue); font-style: normal; font-weight: 850; }
.split-heading > p, .outcomes-title-row > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; }
.pathway-grid { display: grid; grid-template-columns: 1.08fr .96fr .96fr; gap: 14px; }
.pathway-card { display: flex; min-height: 440px; flex-direction: column; justify-content: space-between; padding: 30px; color: var(--white); background: var(--navy-900); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.pathway-card:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(7,20,63,.16); }
.pathway-featured { background: var(--blue); }
.pathway-light { color: var(--ink); background: var(--yellow); }
.card-index { margin: 0; font-size: .8rem; font-weight: 850; opacity: .7; }
.card-label { display: inline-block; margin-bottom: 14px; font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .72; }
.pathway-card h3 { margin: 0; font-size: clamp(2.3rem, 3.2vw, 3.8rem); line-height: .98; letter-spacing: -.055em; }
.pathway-card div p { max-width: 390px; margin: 18px 0 0; opacity: .77; }
.pathway-card > a { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid currentColor; font-size: .8rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }

.method { position: relative; color: var(--white); background: var(--navy-950); overflow: hidden; }
.method::before { content: "NEO"; position: absolute; right: -40px; bottom: -100px; color: rgba(255,255,255,.025); font-size: 28rem; font-weight: 950; line-height: 1; letter-spacing: -.1em; }
.method-orbit { position: absolute; top: 50%; right: -20vw; width: 55vw; aspect-ratio: 1; border: 1px solid rgba(69,118,255,.3); border-radius: 50%; box-shadow: 0 0 0 90px rgba(69,118,255,.025), 0 0 0 180px rgba(69,118,255,.02); transform: translateY(-50%); }
.method-layout { position: relative; display: grid; grid-template-columns: .9fr 1fr; gap: 120px; align-items: start; }
.method-intro { position: sticky; top: 130px; }
.method h2, .credibility h2 { font-size: clamp(3.5rem, 5.4vw, 6.2rem); }
.method-intro > p:not(.eyebrow) { max-width: 530px; margin: 30px 0 38px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.method-steps { border-top: 1px solid rgba(255,255,255,.2); }
.method-steps article { display: grid; grid-template-columns: 58px 1fr; gap: 26px; padding: 38px 0 44px; border-bottom: 1px solid rgba(255,255,255,.2); }
.method-steps article > span { display: grid; width: 44px; height: 44px; place-items: center; color: var(--yellow); border: 1px solid rgba(255,215,39,.55); border-radius: 50%; font-size: .8rem; font-weight: 800; }
.method-steps h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.03em; }
.method-steps p { max-width: 500px; margin: 12px 0 0; color: rgba(255,255,255,.62); }

.mentoring { background: var(--white); }
.mentoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.mentoring-visual { position: relative; min-height: 580px; background: var(--ice); border-radius: 28px; overflow: hidden; }
.mentoring-visual::before { content: ""; position: absolute; top: -20%; left: 16%; width: 68%; aspect-ratio: 1; background: radial-gradient(circle, rgba(39,86,255,.3), rgba(39,86,255,0) 70%); }
.mentoring-visual::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(39,86,255,.15); border-radius: 20px; }
.mentor-phone { position: absolute; z-index: 1; bottom: -8%; left: -2%; width: auto; height: 108%; max-width: none; object-fit: contain; filter: drop-shadow(0 28px 36px rgba(7,20,63,.22)); }
.mentor-card { position: absolute; z-index: 2; padding: 28px; border-radius: 20px; box-shadow: 0 24px 70px rgba(7,20,63,.16); }
.mentor-card-main { top: 78px; right: 38px; left: 38px; color: var(--white); background: var(--navy-900); }
.mentor-card-main p { margin: 18px 0 10px; color: var(--yellow); font-size: .78rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.mentor-card-main strong { display: block; max-width: 370px; font-size: 2.05rem; line-height: 1.12; letter-spacing: -.04em; }
.status-dot { display: inline-block; width: 10px; height: 10px; background: #4de091; border-radius: 50%; box-shadow: 0 0 0 7px rgba(77,224,145,.12); }
.mentor-card-small { right: 20px; bottom: 54px; width: 60%; background: var(--yellow); }
.mentor-card-small span { font-size: 3.7rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.mentor-card-small p { margin: 15px 0 0; font-weight: 700; }
.mentor-line { position: absolute; z-index: 1; bottom: 29px; left: 18%; width: 2px; height: 190px; background: var(--blue); transform: rotate(38deg); transform-origin: bottom; }
.mentoring-copy h2 { margin: 0; font-size: clamp(3.2rem, 5vw, 5.8rem); font-weight: 350; line-height: .95; letter-spacing: -.06em; }
.mentoring-copy h2 em { color: var(--blue); font-style: normal; font-weight: 850; }
.mentoring-copy > p:not(.eyebrow) { margin: 30px 0; color: var(--muted); font-size: 1.06rem; }
.mentoring-copy ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.mentoring-copy li { display: flex; align-items: center; gap: 12px; font-weight: 750; }
.mentoring-copy li span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-size: .7rem; }

.credibility { color: var(--white); background: var(--blue); }
.credibility-inner { display: grid; grid-template-columns: .65fr 1.2fr; gap: 110px; align-items: center; }
.seal { display: grid; width: min(100%, 390px); aspect-ratio: 1; place-content: center; text-align: center; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.06), 0 0 0 36px rgba(255,255,255,.035); }
.seal span, .seal small { font-size: .76rem; font-weight: 850; letter-spacing: .18em; }
.seal strong { margin: 8px 0; color: var(--yellow); font-size: clamp(4rem, 7vw, 7rem); line-height: .85; letter-spacing: -.08em; }
.credibility-copy > p:not(.eyebrow) { max-width: 720px; margin: 30px 0; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.credibility-note { display: flex; gap: 18px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.25); }
.credibility-note > span { color: var(--yellow); font-size: 1.8rem; }
.credibility-note p { margin: 0; color: var(--white) !important; }

.outcomes { background: var(--ice); }
.outcomes-title-row { display: grid; grid-template-columns: 1.3fr .6fr; gap: 80px; align-items: end; }
.outcome-list { margin-top: 70px; border-top: 1px solid var(--line); }
.outcome-list article { display: grid; grid-template-columns: 70px 1fr 1.1fr; gap: 40px; align-items: center; padding: 28px 8px; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s ease; }
.outcome-list article:hover { padding-right: 22px; padding-left: 22px; color: var(--blue); }
.outcome-list span { color: var(--blue); font-size: .75rem; font-weight: 850; }
.outcome-list h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.025em; }
.outcome-list p { margin: 0; color: var(--muted); }

.final-cta { position: relative; min-height: 610px; display: grid; place-items: center; color: var(--white); background: var(--navy-950); overflow: hidden; }
.final-cta::after { content: ""; position: absolute; right: -140px; bottom: -260px; width: 620px; aspect-ratio: 1; border: 110px solid var(--blue); border-radius: 50%; opacity: .45; }
.final-cta-inner { position: relative; z-index: 2; text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(3.7rem, 6.7vw, 7.6rem); }
.final-cta > .final-cta-inner > p:not(.eyebrow) { max-width: 620px; margin: 28px auto 36px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.button-large { min-height: 62px; padding-inline: 32px; }

.site-footer { color: rgba(255,255,255,.72); background: #020719; }
.footer-top { display: grid; grid-template-columns: .7fr 1fr auto; gap: 60px; align-items: center; padding-top: 58px; padding-bottom: 58px; }
.brand-footer { color: var(--white); }
.brand-logo-footer { width: 128px; }
.footer-top p { max-width: 420px; margin: 0; }
.back-top { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .75rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .header-inner { height: 72px; }
  .header-cta { display: none; }
  .menu-button { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; margin-left: auto; padding: 0; color: inherit; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
  .menu-button span { display: block; width: 18px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 71px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 12px 24px 24px; background: rgba(4,10,37,.98); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero { min-height: 360px; height: auto; aspect-ratio: auto; }
  .hero-image { object-position: center; opacity: 1; }
  .split-heading, .outcomes-title-row { grid-template-columns: 1fr; gap: 28px; }
  .pathway-grid { grid-template-columns: 1fr 1fr; }
  .pathway-featured { grid-column: 1 / -1; }
  .pathway-card { min-height: 390px; }
  .method-layout, .mentoring-grid, .credibility-inner { grid-template-columns: 1fr; gap: 70px; }
  .method-intro { position: relative; top: auto; }
  .method-steps { max-width: 720px; }
  .mentoring-visual { min-height: 500px; }
  .mentoring-copy { order: -1; }
  .seal { margin-inline: auto; }
}

@media (max-width: 640px) {
  .brand { gap: 0; }
  .brand-separator, .brand-tagline { display: none; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .hero { min-height: 500px; }
  .hero-image { object-position: 17% center; }
  .section-heading h2, .outcomes-title-row h2, .method h2, .credibility h2, .mentoring-copy h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-featured { grid-column: auto; }
  .pathway-card { min-height: 365px; }
  .method-layout { gap: 52px; }
  .method-steps article { grid-template-columns: 46px 1fr; gap: 16px; }
  .mentoring-visual { min-height: 460px; }
  .mentor-phone { bottom: -4%; left: -10%; height: 103%; }
  .mentor-card-main { top: 45px; right: 22px; left: 22px; }
  .mentor-card-main strong { font-size: 1.6rem; }
  .mentor-card-small { right: 10px; bottom: 38px; width: 72%; }
  .credibility-inner { gap: 72px; }
  .seal { width: 82%; }
  .outcome-list article { grid-template-columns: 42px 1fr; gap: 12px 16px; }
  .outcome-list p { grid-column: 2; }
  .final-cta { min-height: 600px; }
  .final-cta h2 { font-size: clamp(3.35rem, 15vw, 5.5rem); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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