:root {
  --navy: #051036;
  --navy-soft: #0c1945;
  --red: #e4032d;
  --coral: #ef6666;
  --blue: #4860b8;
  --pink: #eb5678;
  --rose-pale: #fbe5e8;
  --blue-pale: #e9ecf8;
  --paper: #fffdfb;
  --ink: #16182a;
  --muted: #646979;
  --line: rgba(5, 16, 54, .14);
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 26px;
  --font-sans: "Myriad Pro", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-script: "Segoe Script", "Brush Script MT", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }
.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;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px;
  background: white; color: var(--navy); transform: translateY(-160%); transition: .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20; height: 100px;
  display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { width: 210px; padding: 9px 12px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); border-radius: 14px; }
.brand img { width: 100%; height: 54px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav a { text-decoration: none; position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--red); 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; }
.nav-cta { background: var(--navy); color: white; padding: 13px 20px; border-radius: 999px; transition: .25s; }
.nav-cta:hover { background: var(--red); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

.hero {
  position: relative; min-height: 850px; padding: 175px 0 90px; overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(235,86,120,.16), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff9fa 54%, #eef1fb 100%);
}
.hero::after {
  content: ""; position: absolute; width: 430px; height: 430px; right: -220px; top: -100px;
  background: var(--red); border-radius: 50%; opacity: .96;
}
.hero-wave { position: absolute; inset: auto 0 0; width: 100%; height: 74%; fill: none; stroke: rgba(72,96,184,.13); stroke-width: 1; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow, .section-kicker { margin: 0 0 22px; color: var(--navy); text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 5px; background: var(--red); }
.hero h1 { margin: 0; max-width: 760px; color: var(--navy); font-size: clamp(54px, 6.2vw, 94px); line-height: .93; letter-spacing: -.065em; font-weight: 850; }
.hero h1 em { display: block; margin: 12px 0 0 3.5rem; color: var(--red); font-family: var(--font-script); font-size: .89em; line-height: 1; font-weight: 500; letter-spacing: -.07em; transform: rotate(-2deg); }
.hero-lead { max-width: 660px; margin: 34px 0 0; color: #44495a; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 56px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-size: 15px; font-weight: 800; text-decoration: none; transition: transform .25s, box-shadow .25s, background .25s; }
.button span { font-size: 20px; }
.button-primary { background: var(--red); color: white; box-shadow: 0 14px 30px rgba(228,3,45,.2); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(228,3,45,.28); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-size: 14px; font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.hero-stats { display: flex; gap: 0; margin: 58px 0 0; padding: 0; }
.hero-stats > div { display: grid; gap: 2px; min-width: 135px; padding: 0 24px; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border: 0; }
.hero-stats dt { color: var(--navy); font-size: 28px; line-height: 1.1; font-weight: 850; }
.hero-stats dd { margin: 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 590px; }
.portrait-frame { position: absolute; right: 25px; top: 20px; width: min(480px, 100%); }
.portrait-backdrop { position: absolute; inset: 38px -22px -22px 36px; border-radius: 47% 47% 28px 28px; background: var(--navy); transform: rotate(3deg); }
.portrait-frame img { position: relative; width: 100%; aspect-ratio: 1 / 1.09; object-fit: cover; object-position: 50% 34%; border-radius: 48% 48% 28px 28px; filter: saturate(.91) contrast(1.02); }
.portrait-caption { position: absolute; right: -25px; bottom: 22px; min-width: 265px; padding: 18px 22px; color: white; background: var(--navy); box-shadow: 0 14px 28px rgba(5,16,54,.22); }
.portrait-caption strong, .portrait-caption span { display: block; }
.portrait-caption strong { font-size: 19px; }
.portrait-caption span { color: #cbd1e7; font-size: 13px; }
.stamp { position: absolute; left: -26px; top: 82px; width: 155px; height: 155px; border-radius: 50%; background: var(--red); color: white; display: grid; place-content: center; text-align: center; transform: rotate(-10deg); box-shadow: 0 15px 34px rgba(228,3,45,.28); }
.stamp span { font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.stamp strong { font-size: 42px; line-height: .9; }
.stamp small { max-width: 108px; line-height: 1.15; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.ticker { overflow: hidden; background: var(--navy); color: white; padding: 20px 0; transform: rotate(-1.1deg) scale(1.02); position: relative; z-index: 3; }
.ticker-track { width: max-content; display: flex; gap: 34px; align-items: center; animation: ticker 28s linear infinite; font-size: 25px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.ticker-track i { color: var(--pink); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-intro { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 80px; align-items: end; margin-bottom: 78px; }
.section-intro .section-kicker { grid-column: 1 / -1; }
.section-intro h2, .expertise-heading h2, .method h2, .partnership h2 { margin: 0; color: var(--navy); font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -.055em; }
.section-intro h2 span { color: var(--blue); }
.section-intro > p:last-child { margin: 0; color: var(--muted); font-size: 18px; }
.audience-list { border-top: 1px solid var(--navy); }
.audience-row { display: grid; grid-template-columns: 70px 1fr 1.25fr auto; gap: 34px; align-items: center; min-height: 155px; padding: 28px 8px; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.audience-row:hover { background: #f7f5f5; padding-inline: 22px; }
.row-number { align-self: start; padding-top: 7px; color: var(--red); font-weight: 800; font-size: 13px; }
.row-title { display: flex; align-items: center; gap: 18px; }
.row-title h3 { margin: 0; color: var(--navy); font-size: 33px; letter-spacing: -.04em; }
.mini-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--navy); border-radius: 50%; transition: .25s; }
.audience-row:hover .mini-icon { background: var(--red); color: white; border-color: var(--red); transform: rotate(45deg); }
.audience-row p { margin: 0; color: var(--muted); }
.row-tag { white-space: nowrap; padding: 8px 14px; border-radius: 999px; background: var(--blue-pale); color: var(--blue); font-size: 12px; font-weight: 800; }

.expertise { background: var(--navy); color: white; position: relative; overflow: hidden; }
.expertise::before { content: "OH!"; position: absolute; right: -30px; top: -120px; color: rgba(255,255,255,.025); font-size: 360px; font-weight: 900; letter-spacing: -.1em; }
.section-kicker.light { color: #aab4dc; }
.expertise-heading { position: relative; margin-bottom: 65px; }
.expertise-heading h2 { color: white; }
.expertise-heading em { color: var(--pink); font-family: var(--font-script); font-weight: 500; }
.expertise-grid { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.service-card { position: relative; min-height: 270px; padding: 34px; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.service-card-main { grid-row: 1 / 3; min-height: 560px; background: white; color: var(--navy); padding: 50px; }
.service-card-pink { background: var(--pink); color: var(--navy); }
.service-card-blue { background: var(--blue); color: white; }
.service-index { position: absolute; right: 30px; top: 26px; font-size: 13px; font-weight: 800; opacity: .65; }
.service-label { margin: 0 0 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 850; }
.service-card h3 { max-width: 580px; margin: 0 0 20px; font-size: clamp(28px, 3.5vw, 51px); line-height: 1.02; letter-spacing: -.05em; }
.service-card p:last-child { max-width: 560px; margin: 0; opacity: .75; }
.level-pill { align-self: flex-start; padding: 16px 22px; background: var(--red); color: white; border-radius: 999px; font-size: 23px; font-weight: 850; }
.card-arrow { position: absolute; right: 28px; bottom: 24px; font-size: 36px; }

.exams { position: relative; background: var(--coral); color: var(--navy); overflow: hidden; }
.exam-wave { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(255,255,255,.28); stroke-width: 2; }
.exams-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.exam-title h2 { margin: 0; font-size: clamp(52px, 6vw, 90px); line-height: .88; letter-spacing: -.065em; color: var(--navy); text-transform: uppercase; }
.exam-title h2 span { display: inline-block; margin-top: 14px; padding: 8px 14px; background: var(--navy); color: white; }
.exam-title blockquote { margin: 46px 0 0; max-width: 540px; color: white; font-family: var(--font-script); font-size: 29px; line-height: 1.45; transform: rotate(-2deg); }
.exam-content { padding: 48px; background: rgba(255,255,255,.94); border-radius: var(--radius); box-shadow: 0 25px 55px rgba(5,16,54,.16); }
.exam-lead { margin: 0 0 30px; font-size: 19px; }
.check-list { list-style: none; margin: 0 0 34px; padding: 0; }
.check-list li { display: flex; align-items: center; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 750; }
.check-list li span { color: var(--red); font-size: 11px; font-weight: 900; }
.button-white { background: var(--navy); color: white; }
.button-white:hover { background: var(--red); transform: translateY(-2px); }

.method-head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; }
.method-head > p { margin: 0 0 5px; color: var(--muted); }
.steps { list-style: none; margin: 80px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--navy); }
.steps li { position: relative; min-height: 300px; padding: 38px 42px 24px 0; border-right: 1px solid var(--line); }
.steps li + li { padding-left: 42px; }
.steps li:last-child { border-right: 0; }
.steps span { display: inline-grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--rose-pale); color: var(--red); font-size: 12px; font-weight: 900; }
.steps h3 { margin: 56px 0 14px; color: var(--navy); font-size: 34px; letter-spacing: -.04em; }
.steps p { max-width: 280px; margin: 0; color: var(--muted); }

.partnership { background: #f0f2fa; }
.partnership-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.partnership-copy > p:not(.section-kicker) { max-width: 670px; margin: 30px 0; color: var(--muted); font-size: 18px; }
.text-link.dark { margin-top: 12px; }
.partnership-panel { padding: 46px; background: var(--navy); color: white; border-radius: var(--radius); transform: rotate(1.5deg); box-shadow: 18px 18px 0 var(--pink); }
.partnership-panel > p { margin: 0 0 26px; color: #aab4dc; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 800; }
.partnership-panel ul { list-style: none; padding: 0; margin: 0; }
.partnership-panel li { padding: 14px 0 14px 30px; border-bottom: 1px solid rgba(255,255,255,.14); position: relative; }
.partnership-panel li::before { content: "→"; position: absolute; left: 0; color: var(--pink); }
.partner-signature { margin-top: 34px; color: var(--pink); font-family: var(--font-script); font-size: 24px; transform: rotate(-2deg); }

.insights { background: #fff; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { min-height: 280px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); text-decoration: none; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.insight-card:hover { transform: translateY(-7px); border-color: var(--pink); box-shadow: 0 18px 40px rgba(5,16,54,.1); }
.insight-card > span { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.insight-card h3 { margin: 42px 0 28px; font-size: 30px; line-height: 1.08; letter-spacing: -.04em; }
.insight-card strong { margin-top: auto; font-size: 14px; }
.insights-all { margin-top: 32px; }

.contact { position: relative; padding: 120px 0 70px; background: var(--navy); color: white; text-align: center; overflow: hidden; }
.contact::before, .contact::after { content: ""; position: absolute; border-radius: 50%; }
.contact::before { width: 440px; height: 440px; left: -280px; top: -150px; border: 85px solid var(--blue); opacity: .3; }
.contact::after { width: 420px; height: 420px; right: -240px; bottom: -260px; background: var(--red); opacity: .9; }
.contact-inner { position: relative; z-index: 2; }
.contact-logo { width: 170px; height: 62px; object-fit: contain; margin: 0 auto 48px; padding: 8px; border-radius: 10px; background: white; }
.contact h2 { margin: 0; font-size: clamp(54px, 7vw, 96px); line-height: .95; letter-spacing: -.065em; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 910px; margin: 60px auto 0; }
.contact-link { padding: 24px 28px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; text-align: left; text-decoration: none; transition: .25s; }
.contact-link:hover { color: var(--navy); background: white; transform: translateY(-3px); }
.contact-link small, .contact-link span { display: block; }
.contact-link small { margin-bottom: 6px; color: #aab4dc; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 800; }
.contact-link:hover small { color: var(--blue); }
.contact-link span { font-size: 19px; font-weight: 800; overflow-wrap: anywhere; }
.contact-meta { display: flex; justify-content: center; gap: 32px; margin-top: 55px; color: #aab4dc; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.site-footer { padding: 24px 0; background: #020923; color: #8d96ba; font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.site-footer p { margin: 0; }
.site-footer a { color: white; text-decoration: none; }
.scroll-progress { position: fixed; left: 0; bottom: 0; z-index: 50; width: 0; height: 4px; background: var(--red); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .main-nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 30px; }
  .hero-visual { min-height: 530px; }
  .stamp { left: -10px; }
  .section-intro, .method-head { grid-template-columns: 1fr; gap: 28px; }
  .audience-row { grid-template-columns: 50px .8fr 1.2fr; }
  .row-tag { grid-column: 2 / -1; justify-self: start; }
  .exams-grid, .partnership-grid { grid-template-columns: 1fr; }
  .partnership-panel { max-width: 680px; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 34px, 1180px); --radius: 20px; }
  .section { padding: 82px 0; }
  .site-header { height: 84px; }
  .brand { width: 160px; }
  .brand img { height: 42px; }
  .menu-toggle { display: block; position: relative; z-index: 4; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; z-index: 3; padding: 120px 26px 40px; background: var(--paper);
    display: flex; flex-direction: column; align-items: stretch; gap: 0; opacity: 0; visibility: hidden;
    transform: translateX(100%); pointer-events: none; transition: transform .35s ease, opacity .2s ease, visibility .35s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }
  .main-nav a:not(.nav-cta) { display: block; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 27px; }
  .nav-cta { margin-top: 28px; text-align: center; }
  .hero { padding: 125px 0 70px; }
  .hero::after { width: 220px; height: 220px; right: -140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(51px, 15vw, 70px); }
  .hero h1 em { margin-left: 1rem; }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats > div { min-width: 0; padding: 0 10px; }
  .hero-stats dt { font-size: 22px; }
  .hero-stats dd { font-size: 9px; }
  .hero-visual { min-height: 480px; margin-top: 25px; }
  .portrait-frame { right: 10px; width: calc(100% - 25px); }
  .portrait-caption { right: -10px; min-width: 220px; }
  .stamp { left: -6px; top: 30px; width: 125px; height: 125px; }
  .stamp strong { font-size: 34px; }
  .ticker-track { font-size: 19px; }
  .section-intro { margin-bottom: 52px; }
  .audience-row { grid-template-columns: 42px 1fr; gap: 14px; padding: 28px 0; }
  .row-number { grid-row: 1 / 4; }
  .row-title, .audience-row p, .row-tag { grid-column: 2; }
  .row-title h3 { font-size: 29px; }
  .audience-row:hover { padding-inline: 10px; }
  .expertise-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-card-main { grid-row: auto; min-height: 460px; padding: 34px; }
  .service-card { min-height: 290px; }
  .exams-grid { gap: 46px; }
  .exam-title h2 { font-size: 55px; }
  .exam-title blockquote { font-size: 24px; }
  .exam-content { padding: 30px 24px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: auto; padding: 34px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps h3 { margin-top: 28px; }
  .partnership-grid { gap: 48px; }
  .partnership-panel { padding: 32px 26px; box-shadow: 10px 10px 0 var(--pink); }
  .insight-grid { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-meta { flex-direction: column; gap: 9px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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