:root {
    --navy: #07163f;
    --ink: #101a4d;
    --cyan: #39ddf9;
    --violet: #930eb5;
    --magenta: #c406e9;
    --warm: #fcfcfa;
    --surface: #f3f6fb;
    --line: #d8deeb;
    --muted: #596583;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }
body { background: var(--warm); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.55; }
.site-page { min-width: 0; overflow: hidden; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 3000; padding: 10px 15px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed; top: 24px; left: 50%; z-index: 1000; display: flex; align-items: center;
    width: min(1200px, calc(100% - 48px)); min-height: 66px; margin: 0;
    padding: 12px 24px 12px 32px; color: var(--ink);
    background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.74); border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand img { width: 29px; height: 29px; display: block; }
.brand span { font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.brand b { margin-left: -2px; font-weight: 400; }
.desktop-nav { display: flex; align-items: center; gap: 31px; margin-inline: auto; font-size: 14px; font-weight: 600; }
.desktop-nav > a, .dropdown > a { display: flex; align-items: center; gap: 6px; padding: 8px 0; color: var(--ink); text-decoration: none; opacity: .82; transition: color .2s ease, opacity .2s ease; }
.desktop-nav > a:hover, .dropdown:hover > a { color: var(--violet); opacity: 1; }
.nav-arrow { width: 12px; opacity: .5; transition: transform .2s ease, opacity .2s ease; }
.dropdown { position: relative; }
.dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }
.dropdown-content { position: absolute; top: 100%; left: -24px; min-width: 310px; margin-top: 14px; padding: 8px; border: 1px solid rgba(0,0,0,.06); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 20px 40px rgba(15,23,42,.12); opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98); transform-origin: top left; transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-item { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 14px; color: var(--ink); text-decoration: none; transition: background .2s ease; }
.dropdown-item:hover { background: #f2f4fa; }
.dropdown-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid rgba(0,0,0,.04); border-radius: 12px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.dropdown-icon img { width: 25px; height: 25px; object-fit: contain; }
.dropdown-icon img.coriqa-emblem { width: 21px; height: 26px; }
.dropdown-glyph { color: var(--violet); font-size: 22px; line-height: 1; }
.dropdown-text { display: flex; flex-direction: column; gap: 2px; }
.dropdown-text strong { color: var(--ink); font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.dropdown-text span { color: #64708b; font-size: 12px; font-weight: 400; }
.header-actions { display: flex; align-items: center; }
.header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.header-cta:hover { background: var(--violet); color: #fff; transform: translateY(-1px); }
.header-cta span, .text-link span, .arrow-link { color: var(--cyan); }
.nav-toggle { display: none; margin-left: auto; border: 0; border-radius: 12px; background: rgba(15,23,42,.06); color: var(--ink); width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 1px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: 0; z-index: 2100; visibility: hidden; pointer-events: none; }
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(4,13,40,.65); opacity: 0; transition: opacity .25s ease; }
.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-sheet { position: absolute; top: 0; right: 0; width: min(340px, 88vw); height: 100%; padding: 100px 30px 32px; background: var(--warm); color: var(--ink); transform: translateX(100%); transition: transform .28s ease; }
.mobile-nav.is-open .mobile-nav-sheet { transform: translateX(0); }
.mobile-nav-links { display: grid; gap: 4px; }
.mobile-nav-links a { display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 18px; }
.mobile-nav-links .mobile-nav-cta { margin-top: 20px; justify-content: center; border: 0; background: var(--navy); color: #fff; }

.hero { position: relative; overflow: hidden; min-height: 650px; padding: 142px 0 96px; background: linear-gradient(105deg, #102b55, #283078 53%, #4b2580); color: #fff; }
.hero::after { position: absolute; content: ""; width: 830px; height: 440px; right: -280px; bottom: -250px; border: 1px solid rgba(57,221,249,.4); border-radius: 50%; transform: rotate(-12deg); box-shadow: 0 0 90px rgba(64,50,255,.18); }
.hero-glow { position: absolute; z-index: 0; width: 430px; height: 430px; border-radius: 50%; pointer-events: none; filter: blur(14px); mix-blend-mode: screen; }
.hero-glow-left { top: -55%; left: 20%; background: radial-gradient(circle, rgba(57,221,249,.42), rgba(103,232,249,.18) 34%, transparent 72%); opacity: .72; animation: home-spotlight-cyan 8s ease-in-out infinite; }
.hero-glow-right { top: 2%; right: 3%; background: radial-gradient(circle, rgba(196,6,233,.34), rgba(125,91,235,.2) 38%, transparent 72%); opacity: .76; animation: home-spotlight-violet 9s ease-in-out infinite; }
.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 830px; }
.eyebrow { margin: 0 0 19px; color: var(--cyan); font-size: 11px; font-weight: 600; line-height: 1.3; letter-spacing: .32em; text-transform: uppercase; }
.eyebrow-light { color: #5264a4; }
h1, h2, h3 { font-family: inherit; font-weight: 700; letter-spacing: -.045em; line-height: 1.06; }
h1 { max-width: 760px; margin: 0; font-size: clamp(3.8rem, 7vw, 6.4rem); }
.hero-lede { margin: 23px 0 0; color: #e2e7f5; font-size: 16px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 45px; padding: 0 20px; border-radius: 7px; font-size: 12px; font-weight: 600; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-cyan { background: var(--cyan); color: var(--navy); }
.hero-actions .button-cyan { background: linear-gradient(110deg, var(--cyan) 0%, #5fc8f4 43%, var(--violet) 100%); color: #07163f; box-shadow: 0 10px 24px rgba(57,221,249,.16); }
.hero-actions .button-cyan:hover { background: linear-gradient(110deg, #79eaff 0%, #82d9fa 43%, #b33bd0 100%); }
.button-cyan:hover { background: #79eaff; }
.button-outline { border: 1px solid #2ebbea; color: #fff; }
.button-outline:hover { background: rgba(57,221,249,.13); }
.play-icon { display: inline-grid; place-items: center; width: 17px; height: 17px; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 8px; }

.hero-showcase { position: relative; display: grid; grid-template-columns: minmax(0, 1.17fr) minmax(310px, .83fr); align-items: end; gap: clamp(50px, 7vw, 104px); margin-top: 53px; }
.hero-product { min-width: 0; }
.hero-visual-frame { position: relative; overflow: hidden; border: 1px solid rgba(119,154,255,.7); border-radius: 7px; box-shadow: 0 15px 38px rgba(0,0,0,.25), 0 0 26px rgba(57,221,249,.25); }
.hero-visual-frame::after { position: absolute; content: ""; inset: 0; border: 1px solid rgba(255,255,255,.15); pointer-events: none; }
.hero-visual-frame img { display: block; width: 100%; aspect-ratio: 1.78; object-fit: cover; }
.hero-product-label { display: flex; align-items: center; gap: 11px; margin: 16px 0 0 14px; }
.hero-product-label > img { width: 36px; height: 36px; padding: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--magenta)); }
.hero-product-label strong, .hero-product-label span { display: block; }
.hero-product-label strong { font-family: inherit; font-size: 20px; font-weight: 700; }
.hero-product-label span { margin-top: 2px; color: #d0d8ee; font-size: 11px; line-height: 1.45; }
@keyframes home-spotlight-cyan {
    0%, 100% { transform: translate(-18%, -8%) scale(.78); }
    25% { transform: translate(30%, 28%) scale(1.04); }
    50% { transform: translate(92%, -4%) scale(.86); }
    75% { transform: translate(42%, 42%) scale(1.12); }
}
@keyframes home-spotlight-violet {
    0%, 100% { transform: translate(18%, 20%) scale(.82); }
    25% { transform: translate(-36%, -8%) scale(1.08); }
    50% { transform: translate(-78%, 24%) scale(.9); }
    75% { transform: translate(-28%, 48%) scale(1.16); }
}
.operating-model { position: relative; isolation: isolate; min-height: 585px; overflow: hidden; padding: 63px 0 43px; color: #fff; background: var(--navy); }
.operating-model::after { position: absolute; content: ""; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(4,15,42,.9) 0%, rgba(4,15,42,.66) 39%, rgba(4,15,42,.22) 72%, rgba(4,15,42,.48) 100%), linear-gradient(180deg, rgba(4,15,42,.2), rgba(4,15,42,.7)); pointer-events: none; }
.operating-model-image { position: absolute; z-index: -1; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.operating-model-inner { position: relative; z-index: 1; display: flex; min-height: 479px; flex-direction: column; justify-content: space-between; }
.operating-model-intro { max-width: 600px; }
.operating-model .eyebrow { margin-bottom: 20px; color: #8ceeff; font-size: 9px; letter-spacing: .34em; }
.operating-model h2 { max-width: 630px; margin: 0; color: #fff; font-size: clamp(2.65rem, 4.5vw, 4rem); line-height: 1.02; }
.operating-model-points { display: grid; grid-template-columns: 1fr 1fr; margin-top: 80px; border-top: 1px solid rgba(57,221,249,.72); }
.operating-model-point { min-height: 147px; padding: 18px 38px 0 0; }
.operating-model-point + .operating-model-point { padding: 18px 0 0 38px; border-left: 1px solid rgba(255,255,255,.36); }
.operating-model-point p { max-width: 300px; margin: 0; color: #e1e8f8; font-size: 14px; line-height: 1.25; }
.operating-model-point h3 { max-width: 410px; margin: 10px 0 0; color: #fff; font-size: clamp(1.7rem, 2.55vw, 2.45rem); line-height: 1.05; }
.operating-model-point h3 + p { margin-top: 18px; }
.operating-model-gradient { background: linear-gradient(110deg, var(--cyan), #a2a4ff 52%, var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.operating-model-point strong { display: block; margin-top: 10px; color: var(--cyan); font-size: 14px; font-weight: 700; }
.nowrap { white-space: nowrap; }
.hero-connector { position: absolute; left: 57%; bottom: 84px; z-index: 2; display: flex; align-items: center; width: 112px; color: #fff; font-size: 10px; line-height: 1.3; text-align: center; }
.hero-connector::before, .hero-connector::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.hero-connector::after { background: linear-gradient(90deg, var(--magenta), transparent); }
.hero-connector span { flex: 0 0 auto; padding: 8px 6px; border: 1px solid var(--cyan); border-radius: 50%; background: var(--navy); box-shadow: 0 0 20px rgba(57,221,249,.45); }
.mindful-panel { min-height: 220px; padding: 19px 21px 20px; border: 1px solid rgba(161,159,255,.85); border-radius: 8px; background: linear-gradient(145deg, #eef5ff 0%, #fff 46%, #e9e3ff 100%); color: var(--ink); box-shadow: 0 15px 38px rgba(34,17,116,.36), 0 0 24px rgba(184,118,255,.45); }
.mindful-panel-brand { display: flex; align-items: center; gap: 7px; font-size: 9px; }
.mindful-panel-brand img { width: 20px; height: 20px; }
.mindful-panel-brand span { margin-left: auto; color: #6b74a2; }
.mindful-panel > p, .pathway-card > p { margin: 24px 0 0; font-size: 11px; font-weight: 600; }
.pathway { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 14px 0 0; padding: 0; list-style: none; text-align: center; }
.pathway::before { position: absolute; content: ""; z-index: 0; top: 19px; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg, #6d87f9, #a56aff, #609eea); }
.pathway li { position: relative; z-index: 1; min-width: 0; }
.path-icon { display: grid; place-items: center; width: 38px; height: 38px; margin: 0 auto 6px; border: 1px solid #7e8fff; border-radius: 50%; background: #fff; color: #596ff1; font-size: 18px; line-height: 1; box-shadow: 0 0 0 5px rgba(255,255,255,.55); }
.pathway strong, .pathway small { display: block; }
.pathway strong { font-size: 10px; font-weight: 600; }
.pathway small { margin-top: 3px; color: #5c6a9c; font-size: 8px; line-height: 1.35; }

.section-light { background: var(--warm); }
.solutions { padding: 101px 0 106px; }
.solutions .shell { width: min(1180px, calc(100% - 64px)); }
.section-intro, .services-top { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .78fr); gap: 86px; align-items: end; }
.section-intro h2 { max-width: 900px; margin: 0; color: var(--ink); font-size: clamp(2.5rem, 4.1vw, 4.25rem); line-height: 1.02; letter-spacing: -.055em; }
.section-note { align-self: end; margin: 0 0 8px; padding-top: 26px; border-top: 1px solid #9eacd1; color: var(--ink); font-size: clamp(1rem, 1.35vw, 1.4rem); line-height: 1.36; }
.solutions-framework { display: flex; flex-wrap: wrap; align-items: center; gap: .55em .85em; margin: 48px 0 0; color: #5264a4; font-size: 10px; letter-spacing: .24em; }
.solutions-grid { display: grid; grid-template-columns: minmax(0, 1.76fr) minmax(420px, 1fr); gap: 13px; margin-top: 28px; align-items: stretch; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #d6e4f4; background: rgba(255,255,255,.86); }
.siteos-card, .mindful-card { border-radius: 18px; }
.product-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 160px; padding: 24px 40px 20px; background: #fff; }
.product-title { display: flex; align-items: center; gap: 14px; min-width: 0; }
.product-title > img { width: 96px; height: 96px; flex: 0 0 auto; }
.product-title h3 { margin: 0; color: var(--ink); font-size: clamp(1.75rem, 2.25vw, 2.25rem); font-weight: 700; line-height: .98; letter-spacing: -.06em; }
.product-title p { margin: 8px 0 0; color: #53658f; font-size: clamp(.9rem, 1.1vw, 1.1rem); line-height: 1.15; }
.product-card-description { position: relative; display: flex; align-items: center; min-height: 240px; padding: 34px 52px 38px; background: #fff; }
.product-card-description::before { position: absolute; content: ""; top: 0; right: 52px; left: 52px; height: 2px; background: var(--card-accent, #18c9f4); }
.product-card-description p { max-width: 820px; margin: 0; color: var(--ink); font-family: var(--font-heading); font-size: clamp(1.5rem, 1.9vw, 2.1rem); font-weight: 400; line-height: 1.17; letter-spacing: -.05em; }
.siteos-card { --card-accent: #17c8f3; }
.mindful-card { --card-accent: #6632f4; }
.siteos-card .product-card-description p { width: 88%; max-width: 790px; }
.mindful-description p { max-width: 650px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; color: #304dce; font-size: 10px; font-weight: 600; text-decoration: none; }
.text-link:hover { color: var(--violet); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex: 1; margin: 0; border-top: 1px solid #d6e4f4; }
.audience-block { display: flex; min-width: 0; min-height: 338px; flex-direction: column; padding: 34px 52px 43px; background: #fff; }
.audience-block + .audience-block { padding-left: 52px; border-left: 1px solid #d6e4f4; }
.audience-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; margin-bottom: 8px; border: 0; border-radius: 0; color: #10285d; background: rgba(255,255,255,.62); }
.audience-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 2.45; stroke-linecap: round; stroke-linejoin: round; }
.audience-icon-providers svg { width: 38px; height: 38px; }
.audience-icon-providers .icon-center { fill: currentColor; stroke: none; }
.audience-block h4 { margin: 0; color: var(--ink); font-size: clamp(.95rem, 1.25vw, 1.25rem); font-weight: 700; letter-spacing: .055em; line-height: 1.2; overflow-wrap: anywhere; }
.audience-block p { max-width: 560px; margin: 23px 0 0; color: #53658f; font-family: var(--font-heading); font-size: clamp(1.35rem, 1.75vw, 1.9rem); font-weight: 400; line-height: 1.25; letter-spacing: -.04em; overflow-wrap: anywhere; }
.arrow-link { display: inline-flex; align-items: center; min-height: 36px; color: #1d58ef; font-family: var(--font-heading); font-size: clamp(1rem, 1.45vw, 1.45rem); line-height: 1; text-decoration: none; }
.arrow-link:hover { color: var(--magenta); transform: translateX(3px); }
.audience-block .arrow-link { align-items: flex-start; gap: 13px; margin-top: auto; padding-top: 28px; line-height: 1.25; }
.audience-block .arrow-link span { flex: 0 0 auto; font-family: var(--font-body); font-size: clamp(2rem, 2.8vw, 2.8rem); line-height: .62; }
.mindful-audience-grid { grid-template-columns: 1fr; }
.mindful-audience-grid .audience-block { min-height: 338px; }
.mindful-audience-grid .audience-block p { max-width: 620px; }
.pathway-card { position: relative; z-index: 1; padding: 18px 19px 20px; border: 1px solid rgba(106,116,204,.7); border-radius: 7px; background: rgba(255,255,255,.9); box-shadow: 0 10px 23px rgba(60,58,130,.17); }
.pathway-card > p { margin: 0; color: var(--ink); }
.pathway-card .pathway { margin-top: 17px; }
.pathway-card .path-icon { width: 35px; height: 35px; }
.mindful-copy { position: relative; display: flex; flex: 1; min-height: 194px; align-items: stretch; padding: 48px 42px 29px; background: linear-gradient(135deg, #f4f5ff 0%, #f1efff 100%); }
.mindful-copy::before { position: absolute; content: ""; top: 27px; right: 42px; left: 42px; height: 2px; background: var(--card-accent); }
.mindful-copy-text { display: flex; width: 100%; max-width: 560px; flex-direction: column; }
.audience-label { display: block; margin: 0 0 17px; color: var(--ink); font-size: clamp(.88rem, 1.15vw, 1.15rem); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.mindful-copy p { max-width: 550px; margin: 0; color: #53658f; font-size: clamp(1.25rem, 1.65vw, 1.85rem); line-height: 1.18; letter-spacing: -.04em; }
.mindful-copy .arrow-link { max-width: none; margin-top: auto; padding-top: 21px; font-size: clamp(.9rem, 1.25vw, 1.25rem); line-height: 1.25; text-align: left; }
.mindful-copy .arrow-link span { flex: 0 0 auto; margin-left: 3px; font-size: clamp(1.5rem, 2vw, 2rem); line-height: .72; }

.services { padding: 70px 0 77px; border-top: 1px solid #e3e7ef; }
.services-top { align-items: start; }
.services-top h2 { max-width: 540px; font-size: clamp(2.4rem, 4vw, 3.35rem); }
.services-top > p { max-width: 320px; margin: 27px 0 0; padding-top: 15px; border-top: 1px solid #9eacd1; color: var(--ink); font-size: 13px; line-height: 1.55; }
.service-columns { display: grid; grid-template-columns: 1fr 1fr; margin: 46px 26px 0; }
.service-column { min-height: 165px; padding: 0 59px 0 0; }
.service-column + .service-column { padding: 0 0 0 66px; border-left: 1px solid #cdd5e5; }
.service-rule { width: 48px; height: 2px; margin-bottom: 16px; }
.rule-cyan { background: var(--cyan); }
.rule-violet { background: var(--magenta); }
.service-column h3 { margin: 0; color: var(--ink); font-size: 28px; line-height: 1; }
.service-column p { max-width: 390px; margin: 9px 0 0; color: #263566; font-size: 15px; line-height: 1.55; }
.service-column small { display: block; margin-top: 5px; color: #5c6781; font-size: 11px; font-style: italic; }
.service-column .arrow-link { margin-top: 8px; }

.people { padding: 0; overflow: hidden; background: #f0f3fa; }
.people-grid { display: grid; grid-template-columns: .93fr 1.07fr; min-height: 325px; align-items: center; }
.people-copy { padding: 54px 40px 54px 0; }
.people-copy h2 { max-width: 570px; margin: 0; color: var(--ink); font-size: clamp(2.5rem, 4.2vw, 3.7rem); }
.people-copy > p:not(.eyebrow) { max-width: 350px; margin: 21px 0 12px; color: #263566; font-size: 13px; line-height: 1.55; }
.people-image { position: relative; align-self: stretch; min-height: 325px; }
.people-image::after { position: absolute; content: ""; inset: 0; background: linear-gradient(110deg, rgba(107,56,251,.58) 0%, rgba(123,102,246,.43) 42%, rgba(42,209,237,.34) 100%), linear-gradient(90deg, rgba(240,243,250,.68) 0%, rgba(240,243,250,.24) 38%, rgba(240,243,250,0) 76%); pointer-events: none; }
.people-image img { display: block; width: 100%; height: 100%; object-fit: cover; opacity: .74; filter: grayscale(1) contrast(.96); }
.life-sciences-stamp { --stamp-gold: #f2c75b; position: absolute; right: 24px; bottom: 24px; z-index: 2; display: grid; place-items: center; width: 174px; height: 174px; padding: 22px; border: 3px solid var(--stamp-gold); border-radius: 50%; background: rgba(7,22,63,.32); box-shadow: 0 0 0 6px rgba(242,199,91,.42), inset 0 0 0 1px rgba(255,246,194,.9); color: var(--stamp-gold); text-align: center; transform: rotate(8deg); }
.life-sciences-stamp::before { position: absolute; inset: 8px; border: 1px dashed rgba(255,239,183,.85); border-radius: 50%; content: ""; }
.life-sciences-stamp-years, .life-sciences-stamp-focus { position: relative; z-index: 1; font-weight: 700; letter-spacing: .16em; line-height: 1; text-transform: uppercase; }
.life-sciences-stamp-mark { position: relative; z-index: 1; margin: 2px 0 -2px; color: #fff6c9; font-size: 16px; line-height: 1; }
.life-sciences-stamp strong { position: relative; z-index: 1; margin: -1px 0 -3px; color: #fff8d5; font-size: 52px; font-weight: 700; letter-spacing: -.07em; line-height: .9; }
.life-sciences-stamp-years { font-size: 14px; }
.life-sciences-stamp-rule { position: relative; z-index: 1; width: 48px; height: 1px; margin: 1px 0 0; background: rgba(255,239,183,.8); }
.life-sciences-stamp-focus { max-width: 112px; font-size: 8px; letter-spacing: .1em; line-height: 1.35; }

.closing { position: relative; overflow: hidden; padding: 58px 0 62px; background: var(--navy); color: #fff; }
.closing-orbit { position: absolute; right: -42px; bottom: -240px; width: 700px; height: 450px; border: 1px solid rgba(57,221,249,.4); border-radius: 50%; box-shadow: 0 0 90px rgba(57,221,249,.11); transform: rotate(-12deg); }
.closing-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.closing h2 { margin: 0; font-size: clamp(2.9rem, 5vw, 4.3rem); }
.closing .eyebrow { margin-bottom: 16px; }
.closing .button { min-width: 132px; }

.sponsor-footer { padding: 30px 0 14px; border-top: 1px solid #dce8f4; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 35px; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 16px; font-weight: 700; text-decoration: none; }
.footer-brand img { width: 28px; height: 28px; }
.footer-brand span { margin-left: -3px; font-weight: 400; }
.footer-blurb { max-width: 250px; margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.footer-col strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 7px 0; color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 26px; padding-top: 14px; border-top: 1px solid #e2ebf4; color: var(--muted); font-size: 11px; }
.footer-legal { display: flex; gap: 17px; }
.footer-legal a { color: inherit; text-decoration: none; }

/* Pop-in motion follows the product pages: a soft scale-up with a short lift. */
.motion-ready .pop-in { opacity: 0; transform: translateY(18px) scale(.96); }
.motion-ready .pop-in.is-visible { opacity: 1; transform: none; transition-delay: var(--pop-delay, 0ms); }
.pop-in { transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.hero-copy .pop-in { transform-origin: left center; }
.hero-product.pop-in { transform-origin: center bottom; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

/* Homepage UX rhythm: keep the content hierarchy while reducing unused vertical space. */
.hero { min-height: 610px; padding-bottom: 74px; }
.operating-model { min-height: 550px; padding: 57px 0 36px; }
.operating-model-inner { min-height: 456px; }
.operating-model-points { margin-top: 64px; }
.operating-model-point { min-height: 132px; padding: 16px 32px 0 0; }
.operating-model-point + .operating-model-point { padding: 16px 0 0 32px; }
.solutions { padding: 86px 0 88px; }
.section-intro, .services-top { gap: 64px; }
.solutions-framework { margin-top: 36px; }
.solutions-grid { margin-top: 24px; }
.product-card-head { min-height: 160px; padding: 24px 40px 20px; }
.product-card-description { min-height: 240px; padding: 34px 52px 38px; }
.audience-block { min-height: 338px; padding: 34px 52px 43px; }
.audience-block + .audience-block { padding-left: 52px; }
.services { padding: 62px 0 64px; }
.service-columns { margin-top: 38px; }
.people-copy { padding: 48px 36px 48px 0; }
.closing { padding: 50px 0 54px; }
.sponsor-footer { padding: 26px 0 12px; }
.footer-bottom { margin-top: 22px; }

@media (max-width: 1100px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .product-card-head { min-height: 156px; padding: 24px 36px 20px; }
    .product-title > img { width: 96px; height: 96px; }
    .product-title h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
    .product-title p { margin-top: 7px; font-size: .95rem; }
    .product-card-description { min-height: 190px; padding: 30px 36px 34px; }
    .product-card-description::before { right: 36px; left: 36px; }
    .product-card-description p { font-size: clamp(1.45rem, 2.8vw, 2rem); line-height: 1.17; }
    .audience-block { min-height: 250px; padding: 28px 36px 34px; }
    .audience-block + .audience-block { padding-left: 36px; }
    .audience-block p { margin-top: 18px; font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
    .audience-block .arrow-link { padding-top: 22px; font-size: clamp(.95rem, 1.8vw, 1.2rem); }
    .audience-block .arrow-link span { font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
    .mindful-audience-grid .audience-block { min-height: 250px; }
}
@media (max-width: 900px) {
    .shell, .site-header { width: min(100% - 40px, 680px); }
    .solutions .shell { width: min(100% - 40px, 680px); }
    .desktop-nav, .header-cta { display: none; }
    .nav-toggle { display: block; }
    .hero { min-height: auto; padding-top: 125px; padding-bottom: 80px; }
    .hero-showcase { grid-template-columns: 1fr; gap: 36px; max-width: 600px; margin-inline: auto; }
    .hero-connector { left: 50%; bottom: auto; top: calc(50% - 25px); transform: translate(-50%, -50%) rotate(90deg); }
    .hero-connector span { transform: rotate(-90deg); }
    .operating-model { min-height: 0; padding: 62px 0 42px; }
    .operating-model-image { object-position: 66% center; }
    .operating-model-inner { min-height: 0; }
    .operating-model-points { margin-top: 78px; }
    .operating-model-point { min-height: 0; padding-right: 24px; }
    .operating-model-point + .operating-model-point { padding-left: 24px; }
    .section-intro, .services-top { grid-template-columns: 1fr; gap: 24px; }
    .section-note { justify-self: start; }
    .solutions-grid { grid-template-columns: 1fr; }
    .siteos-card, .mindful-card { border-radius: 9px; }
    .people-grid { grid-template-columns: 1fr; }
    .people-copy { padding: 60px 0 38px; }
    .people-image { min-height: 300px; }
    .people-image::after { background: linear-gradient(150deg, rgba(107,56,251,.52) 0%, rgba(123,102,246,.36) 48%, rgba(42,209,237,.24) 100%), linear-gradient(0deg, rgba(240,243,250,.78) 0%, rgba(240,243,250,.3) 34%, rgba(240,243,250,0) 72%); }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-col:last-child { display: none; }
}
@media (max-width: 620px) {
    .shell, .site-header { width: calc(100% - 40px); }
    .solutions .shell { width: calc(100% - 40px); }
    .site-header { height: 70px; }
    .brand img { width: 32px; height: 32px; }
    .brand span { font-size: clamp(16px, 4.2vw, 20px); }
    .hero { min-height: auto; padding: 112px 0 58px; }
    h1 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
    .hero-lede { font-size: 14px; }
    .hero-actions { align-items: stretch; flex-direction: column; max-width: 235px; }
    .button { width: 100%; }
    .operating-model { padding: 55px 0 36px; }
    .operating-model-image { object-position: 69% center; }
    .operating-model .eyebrow { margin-bottom: 17px; font-size: 8px; letter-spacing: .27em; }
    .operating-model h2 { font-size: clamp(2.45rem, 11.5vw, 3.35rem); }
    .operating-model-points { grid-template-columns: 1fr; margin-top: 70px; }
    .operating-model-point, .operating-model-point + .operating-model-point { padding: 20px 0 0; border-left: 0; }
    .operating-model-point + .operating-model-point { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.36); }
    .operating-model-point p { font-size: 13px; }
    .operating-model-point h3 { font-size: 2rem; }
    .operating-model-point strong { font-size: 13px; }
    .nowrap { white-space: normal; }
    .hero-showcase { margin-top: 46px; }
    .hero-connector { width: 104px; top: calc(50% - 22px); }
    .hero-product-label { margin-left: 4px; }
    .hero-product-label strong { font-size: 18px; }
    .solutions { padding: 69px 0 73px; }
    .section-intro h2 { font-size: clamp(2.3rem, 10.5vw, 3rem); }
    .services-top h2 { font-size: clamp(2.45rem, 11.5vw, 3.35rem); }
    .section-note { font-size: 12px; }
    .product-card-head { min-height: 92px; padding: 17px 15px 14px; }
    .product-title { gap: 11px; }
    .product-title > img { width: 48px; height: 48px; }
    .product-title h3 { font-size: 20px; }
    .product-title p { font-size: 10px; }
    .product-card-head .text-link { font-size: 9px; }
    .product-card-description { min-height: 0; padding: 22px 17px 24px; }
    .product-card-description::before { right: 17px; left: 17px; }
    .product-card-description p { font-size: 1.35rem; line-height: 1.18; }
    .siteos-card .product-card-description p { width: 100%; max-width: 100%; }
    .audience-grid { grid-template-columns: 1fr; margin: 0 17px; }
    .audience-block { min-height: 0; padding: 20px 0 23px; }
    .audience-icon { width: 34px; height: 34px; margin-bottom: 6px; }
    .audience-icon svg, .audience-icon-providers svg { width: 32px; height: 32px; }
    .audience-block + .audience-block { padding-left: 0; border-top: 2px solid var(--card-accent, #17c8f3); border-left: 0; }
    .audience-block p { font-size: 1.12rem; line-height: 1.28; }
    .mindful-copy { min-height: 0; padding: 43px 17px 24px; }
    .mindful-copy::before { top: 20px; right: 17px; left: 17px; }
    .mindful-copy-text { max-width: none; }
    .audience-label { font-size: 12px; }
    .mindful-copy p { font-size: 13px; }
    .mindful-copy .arrow-link { max-width: none; margin-top: 12px; font-size: 10px; }
    .mindful-audience-grid { margin: 0 17px; }
    .mindful-audience-grid .audience-block,
    .mindful-audience-grid .audience-block + .audience-block { padding: 17px 0 20px; }
    .mindful-explore-link { margin: 0 0 6px; padding-top: 14px; }
    .services { padding: 56px 0 61px; }
    .services-top > p { margin-top: 0; }
    .service-columns { grid-template-columns: 1fr; gap: 36px; margin: 36px 0 0; }
    .service-column, .service-column + .service-column { min-height: 0; padding: 0 0 0 24px; border-left: 1px solid #cdd5e5; }
    .service-column + .service-column { padding-top: 31px; border-top: 1px solid #cdd5e5; border-left: 0; }
    .people-copy { padding: 52px 0 35px; }
    .people-copy h2 { font-size: clamp(2.45rem, 11.5vw, 3.3rem); }
    .people-image { min-height: 235px; }
    .life-sciences-stamp { right: 14px; bottom: 14px; width: 124px; height: 124px; padding: 15px; border-width: 2px; }
    .life-sciences-stamp-mark { margin: 1px 0 -1px; font-size: 12px; }
    .life-sciences-stamp strong { font-size: 34px; }
    .life-sciences-stamp-years { font-size: 9px; }
    .life-sciences-stamp-rule { width: 34px; }
    .life-sciences-stamp-focus { max-width: 78px; font-size: 5px; }
    .closing { padding: 52px 0 56px; }
    .closing-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
    .closing h2 { font-size: clamp(2.9rem, 13vw, 4rem); }
    .closing .button { width: auto; min-width: 140px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 27px 15px; }
    .footer-brand-wrap { grid-column: 1 / -1; }
    .footer-col:last-child { display: block; }
    .footer-bottom { display: block; }
    .footer-legal { flex-wrap: wrap; gap: 9px 15px; margin-top: 9px; }
}
@media (max-width: 768px) {
    .site-header { top: 0; left: 0; width: 100%; max-width: none; min-height: 66px; padding: max(12px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); border-radius: 0; transform: none; }
}
.mobile-nav-heading { margin: 20px 0 4px; color: #64708b; font-size: 11px; font-weight: 800; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.mobile-nav-heading:first-child { margin-top: 0; }
.mobile-nav-links > a:not(.mobile-nav-cta) { min-height: 44px; padding: 8px; border-radius: 10px; font-size: 16px; font-weight: 600; }
.mobile-nav-links > a:not(.mobile-nav-cta):hover { background: #f0f2f7; color: var(--violet); }
.mobile-nav-links > a.mobile-nav-cta { min-height: 48px; padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.external-interstitial { position: fixed; inset: 0; z-index: 4000; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.external-interstitial.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.external-interstitial-backdrop { position: absolute; inset: 0; background: rgba(4, 13, 40, .72); }
.external-interstitial-dialog { position: relative; width: min(100%, 560px); padding: 54px 52px 48px; border: 1px solid rgba(255, 255, 255, .76); border-radius: 18px; background: var(--warm); box-shadow: 0 24px 70px rgba(4, 13, 40, .28); color: var(--ink); transform: translateY(12px) scale(.98); transition: transform .2s ease; }
.external-interstitial.is-open .external-interstitial-dialog { transform: translateY(0) scale(1); }
.external-interstitial-dialog h2 { max-width: 430px; margin: 0; font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1.02; }
.external-interstitial-dialog p { max-width: 460px; margin: 24px 0 0; color: #263566; font-size: 16px; line-height: 1.55; }
.external-interstitial-dialog .external-interstitial-eyebrow { max-width: 460px; margin: 20px 0 18px; color: var(--violet); font-size: 10px; font-weight: 600; letter-spacing: .28em; line-height: 1.4; text-transform: uppercase; }
.external-interstitial-dialog p + p { margin-top: 16px; }
.external-interstitial-dialog .external-interstitial-followup { margin-top: 22px; color: var(--ink); }
.external-interstitial-dialog .external-interstitial-followup strong { font-weight: 700; }
.external-interstitial-close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; background: rgba(15, 23, 42, .06); color: var(--ink); cursor: pointer; font-size: 25px; line-height: 1; }
.external-interstitial-close:hover, .external-interstitial-close:focus-visible { background: rgba(147, 14, 181, .12); color: var(--violet); }
.external-interstitial-continue { margin-top: 30px; min-width: 0; cursor: pointer; }
.external-interstitial-continue:hover, .external-interstitial-continue:focus-visible { background: var(--violet); color: #fff; transform: translateY(-2px); }
.external-interstitial-continue span { color: var(--cyan); font-size: inherit; line-height: 1; }
.external-interstitial-dialog button:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }
@media (max-width: 620px) {
    .external-interstitial { padding: 18px; }
    .external-interstitial-dialog { padding: 52px 25px 30px; border-radius: 15px; }
    .external-interstitial-dialog h2 { font-size: clamp(1.9rem, 8.5vw, 2.7rem); }
    .external-interstitial-dialog p { margin-top: 20px; font-size: 14px; }
    .external-interstitial-continue { width: 100%; margin-top: 25px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
