:root {
  --ink: #142236;
  --ink-soft: #52647a;
  --paper: #f3f6f9;
  --white: #ffffff;
  --line: #d7e0e8;
  --teal: #4d78a3;
  --teal-dark: #2d557d;
  --gold: #93a8bb;
  --navy: #1b2f46;
  --shadow: 0 24px 60px rgba(20, 34, 54, .11);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 1000; background: var(--white); padding: 10px 14px; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,34,54,.10);
}
.nav-wrap { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: 92px; height: auto; }
.site-header .brand-logo { mix-blend-mode: multiply; }
.site-footer .brand-logo { width: 104px; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: .93rem; font-weight: 650; }
.nav a:hover, .nav a:focus { color: var(--teal-dark); }
.nav .nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 10px 16px; }
.nav .nav-cta:hover { background: var(--navy); color: var(--white); }
.menu-btn { display: none; border: 0; background: transparent; font: inherit; font-weight: 700; padding: 8px; }

.hero { padding: 92px 0 74px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 18px; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-dark); font-weight: 800; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); letter-spacing: -.055em; max-width: 900px; margin-bottom: 26px; }
h2 { font-size: clamp(2.25rem, 4vw, 4.1rem); letter-spacing: -.045em; margin-bottom: 22px; }
h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.lede { font-size: clamp(1.1rem, 2vw, 1.38rem); color: var(--ink-soft); max-width: 720px; margin: 0 0 34px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 750; border-radius: 999px; padding: 13px 20px; border: 1px solid var(--ink); transition: .2s ease; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary:hover { background: var(--white); transform: translateY(-1px); }

.hero-art { min-height: 520px; position: relative; }
.orbit { position: absolute; border: 1px solid rgba(77,120,163,.34); border-radius: 50%; }
.orbit.one { width: 420px; height: 420px; right: 0; top: 20px; }
.orbit.two { width: 305px; height: 305px; right: 58px; top: 78px; border-color: rgba(147,168,187,.62); }
.axis { position: absolute; width: 1px; height: 485px; background: linear-gradient(var(--gold), var(--teal)); right: 210px; top: -14px; transform: rotate(31deg); }
.insight-card { position: absolute; background: rgba(255,255,255,.96); border: 1px solid rgba(20,34,54,.12); border-radius: 18px; box-shadow: var(--shadow); padding: 20px; width: 235px; }
.insight-card strong { display: block; font-size: 2rem; line-height: 1; margin-bottom: 10px; letter-spacing: -.04em; }
.insight-card span { color: var(--ink-soft); font-size: .92rem; }
.card-a { right: 225px; top: 70px; }
.card-b { right: 0; top: 235px; }
.card-c { right: 170px; top: 360px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.trust-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; align-items: center; }
.trust-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.trust-item { font-weight: 750; font-size: .95rem; }
.trust-item span { display: block; color: var(--ink-soft); font-weight: 500; font-size: .82rem; margin-top: 2px; }

.section { padding: 105px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .eyebrow { color: #b9d1e6; }
.section-dark .muted { color: #cbd7e2; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; margin-bottom: 55px; }
.section-head p { margin-top: 5px; }
.muted { color: var(--ink-soft); }

.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 260px; display: flex; flex-direction: column; }
.service .num { color: var(--teal-dark); font-size: .75rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 48px; }
.service p { color: var(--ink-soft); margin: auto 0 0; }
.service:hover { box-shadow: 0 18px 42px rgba(11,21,32,.07); transform: translateY(-2px); transition: .2s ease; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.approach-card { border-top: 1px solid rgba(255,255,255,.30); padding-top: 24px; }
.approach-card .step { font-size: .78rem; letter-spacing: .14em; color: #b9d1e6; font-weight: 800; text-transform: uppercase; }
.approach-card h3 { margin: 35px 0 12px; font-size: 1.7rem; }
.approach-card p { color: #cbd7e2; margin-bottom: 0; }

.callout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.quote-panel .big { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 25px; }
.quote-panel .source { color: var(--ink-soft); }
.checks { display: grid; gap: 18px; margin: 32px 0 0; }
.check { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.check i { width: 24px; height: 24px; border-radius: 50%; background: #dce7f1; color: var(--teal-dark); display: grid; place-items: center; font-style: normal; font-size: .8rem; font-weight: 900; }

.bio { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.bio-card { border-radius: var(--radius); background: linear-gradient(145deg, #1b2f46, #4d78a3); color: white; padding: 38px; min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; }
.bio-monogram { width: 88px; height: 88px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; letter-spacing: .06em; }
.bio-card small { color: #dce6ef; }
.bio-copy .kicker { font-size: 1.05rem; font-weight: 750; margin-bottom: 16px; }
.bio-copy p { color: var(--ink-soft); }
.bio-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.bio-fact { border-top: 1px solid var(--line); padding-top: 14px; font-size: .92rem; }
.bio-fact strong { display: block; }

.cta-band { padding: 75px 0; }
.cta-box { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 48px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; box-shadow: var(--shadow); }
.cta-box h2 { margin-bottom: 0; }
.cta-box .actions { justify-content: flex-end; }

.page-hero { padding: 86px 0 55px; }
.page-hero h1 { max-width: 970px; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.rich p { color: var(--ink-soft); font-size: 1.04rem; }
.rich h3 { margin-top: 40px; }
.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.capability { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.capability p { margin-bottom: 0; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.contact-meta { border-top: 1px solid var(--line); margin-top: 32px; }
.contact-meta div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-meta strong { display: block; font-size: .84rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-meta span { color: var(--ink-soft); }
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 700; }
input, textarea { width: 100%; border: 1px solid #cbd6e0; border-radius: 10px; padding: 13px 14px; font: inherit; background: #f8fafc; }
input:focus, textarea:focus { outline: 2px solid rgba(77,120,163,.24); border-color: var(--teal); }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; }
.form-note { color: var(--ink-soft); font-size: .82rem; margin: 12px 0 0; }

.site-footer { background: #162638; color: white; padding: 58px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 36px; }
.site-footer .brand { color: white; margin-bottom: 18px; background: #fff; border-radius: 12px; padding: 8px 10px; width: fit-content; }

.site-footer p, .site-footer a { color: #c7d2dd; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-links { display: grid; gap: 9px; }
.footer-title { color: white; font-weight: 750; margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; font-size: .82rem; color: #aebdcb; }

.notice { width: min(760px, calc(100% - 40px)); margin: 80px auto; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.notice.success { border-top: 4px solid var(--teal); }
.notice.error { border-top: 4px solid #a64a4a; }

@media (max-width: 920px) {
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 104px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 22px; flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .hero { padding-top: 70px; }
  .hero-grid, .section-head, .callout, .bio, .split, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; margin-top: -25px; }
  .section-head { gap: 15px; }
  .services, .approach-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .capabilities { grid-template-columns: 1fr 1fr; }
  .cta-box .actions { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .nav-wrap { min-height: 88px; }
  .nav { top: 88px; }
  .brand-logo { width: 78px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  h1 { font-size: 3rem; }
  .hero { padding: 54px 0 50px; }
  .hero-art { min-height: 350px; }
  .orbit.one { width: 315px; height: 315px; right: -70px; }
  .orbit.two { width: 230px; height: 230px; right: -25px; }
  .axis { right: 100px; height: 360px; }
  .insight-card { width: 190px; padding: 15px; }
  .card-a { right: 92px; top: 45px; }
  .card-b { right: -10px; top: 175px; }
  .card-c { right: 75px; top: 274px; }
  .insight-card strong { font-size: 1.45rem; }
  .trust-grid, .capabilities, .bio-facts, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .service { min-height: 230px; }
  .cta-box { padding: 30px 24px; }
  .form-card { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; }
}

/* Private equity + assessment product extensions */
.nav { gap: 20px; }
.nav a { font-size: .9rem; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.62); border-radius: 999px; padding: 7px 11px; font-size: .78rem; font-weight: 750; color: var(--ink-soft); }

.pe-feature { background: linear-gradient(135deg, #e8eef5 0%, #f3f6f9 58%, #e2e8ee 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pe-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.lifecycle-mini { background: rgba(255,255,255,.76); border: 1px solid rgba(20,34,54,.10); border-radius: 24px; padding: 10px 28px; box-shadow: var(--shadow); }
.lifecycle-mini div { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.lifecycle-mini div:last-child { border-bottom: 0; }
.lifecycle-mini span { grid-row: 1 / 3; font-size: .78rem; letter-spacing: .12em; font-weight: 850; color: var(--teal-dark); }
.lifecycle-mini strong { font-size: 1.12rem; }
.lifecycle-mini small { color: var(--ink-soft); }
.pe-hero { background: radial-gradient(circle at 82% 20%, rgba(77,120,163,.16), transparent 34%), radial-gradient(circle at 70% 80%, rgba(147,168,187,.20), transparent 30%); }
.pe-phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.phase-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px; min-height: 470px; display: flex; flex-direction: column; }
.phase-card > span, .audience-card > span, .recommendation-grid article > span { font-size: .72rem; letter-spacing: .13em; font-weight: 850; color: var(--teal-dark); }
.phase-card h3 { font-size: 1.5rem; margin: 35px 0 14px; }
.phase-card p, .phase-card li { color: var(--ink-soft); }
.phase-card ul { margin: auto 0 0; padding: 22px 0 0 18px; border-top: 1px solid var(--line); }
.phase-card li { margin: 7px 0; font-size: .9rem; }
.value-lever-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.value-lever-grid article { background: var(--navy); padding: 28px; min-height: 210px; }
.value-lever-grid strong { font-size: 1.25rem; }
.value-lever-grid p { color: #cbd7e2; margin-bottom: 0; }
.product-panel h3 { font-size: 2rem; margin: 18px 0 12px; }
.product-panel p { color: var(--ink-soft); }
.product-badge { display: inline-flex; border: 1px solid rgba(77,120,163,.34); background: #e5edf5; color: var(--teal-dark); border-radius: 999px; padding: 6px 10px; font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.product-stat { display: grid; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin: 22px 0; }
.product-stat strong { font-size: 1.8rem; line-height: 1; }
.product-stat span { color: var(--ink-soft); margin-top: 5px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.audience-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; min-height: 240px; }
.audience-card h3 { margin: 38px 0 12px; }
.audience-card p { color: var(--ink-soft); margin-bottom: 0; }

.assessment-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.assessment-preview { display: grid; grid-template-columns: 48px 1fr auto; gap: 15px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 17px; text-decoration: none; transition: .2s ease; }
.assessment-preview:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(11,21,32,.07); }
.assessment-preview strong, .assessment-preview small { display: block; }
.assessment-preview small { color: var(--ink-soft); margin-top: 2px; }
.assessment-preview b { font-size: 1.25rem; }
.assessment-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: var(--white); font-weight: 850; letter-spacing: .04em; }
.product-teaser { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; padding: 38px; border: 1px solid var(--line); background: var(--white); border-radius: 22px; }
.product-teaser .actions { justify-content: flex-end; }

.assessment-hero { background: radial-gradient(circle at 80% 20%, rgba(77,120,163,.15), transparent 35%); }
.assessment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.assessment-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; min-height: 330px; display: flex; flex-direction: column; }
.assessment-card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 38px; }
.assessment-card p:not(.eyebrow) { color: var(--ink-soft); }
.text-link { border: 0; padding: 0; margin-top: auto; background: transparent; font: inherit; color: var(--teal-dark); font-weight: 800; cursor: pointer; text-align: left; }
.text-link:hover { text-decoration: underline; }
.assessment-lab { overflow: hidden; }
.assessment-shell { background: #f3f6f9; color: var(--ink); border-radius: 26px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.20); }
.assessment-selector { display: flex; gap: 7px; padding: 14px; background: #e4eaf0; overflow-x: auto; }
.assessment-tab { flex: 1; min-width: 170px; border: 1px solid transparent; border-radius: 999px; padding: 10px 14px; background: transparent; color: var(--ink-soft); font: inherit; font-size: .84rem; font-weight: 750; cursor: pointer; }
.assessment-tab.active { background: var(--white); border-color: var(--line); color: var(--ink); box-shadow: 0 3px 10px rgba(11,21,32,.06); }
.assessment-stage { padding: 34px; }
.assessment-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: end; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.assessment-intro h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 10px; }
.assessment-intro p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 0; max-width: 760px; }
.assessment-progress-wrap { min-width: 230px; }
.assessment-progress-copy { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.assessment-progress-copy strong { font-size: 1.15rem; }
.assessment-progress-copy span { color: var(--ink-soft); font-size: .8rem; }
.progress-track { height: 7px; border-radius: 999px; background: #dbe3ea; overflow: hidden; }
.progress-fill { width: 0; height: 100%; background: var(--teal); border-radius: inherit; transition: width .2s ease; }
.question-list { display: grid; gap: 12px; padding: 26px 0; }
.question-card { margin: 0; min-width: 0; border: 1px solid var(--line); background: var(--white); border-radius: 16px; padding: 22px; }
.question-card legend { float: left; width: 100%; font-weight: 760; line-height: 1.35; padding: 0; margin: 0 0 10px; }
.question-card legend + * { clear: both; }
.question-number { display: inline-block; color: var(--teal-dark); font-size: .72rem; letter-spacing: .1em; width: 38px; vertical-align: 2px; }
.question-dimension { color: var(--ink-soft); font-size: .78rem; margin: 3px 0 14px 38px; }
.question-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin-left: 38px; }
.scale-option { border: 1px solid #d3dce5; background: #f8fafc; border-radius: 11px; padding: 10px 6px; min-height: 65px; font: inherit; cursor: pointer; color: var(--ink); }
.scale-option strong, .scale-option span { display: block; }
.scale-option strong { font-size: 1.05rem; }
.scale-option span { color: var(--ink-soft); font-size: .7rem; margin-top: 2px; }
.scale-option:hover { border-color: var(--teal); }
.scale-option.selected { background: #dce8f3; border-color: var(--teal); color: var(--teal-dark); }
.scale-option.selected span { color: var(--teal-dark); }
.assessment-submit { display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid var(--line); padding-top: 24px; }
.assessment-submit strong, .assessment-submit span { display: block; }
.assessment-submit span { color: var(--ink-soft); font-size: .82rem; }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.assessment-results { margin-top: 34px; border-top: 4px solid var(--teal); background: var(--white); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); }
.results-head { display: grid; grid-template-columns: 175px 1fr; gap: 34px; align-items: center; }
.score-ring { width: 165px; height: 165px; border-radius: 50%; background: conic-gradient(var(--teal) 0 var(--score-angle), #dde4eb var(--score-angle) 360deg); display: grid; place-items: center; }
.score-ring::before { content: ''; width: 125px; height: 125px; position: absolute; border-radius: 50%; background: var(--white); }
.score-ring { position: relative; }
.score-ring div { position: relative; z-index: 1; text-align: center; }
.score-ring strong { font-size: 2.5rem; line-height: 1; letter-spacing: -.05em; }
.score-ring span { display: block; color: var(--ink-soft); font-size: .75rem; }
.results-head h3 { font-size: 2.2rem; margin-bottom: 8px; }
.results-head p { color: var(--ink-soft); margin: 0; }
.result-disclaimer { margin-top: 12px !important; font-size: .8rem; }
.dimension-results, .recommendations { margin-top: 32px; padding-top: 27px; border-top: 1px solid var(--line); }
.dimension-results h4, .recommendations h4 { margin: 0 0 18px; font-size: 1.05rem; }
.dimension-row { margin: 14px 0; }
.dimension-row > div:first-child { display: flex; justify-content: space-between; gap: 14px; font-size: .88rem; }
.dimension-row span { color: var(--ink-soft); }
.dimension-track { height: 8px; border-radius: 999px; background: #dde4eb; overflow: hidden; margin-top: 7px; }
.dimension-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal-dark), var(--teal)); }
.recommendation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.recommendation-grid article { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: #f8fafc; }
.recommendation-grid article strong { display: block; margin: 13px 0 8px; }
.recommendation-grid article p { color: var(--ink-soft); margin: 0; font-size: .88rem; }
.results-actions { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.results-actions > div:first-child { max-width: 510px; }
.results-actions strong, .results-actions span { display: block; }
.results-actions span { color: var(--ink-soft); font-size: .82rem; margin-top: 3px; }

.product-path { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 55px; }
.product-path article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 25px 20px 25px 0; border-right: 1px solid var(--line); }
.product-path article:not(:first-child) { padding-left: 20px; }
.product-path article:last-child { border-right: 0; }
.path-num { color: var(--teal-dark); font-size: .75rem; font-weight: 850; }
.product-path strong { font-size: 1.03rem; }
.product-path p { color: var(--ink-soft); font-size: .86rem; margin: 6px 0 0; }
.full-product-card { border: 1px solid var(--line); border-radius: 26px; padding: 42px; background: linear-gradient(135deg, #fff 0%, #edf2f7 100%); box-shadow: var(--shadow); }
.locked-badge { background: #1b2f46; border-color: #1b2f46; color: #fff; }
.full-product-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0; }
.full-product-features > div { background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.full-product-features strong, .full-product-features small { display: block; }
.full-product-features small { color: var(--ink-soft); margin-top: 4px; }
.lock-icon { display: inline-grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; margin-bottom: 14px; color: var(--teal-dark); }

select { width: 100%; border: 1px solid #cbd6e0; border-radius: 10px; padding: 13px 14px; font: inherit; background: #f8fafc; color: var(--ink); }
select:focus { outline: 2px solid rgba(77,120,163,.24); border-color: var(--teal); }

@media (max-width: 1080px) {
  .pe-phase-grid, .assessment-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-card { min-height: 390px; }
  .full-product-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .pe-feature-grid, .product-teaser, .assessment-intro { grid-template-columns: 1fr; }
  .value-lever-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .recommendation-grid { grid-template-columns: 1fr; }
  .product-teaser .actions { justify-content: flex-start; }
  .assessment-stage { padding: 24px; }
  .product-path { grid-template-columns: 1fr 1fr; }
  .product-path article:nth-child(2) { border-right: 0; }
  .product-path article { border-bottom: 1px solid var(--line); }
  .results-actions { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .assessment-preview-grid, .pe-phase-grid, .assessment-grid, .value-lever-grid, .full-product-features, .product-path { grid-template-columns: 1fr; }
  .phase-card { min-height: auto; }
  .product-path article, .product-path article:not(:first-child) { padding: 20px 0; border-right: 0; }
  .product-path article:last-child { border-bottom: 0; }
  .full-product-card { padding: 28px 22px; }
  .assessment-selector { padding: 10px; }
  .assessment-stage { padding: 17px; }
  .question-card { padding: 17px 13px; }
  .question-number { display: block; width: auto; margin-bottom: 5px; }
  .question-dimension { margin-left: 0; }
  .question-scale { margin-left: 0; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 4px; }
  .scale-option { min-height: 58px; padding: 8px 2px; }
  .scale-option span { font-size: .58rem; letter-spacing: -.02em; }
  .assessment-submit { align-items: flex-start; flex-direction: column; }
  .results-head { grid-template-columns: 1fr; }
  .score-ring { width: 140px; height: 140px; }
  .score-ring::before { width: 106px; height: 106px; }
  .assessment-results { padding: 23px 16px; }
  .results-actions .actions { width: 100%; }
  .results-actions .btn { width: 100%; }
}

@media print {
  .site-header, .site-footer, .assessment-selector, .assessment-intro, .question-list, .assessment-submit, .assessment-lab > .container > .section-head, .results-actions, .cta-band { display: none !important; }
  body, .section-dark, .assessment-lab { background: #fff !important; color: #000 !important; }
  .assessment-lab { padding: 0 !important; }
  .assessment-shell, .assessment-results { box-shadow: none !important; border: 0 !important; }
  .assessment-stage { padding: 0 !important; }
  .assessment-results { margin: 0 !important; }
}

/* LinkedIn + selected organization experience */
.nav-social {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 34px;
  background: var(--white);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav-social img { width: 17px; height: 17px; display: block; }
.nav-social:hover, .nav-social:focus { transform: translateY(-1px); border-color: #8aaac8; box-shadow: 0 7px 18px rgba(20,34,54,.10); }
.footer-social { display: inline-flex; align-items: center; gap: 8px; }
.footer-social img { width: 19px; height: 19px; border-radius: 3px; }


.experience-section {
  background: linear-gradient(180deg, #e9eef4 0%, #f3f6f9 100%);
  border-bottom: 1px solid var(--line);
}
.experience-head { margin-bottom: 32px; }
.experience-head h2 { max-width: 760px; font-size: clamp(2rem, 3.4vw, 3.35rem); }
.company-logo-banner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #cad5df;
  border-radius: 20px;
  background: #cad5df;
  box-shadow: 0 18px 46px rgba(20,34,54,.065);
}
.company-logo-tile {
  min-height: 112px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  color: #263d54;
  transition: background .2s ease, transform .2s ease;
}
.company-logo-tile:hover { background: #f8fafc; }
.company-wordmark { display: inline-flex; align-items: center; justify-content: center; line-height: 1; white-space: nowrap; color: #263d54; filter: grayscale(1); }
.company-bcg { font-size: 2.1rem; font-weight: 900; letter-spacing: -.08em; }
.company-aon { font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; font-weight: 700; letter-spacing: -.07em; }
.company-gt { font-size: 1rem; font-weight: 760; letter-spacing: -.03em; gap: 7px; }
.company-gt i { width: 23px; height: 23px; border-radius: 50%; border: 5px solid currentColor; border-right-color: transparent; transform: rotate(-25deg); opacity: .85; }
.company-crosslake { font-size: .96rem; font-weight: 850; letter-spacing: .12em; }
.company-cloudeq { font-size: 1.32rem; font-weight: 700; letter-spacing: -.05em; gap: 1px; }
.company-cloudeq > span { font-weight: 900; }
.company-cloudeq i { position: relative; width: 25px; height: 14px; border: 2px solid currentColor; border-radius: 12px; border-top-color: transparent; margin-right: 6px; opacity: .75; }
.company-cloudeq i::before { content: ''; position: absolute; width: 11px; height: 11px; border: 2px solid currentColor; border-bottom-color: transparent; border-left-color: transparent; border-radius: 50%; left: 5px; top: -8px; transform: rotate(-18deg); }
.company-abm { font-size: 2rem; font-weight: 900; font-style: italic; letter-spacing: -.08em; }
.company-southwest { gap: 7px; font-size: 1.2rem; font-weight: 800; letter-spacing: -.04em; }
.company-southwest i { width: 20px; height: 20px; border-radius: 50% 50% 50% 10%; background: currentColor; transform: rotate(-45deg); opacity: .82; }
.company-res { gap: 7px; font-size: 1.95rem; font-weight: 850; letter-spacing: -.08em; }
.company-res i { width: 22px; height: 22px; border: 4px solid currentColor; border-radius: 50%; opacity: .75; }
.company-focus { font-size: 1.02rem; font-weight: 850; letter-spacing: .04em; }
.company-focus b { font-weight: 500; margin-left: 4px; }
.company-wabash { font-size: 1.3rem; font-weight: 900; letter-spacing: .08em; }
.company-sltc { font-size: 1.85rem; font-weight: 900; letter-spacing: .08em; }
.company-kumgo { font-size: 1.18rem; font-weight: 900; font-style: italic; letter-spacing: -.04em; }
.company-kumgo b { font-style: normal; font-weight: 500; margin: 0 3px; }
.company-viant { flex-direction: column; gap: 4px; font-size: 1.55rem; font-weight: 900; letter-spacing: .03em; }
.company-viant > span { font-size: .52rem; font-weight: 750; letter-spacing: .13em; }
.experience-note { color: #718195; font-size: .74rem; margin: 18px 0 0; }

@media (max-width: 1180px) {
  .company-logo-banner { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .company-logo-banner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .company-logo-tile { min-height: 96px; }
}
@media (max-width: 520px) {
  .company-logo-banner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-logo-tile { min-height: 88px; padding: 14px 10px; }
  .company-wordmark { transform: scale(.9); }
}


/* ============================================================
   JANUS INSIGHTS BRAND REFRESH V2
   White canvas + stronger navy / steel blue / slate system
   ============================================================ */
:root {
  --ink: #17283b;
  --ink-soft: #5e7084;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #d7e1ea;
  --teal: #416f9c;
  --teal-dark: #2c557d;
  --gold: #8ea4b9;
  --navy: #18324c;
  --blue-soft: #edf3f8;
  --blue-soft-2: #f5f8fb;
  --slate: #6d7f92;
  --shadow: 0 20px 52px rgba(24, 50, 76, .10);
}

html, body { background: #ffffff; }
body { color: var(--ink); }

/* Smaller, cleaner masthead so the logo no longer dominates */
.site-header {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #dce4ec;
  box-shadow: 0 3px 14px rgba(24,50,76,.035);
}
.nav-wrap { min-height: 82px; }
.brand-logo,
.site-header .brand-logo {
  width: 68px;
  height: auto;
  mix-blend-mode: normal;
  background: #fff;
}
.site-footer .brand-logo {
  width: 84px;
  mix-blend-mode: normal;
  background: #fff;
}
.nav { gap: 24px; }
.nav a:hover, .nav a:focus { color: #416f9c; }
.nav .nav-cta {
  border-color: #416f9c;
  color: #234663;
  background: #fff;
}
.nav .nav-cta:hover {
  background: #315f8b;
  border-color: #315f8b;
  color: #fff;
}

/* White is the default canvas */
.hero, .section, .page-hero, .cta-band { background-color: #fff; }
h1, h2, h3 { color: var(--navy); }
.eyebrow { color: #3b6b98; }
.lede, .muted, .rich p { color: #5e7084; }

/* Stronger visible blue/gray system */
.trust-strip {
  background: #f2f6fa;
  border-color: #d8e2eb;
}
.trust-item { color: #264967; }
.trust-item span, .trust-grid p { color: #66798c; }

.experience-section {
  background: #edf3f8;
  border-top: 1px solid #d9e3ec;
  border-bottom: 1px solid #d1dde8;
}
.company-logo-banner {
  border-color: #c7d5e2;
  background: #c7d5e2;
  box-shadow: 0 16px 42px rgba(35,70,99,.08);
}
.company-logo-tile {
  background: #ffffff;
  color: #355674;
}
.company-logo-tile:hover { background: #f7fafc; }
.company-wordmark { color: #355674; }
.experience-note { color: #718397; }

/* Cards now read visibly blue-gray rather than cream */
.service,
.capability,
.phase-card,
.audience-card,
.assessment-preview,
.assessment-card,
.quote-panel,
.form-card,
.product-teaser,
.question-card,
.assessment-results {
  background: #ffffff;
  border-color: #d6e1ea;
  box-shadow: 0 10px 28px rgba(31,62,90,.055);
}
.service,
.capability,
.phase-card,
.audience-card,
.assessment-card {
  border-top: 3px solid #86a7c5;
}
.service .num,
.phase-card > span,
.audience-card > span,
.path-num,
.question-number { color: #356892; }

/* PE feature is intentionally one of the strongest blue-gray moments */
.pe-feature {
  background: linear-gradient(120deg, #e9f0f7 0%, #f5f8fb 48%, #dfe9f3 100%);
  border-top: 1px solid #d2dee8;
  border-bottom: 1px solid #ccd9e4;
}
.lifecycle-mini {
  background: rgba(255,255,255,.92);
  border-color: #cfdae5;
  box-shadow: 0 18px 44px rgba(31,62,90,.09);
}
.lifecycle-mini span { color: #356892; }

/* Assessment area */
#assessments { background: #f7f9fc; }
.assessment-icon {
  background: #e2ecf5;
  color: #2f5f89;
  border: 1px solid #c9d9e7;
}
.assessment-preview:hover {
  border-color: #9db8d0;
  box-shadow: 0 16px 34px rgba(31,62,90,.10);
}
.assessment-lab { background: #eef3f8; }
.assessment-shell { background: #f7f9fc; }
.assessment-selector { background: #e9f0f6; }
.progress-track, .dimension-track { background: #dbe4ec; }
.progress-fill { background: #416f9c; }
.scale-option { background: #f7f9fc; border-color: #cfdae5; }
.scale-option:hover { border-color: #6f96b8; }
.scale-option.selected {
  background: #dfeaf4;
  border-color: #416f9c;
  color: #244d70;
}
.score-ring { background: conic-gradient(#416f9c 0 var(--score-angle), #dce5ed var(--score-angle) 360deg); }
.dimension-fill { background: linear-gradient(90deg, #2c557d, #5f8db7); }

/* Dark sections become a true blue-gray brand anchor */
.section-dark {
  background: linear-gradient(135deg, #172d43 0%, #244865 58%, #315d7f 100%);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow, .approach-card .step { color: #b9d4ea; }
.section-dark .muted, .approach-card p, .value-lever-grid p { color: #d5e1eb; }
.value-lever-grid article { background: #203f5a; }

/* Buttons make blue more visible across every page */
.btn { border-color: #315f8b; }
.btn-primary {
  background: #315f8b;
  border-color: #315f8b;
  color: #fff;
}
.btn-primary:hover {
  background: #234a6e;
  border-color: #234a6e;
}
.btn-secondary {
  background: #fff;
  color: #244d70;
}
.btn-secondary:hover {
  background: #edf3f8;
  border-color: #557fa5;
}

/* Hero art: unmistakably blue/slate */
.orbit { border-color: rgba(65,111,156,.48); }
.orbit.one { background: rgba(237,243,248,.42); }
.orbit.two { border-color: rgba(142,164,185,.78); }
.axis { background: linear-gradient(#91a7bb, #3f719e); }
.insight-card {
  border-color: #d3dee8;
  box-shadow: 0 20px 48px rgba(31,62,90,.13);
}
.insight-card strong { color: #234663; }

/* Founder / callout areas */
.bio-card {
  background: linear-gradient(145deg, #17324c 0%, #315f87 65%, #6e8da8 100%);
}
.check i { background: #e1ebf4; color: #315f8b; }
.cta-band { background: #f4f7fa; }
.cta-box {
  background: #ffffff;
  border-color: #cfdae5;
  border-top: 4px solid #6f96b8;
}

/* Forms */
input, textarea, select { background: #f8fafc; border-color: #cbd8e3; }
input:focus, textarea:focus, select:focus {
  outline-color: rgba(65,111,156,.24);
  border-color: #416f9c;
}

/* Footer */
.site-footer {
  background: #172b3f;
  border-top: 5px solid #416f9c;
}
.site-footer .brand {
  background: #fff;
  padding: 7px 9px;
  border-radius: 8px;
}
.site-footer p, .site-footer a { color: #cbd8e3; }

/* LinkedIn button */
.nav-social {
  border-color: #b9cad9;
  background: #f5f8fb;
}
.nav-social:hover, .nav-social:focus {
  background: #e7eff6;
  border-color: #6f96b8;
}

/* Mobile cache-safe sizing */
@media (max-width: 920px) {
  .nav { top: 82px; background: #ffffff; }
}
@media (max-width: 600px) {
  .nav-wrap { min-height: 74px; }
  .brand-logo, .site-header .brand-logo { width: 60px; }
  .site-footer .brand-logo { width: 76px; }
}

/* ============================================================
   HEADER + SOCIAL SIZE FIX V3
   Compact masthead mark and hard-bounded LinkedIn icons
   ============================================================ */
.site-header .nav-wrap {
  min-height: 72px;
}
.site-header .brand {
  flex: 0 0 auto;
  line-height: 1;
}
.site-header .brand-logo {
  width: auto !important;
  height: 38px !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
}
.site-header .nav {
  align-items: center;
}
.site-header .nav a:not(.nav-cta):not(.nav-social) {
  line-height: 28px;
}

/* Keep the footer brand present but restrained. */
.site-footer .brand-logo {
  width: 104px !important;
  height: auto !important;
  max-width: 104px !important;
  display: block;
}

/* Defensive selectors ensure the LinkedIn SVG can never render at intrinsic size. */
.footer-social,
.site-footer .footer-social {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
}
.footer-social img,
.site-footer .footer-social img,
.site-footer img[src*="linkedin.svg"] {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  object-fit: contain !important;
  border-radius: 3px !important;
}
.nav-social img,
.site-header img[src*="linkedin.svg"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
}

@media (max-width: 920px) {
  .site-header .nav { top: 72px; }
}
@media (max-width: 600px) {
  .site-header .nav-wrap { min-height: 64px; }
  .site-header .brand-logo { height: 32px !important; width: auto !important; }
  .site-header .nav { top: 64px; }
  .site-footer .brand-logo { width: 92px !important; max-width: 92px !important; }
}


/* ============================================================
   SELECTED EXPERIENCE — ACTUAL LOGO WALL
   ============================================================ */
.experience-section {
  background: #fff;
  border-top: 1px solid #dce4ec;
  border-bottom: 1px solid #dce4ec;
}
.experience-intro {
  max-width: 880px;
  margin-bottom: 28px;
}
.experience-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
}
.company-logo-banner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid #d7e1ea;
  border-radius: 18px;
  background: #d7e1ea;
  box-shadow: 0 16px 42px rgba(24, 50, 76, .06);
}
.company-logo-tile {
  min-height: 92px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.company-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(.82);
  opacity: .72;
  mix-blend-mode: multiply;
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.company-logo-tile:hover .company-logo-image {
  opacity: .92;
  filter: grayscale(1) saturate(0) contrast(.96);
  transform: translateY(-1px);
}
.company-logo-image--square { max-height: 52px; max-width: 70px; }
.company-logo-image--focus { max-height: 48px; max-width: 108px; }
.company-logo-image--wide { max-height: 44px; max-width: 142px; }
.logo-fallback {
  display: none;
  color: #5f6f80;
  font-size: .84rem;
  font-weight: 750;
  letter-spacing: .02em;
  text-align: center;
}
.company-logo-image[style*="display: none"] + .logo-fallback { display: inline-block; }
.experience-summary {
  max-width: 900px;
  margin: 22px auto 0;
  color: #6b7c8f;
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 1180px) {
  .company-logo-banner { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .company-logo-banner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .company-logo-tile { min-height: 86px; padding: 16px; }
  .company-logo-image { max-width: 118px; max-height: 38px; }
  .company-logo-image--square { max-height: 48px; }
}
@media (max-width: 520px) {
  .company-logo-banner { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 14px; }
  .company-logo-tile { min-height: 82px; padding: 14px 12px; }
  .company-logo-image { max-width: 112px; max-height: 36px; }
  .experience-summary { font-size: .82rem; }
}

/* ============================================================
   SELECTED EXPERIENCE — FULL COLOR LOGO WALL
   ============================================================ */
.experience-section {
  background: #ffffff;
  border-top: 1px solid #e3eaf0;
  border-bottom: 1px solid #e3eaf0;
}
.experience-intro { margin-bottom: 38px; }
.company-logo-banner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 22px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: start;
}
.company-logo-tile {
  min-height: 118px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  background: transparent;
  color: var(--navy);
  overflow: visible;
}
.company-logo-tile:hover { background: transparent; }
.company-logo-frame {
  width: 100%;
  height: 66px;
  display: grid;
  place-items: center;
}
.company-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 154px;
  max-height: 50px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  transition: transform .2s ease;
}
.company-logo-tile:hover .company-logo-image {
  filter: none !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}
.company-logo-image--square { max-height: 60px; max-width: 74px; }
.company-logo-image--focus { max-height: 58px; max-width: 100px; }
.company-logo-image--wide { max-height: 48px; max-width: 164px; }
.company-logo-name {
  display: block;
  max-width: 175px;
  color: #53677b;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .01em;
  text-align: center;
}
.experience-summary {
  max-width: 900px;
  margin: 34px auto 0;
  color: #66798c;
  font-size: .92rem;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 1100px) {
  .company-logo-banner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .company-logo-banner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 16px; }
  .company-logo-tile { min-height: 108px; }
  .company-logo-frame { height: 58px; }
  .company-logo-image { max-width: 138px; max-height: 46px; }
  .company-logo-image--square { max-height: 54px; }
  .company-logo-image--wide { max-width: 148px; max-height: 44px; }
}
@media (max-width: 540px) {
  .company-logo-banner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 10px; }
  .company-logo-tile { min-height: 102px; padding: 0 4px; }
  .company-logo-image { max-width: 125px; max-height: 42px; }
  .company-logo-name { font-size: .72rem; }
}


/* ============================================================
   SELECTED EXPERIENCE — NORMALIZED LOGOS + ENGAGEMENT SUMMARIES
   ============================================================ */
.experience-section {
  background: #ffffff;
  border-top: 1px solid #e3eaf0;
  border-bottom: 1px solid #e3eaf0;
}
.experience-intro { margin-bottom: 40px; }
.company-logo-banner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: start;
}
.company-logo-tile {
  min-height: 160px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: transparent;
  color: var(--navy);
  overflow: visible;
}
.company-logo-tile:hover { background: transparent; }
.company-logo-frame {
  width: 188px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.company-logo-image,
.company-logo-image--square,
.company-logo-image--focus,
.company-logo-image--wide {
  --logo-scale: 1;
  display: block;
  width: 150px;
  height: 56px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  transform: scale(var(--logo-scale));
  transform-origin: center;
  transition: transform .2s ease;
}
.company-logo-tile:hover .company-logo-image {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(var(--logo-scale)) translateY(-2px);
}
/* Visual normalization against the Aon mark as the reference size. */
.logo-aon { --logo-scale: 1; }
.logo-bcg { --logo-scale: 1.34; }
.logo-grant { --logo-scale: 1.02; }
.logo-crosslake { --logo-scale: 1.52; }
.logo-cloudeq { --logo-scale: 1.02; }
.logo-abm { --logo-scale: 1.30; }
.logo-southwest { --logo-scale: 1.18; }
.logo-res { --logo-scale: 1.27; }
.logo-focus { --logo-scale: 1.22; }
.logo-wabash { --logo-scale: 1.45; }
.logo-sltc { --logo-scale: 1.18; }
.logo-kumgo { --logo-scale: 1.08; }
.logo-viant { --logo-scale: 1.10; }
.company-engagement-summary {
  display: block;
  max-width: 205px;
  color: #53677b;
  font-size: .78rem;
  font-weight: 550;
  line-height: 1.42;
  letter-spacing: .005em;
  text-align: center;
}
.logo-fallback-viant {
  display: none;
  width: 155px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #162d49;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: .95;
  letter-spacing: .08em;
  text-align: center;
}
.logo-fallback-viant small {
  margin-top: 6px;
  font-size: .52rem;
  font-weight: 750;
  letter-spacing: .18em;
}
.experience-summary { display: none; }
@media (max-width: 1100px) {
  .company-logo-banner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .company-logo-banner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 16px; }
  .company-logo-tile { min-height: 154px; }
  .company-logo-frame { width: 172px; height: 72px; }
  .company-logo-image,
  .company-logo-image--square,
  .company-logo-image--focus,
  .company-logo-image--wide { width: 142px; height: 53px; }
  .company-engagement-summary { max-width: 190px; font-size: .75rem; }
}
@media (max-width: 540px) {
  .company-logo-banner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 10px; }
  .company-logo-tile { min-height: 150px; padding: 0 2px; }
  .company-logo-frame { width: 150px; height: 68px; }
  .company-logo-image,
  .company-logo-image--square,
  .company-logo-image--focus,
  .company-logo-image--wide { width: 126px; height: 48px; }
  .company-engagement-summary { max-width: 158px; font-size: .71rem; line-height: 1.38; }
}


/* 2026-09-08 assessment conversion lifecycle */
.btn-assessment {
  background: #416f9c;
  border-color: #416f9c;
  color: #fff;
}
.btn-assessment:hover {
  background: #315d7f;
  border-color: #315d7f;
  color: #fff;
  transform: translateY(-1px);
}
.lifecycle-head { margin-bottom: 34px; }
.assessment-lifecycle {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  position: relative;
  margin: 8px 0 26px;
}
.lifecycle-step {
  position: relative;
  padding: 0 18px 22px;
  min-width: 0;
}
.lifecycle-step:first-child { padding-left: 0; }
.lifecycle-step:last-child { padding-right: 0; }
.lifecycle-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d6e1ea;
  z-index: 0;
}
.lifecycle-step:first-child::before { left: 24px; }
.lifecycle-step:last-child::before { right: calc(100% - 24px); }
.lifecycle-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #fff;
  border: 2px solid #416f9c;
  box-shadow: 0 0 0 6px #fff;
}
.lifecycle-free .lifecycle-marker {
  background: #1b2f46;
  border-color: #1b2f46;
  color: #fff;
}
.lifecycle-marker span {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.lifecycle-stage {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .16em;
  color: #416f9c;
}
.lifecycle-step h3 {
  margin: 0 0 9px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.lifecycle-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .83rem;
  line-height: 1.55;
}
.lifecycle-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d6e1ea;
  border: 1px solid #d6e1ea;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 55px;
}
.lifecycle-outcomes > div {
  background: #f5f8fb;
  padding: 18px 20px;
}
.lifecycle-outcomes strong,
.lifecycle-outcomes span { display: block; }
.lifecycle-outcomes strong { color: #244d70; margin-bottom: 4px; }
.lifecycle-outcomes span { color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }

@media (max-width: 1180px) {
  .assessment-lifecycle { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .lifecycle-step:nth-child(3)::before,
  .lifecycle-step:nth-child(6)::before { right: calc(100% - 24px); }
  .lifecycle-step:nth-child(4)::before { left: 24px; }
}
@media (max-width: 760px) {
  .assessment-lifecycle { grid-template-columns: 1fr; gap: 0; margin-top: 0; }
  .lifecycle-step,
  .lifecycle-step:first-child,
  .lifecycle-step:last-child {
    padding: 0 0 26px 68px;
    min-height: 105px;
  }
  .lifecycle-step::before,
  .lifecycle-step:first-child::before,
  .lifecycle-step:last-child::before,
  .lifecycle-step:nth-child(3)::before,
  .lifecycle-step:nth-child(4)::before,
  .lifecycle-step:nth-child(6)::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .lifecycle-step:last-child::before { bottom: calc(100% - 24px); }
  .lifecycle-marker { position: absolute; left: 0; top: 0; }
  .lifecycle-outcomes { grid-template-columns: 1fr; }
  .hero .actions .btn { width: 100%; }
}


/* ============================================================
   JANUS INSIGHTS — HORIZONTAL BRAND MARK (2026-09-08)
   ============================================================ */
.site-header .nav-wrap {
  min-height: 76px;
}
.site-header .brand-logo {
  width: 190px !important;
  height: auto !important;
  max-width: 190px !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
}
.site-footer .brand-logo {
  width: 250px !important;
  height: auto !important;
  max-width: 100% !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
}
@media (max-width: 920px) {
  .site-header .nav { top: 76px; }
}
@media (max-width: 600px) {
  .site-header .nav-wrap { min-height: 68px; }
  .site-header .brand-logo {
    width: 155px !important;
    height: auto !important;
    max-width: 155px !important;
  }
  .site-header .nav { top: 68px; }
  .site-footer .brand-logo {
    width: 210px !important;
    max-width: 100% !important;
  }
}

/* ============================================================
   JANUS WEBSITE AI ASSISTANT (2026-09-08)
   ============================================================ */
.janus-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: inherit;
}
.janus-chat-launcher {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #1b2f46;
  color: #fff;
  box-shadow: 0 16px 40px rgba(17,39,61,.24);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.janus-chat-launcher:hover { transform: translateY(-1px); background: #244d70; }
.janus-chat-launcher-mark,
.janus-chat-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4a64a2;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
}
.janus-chat-launcher-mark { width: 36px; height: 36px; font-size: 1rem; }
.janus-chat-avatar { width: 38px; height: 38px; font-size: 1.02rem; }
.janus-chat-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(398px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 110px));
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6e1ea;
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(17,39,61,.24);
}
.janus-chat-panel[hidden] { display: none; }
.janus-chat-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #1b2f46;
  color: #fff;
}
.janus-chat-identity { display: flex; align-items: center; gap: 11px; }
.janus-chat-identity strong,
.janus-chat-identity span { display: block; }
.janus-chat-identity strong { font-size: 1rem; }
.janus-chat-identity span { margin-top: 2px; color: #c9d8e6; font-size: .72rem; font-weight: 650; }
.janus-chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}
.janus-chat-close:hover { background: rgba(255,255,255,.1); }
.janus-chat-messages {
  height: calc(100% - 244px);
  min-height: 230px;
  overflow-y: auto;
  padding: 18px 16px 12px;
  background: #f7f9fb;
  scroll-behavior: smooth;
}
.janus-chat-message {
  width: fit-content;
  max-width: 88%;
  margin: 0 0 12px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: .87rem;
  line-height: 1.52;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.janus-chat-message-assistant {
  margin-right: auto;
  color: #17334f;
  background: #fff;
  border: 1px solid #dbe5ed;
  border-bottom-left-radius: 5px;
}
.janus-chat-message-user {
  margin-left: auto;
  color: #fff;
  background: #416f9c;
  border-bottom-right-radius: 5px;
}
.janus-chat-message.is-pending { color: #66788a; font-style: italic; }
.janus-chat-suggestions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 10px 14px 8px;
  background: #fff;
  scrollbar-width: thin;
}
.janus-chat-suggestions.is-hidden { display: none; }
.janus-chat-suggestions button {
  flex: 0 0 auto;
  max-width: 205px;
  border: 1px solid #cddbe6;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: #244d70;
  font: inherit;
  font-size: .71rem;
  font-weight: 720;
  cursor: pointer;
}
.janus-chat-suggestions button:hover { background: #f0f5f9; border-color: #9fb8cb; }
.janus-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #e0e8ef;
  background: #fff;
}
.janus-chat-form textarea {
  flex: 1 1 auto;
  min-height: 42px;
  max-height: 112px;
  resize: none;
  padding: 10px 12px;
  border: 1px solid #cddbe6;
  border-radius: 12px;
  background: #fff;
  color: #132c46;
  font: inherit;
  font-size: .84rem;
  line-height: 1.4;
  outline: none;
}
.janus-chat-form textarea:focus { border-color: #416f9c; box-shadow: 0 0 0 3px rgba(65,111,156,.12); }
.janus-chat-send {
  min-width: 62px;
  height: 42px;
  border: 1px solid #416f9c;
  border-radius: 12px;
  background: #416f9c;
  color: #fff;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
}
.janus-chat-send:hover { background: #315d7f; }
.janus-chat-send:disabled { opacity: .55; cursor: wait; }
.janus-chat-foot {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 13px 10px;
  background: #fff;
  color: #718193;
  font-size: .62rem;
  line-height: 1.35;
}
.janus-chat-foot span { max-width: 245px; }
.janus-chat-foot a { color: #315d7f; font-weight: 800; white-space: nowrap; }
@media (max-width: 600px) {
  .janus-chat { right: 12px; bottom: 12px; }
  .janus-chat-launcher { min-height: 48px; padding-right: 14px; }
  .janus-chat-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 72px;
    width: auto;
    height: min(650px, calc(100vh - 92px));
    border-radius: 18px;
  }
  .janus-chat-messages { height: calc(100% - 250px); }
}

/* Janus conversation intelligence / chatbot assessment action */
.janus-chat-action-wrap{display:flex;justify-content:flex-start;margin:-3px 8px 12px 8px}
.janus-chat-action{display:inline-flex;align-items:center;gap:6px;padding:9px 12px;border-radius:999px;background:#e8f0f7;border:1px solid #b9cce0;color:#244f7c;text-decoration:none;font-size:.78rem;font-weight:800;line-height:1.25}
.janus-chat-action:hover{background:#dce9f4;border-color:#91afd0}


/* 2026-09-08 assessment quick-start navigation */
.assessment-quickstart {
  background: #f6f9fc;
  border-bottom: 1px solid #d8e3ec;
  padding: 26px 0 28px;
}
.assessment-quickstart-inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(520px, 1.2fr);
  gap: 42px;
  align-items: center;
}
.assessment-quickstart-copy .eyebrow {
  margin-bottom: 8px;
}
.assessment-quickstart-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  margin: 0 0 8px;
  letter-spacing: -.035em;
}
.assessment-quickstart-copy > p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.5;
  max-width: 580px;
}
.assessment-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #315f8b;
  border: 1px solid #315f8b;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
  font-size: .9rem;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.assessment-scroll-cta:hover,
.assessment-scroll-cta:focus-visible {
  background: #244d70;
  border-color: #244d70;
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}
.assessment-quick-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.assessment-quick-button {
  appearance: none;
  width: 100%;
  min-height: 62px;
  border: 1px solid #c9d9e7;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.assessment-quick-button > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf4fa;
  color: #315f8b;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .05em;
}
.assessment-quick-button strong {
  font-size: .9rem;
  line-height: 1.22;
}
.assessment-quick-button:hover,
.assessment-quick-button:focus-visible {
  border-color: #6f96ba;
  background: #fbfdff;
  box-shadow: 0 8px 20px rgba(27, 47, 70, .08);
  transform: translateY(-1px);
  outline: none;
}
.assessment-options-section {
  scroll-margin-top: 92px;
}
#trial {
  scroll-margin-top: 92px;
}
@media (max-width: 900px) {
  .assessment-quickstart-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 620px) {
  .assessment-quickstart {
    padding: 20px 0 22px;
  }
  .assessment-quick-buttons {
    grid-template-columns: 1fr;
  }
  .assessment-quick-button {
    min-height: 56px;
  }
}
