:root {
    color-scheme: light;
    --blue: #3A6EA5;
    --blue-strong: #255a8f;
    --ink: #040707;
    --navy: #182E43;
    --bg: #f7f9fb;
    --surface: #ffffff;
    --surface-2: #eef3f7;
    --text: #13202a;
    --muted: #5e6f7d;
    --line: #d7e0e8;
    --shadow: 0 18px 60px rgba(24, 46, 67, .14);
    --radius: 8px;
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #040707;
    --surface: #0d151b;
    --surface-2: #122232;
    --text: #edf5fb;
    --muted: #a9bac8;
    --line: #22394d;
    --shadow: 0 20px 70px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(58, 110, 165, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(58, 110, 165, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: .6rem .9rem;
    background: var(--blue);
    color: #fff;
    z-index: 20;
}

.skip-link:focus { top: 1rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 196px;
    flex: 0 0 auto;
}

.logo-dark,
[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 600;
    padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--surface-2);
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle,
.nav-toggle {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--radius);
    cursor: pointer;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.theme-toggle .moon,
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: inline; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(58, 110, 165, .24);
}

.button:hover {
    background: var(--blue-strong);
}

.button-small {
    min-height: 40px;
    padding: 0 14px;
}

.button-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
    box-shadow: none;
}

.button-ghost:hover {
    background: var(--surface-2);
}

.section,
.hero,
.page-hero,
.cta-band,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.hero {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
    gap: 56px;
    align-items: center;
    padding: 58px 0 48px;
}

.hero-premium {
    padding-bottom: 30px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    color: var(--text);
}

h1 {
    font-size: clamp(2.85rem, 4.65vw, 4.85rem);
    max-width: 760px;
}

h2 {
    font-size: clamp(2rem, 2.75vw, 3rem);
}

h3 {
    font-size: 1.32rem;
}

p {
    margin: 0;
}

.lead {
    margin-top: 22px;
    font-size: clamp(1.08rem, 1.22vw, 1.24rem);
    color: var(--muted);
    max-width: 680px;
}

.hero-actions,
.cta-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.cred-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.cred-row div {
    min-height: 98px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.cred-row strong,
.cred-row span {
    display: block;
}

.cred-row strong {
    color: var(--text);
    font-size: 1rem;
}

.cred-row span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.35;
}

.proof-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(24, 46, 67, .08);
    overflow: hidden;
}

.proof-strip div {
    min-height: 94px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    color: var(--text);
    font-size: 1.03rem;
}

.proof-strip span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.35;
}

.hero-panel {
    position: relative;
    min-height: 370px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 30% 20%, rgba(58,110,165,.24), transparent 38%),
        linear-gradient(135deg, var(--surface), var(--surface-2));
    box-shadow: var(--shadow);
}

.hero-panel-photo {
    background: var(--navy);
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-panel-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 7, 7, .04), rgba(4, 7, 7, .62));
}

.hero-mark {
    width: min(62%, 310px);
    opacity: .92;
    filter: drop-shadow(0 28px 36px rgba(24,46,67,.22));
}

.signal-stack {
    position: absolute;
    inset: auto 22px 22px;
    display: grid;
    gap: 10px;
    z-index: 1;
}

.signal {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .88);
    border-radius: var(--radius);
    color: #13202a;
    backdrop-filter: blur(10px);
}

.signal strong {
    color: var(--blue);
    font-size: .78rem;
    text-transform: uppercase;
}

.section {
    padding: 68px 0;
}

.problem-section {
    padding-top: 42px;
}

.problem-panel {
    display: grid;
    gap: 18px;
    font-size: 1.06rem;
}

.leadership-section .content-panel > p,
.founder-band p {
    color: var(--muted);
}

.founder-band {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, var(--blue)), var(--surface));
    box-shadow: var(--shadow);
}

.founder-profile {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.founder-photo-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-profile p:not(.eyebrow):not(.lead) {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.founder-band div:last-child {
    display: grid;
    gap: 16px;
}

.industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.industry-grid .card {
    min-height: 230px;
}

.pathway-grid {
    gap: 14px;
}

.pathway-card {
    min-height: 235px;
    position: relative;
}

.pathway-card::before {
    content: "";
    width: 34px;
    height: 4px;
    border-radius: 99px;
    background: var(--blue);
}

.pathway-card a {
    color: var(--blue-strong);
}

.founder-band-feature {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 78%, #dceaf5), var(--surface));
}

.process-section {
    padding-top: 52px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-grid div {
    min-height: 245px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(24, 46, 67, .07);
}

.process-grid strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: .95rem;
}

.process-grid h3 {
    margin-bottom: 12px;
}

.process-grid p {
    color: var(--muted);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fit-panel {
    min-height: 390px;
}

.fit-panel h2 {
    font-size: clamp(1.75rem, 2.2vw, 2.45rem);
}

.muted-fit {
    background: color-mix(in srgb, var(--surface) 70%, var(--surface-2));
}

.section-media {
    padding-top: 0;
    padding-bottom: 18px;
}

.page-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-header p {
    color: var(--muted);
    max-width: 560px;
    font-size: 1.02rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card,
.content-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(24, 46, 67, .07);
}

.card {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card p {
    font-size: 1rem;
}

.card p,
.content-panel p,
.split p,
.page-hero p,
.site-footer p {
    color: var(--muted);
}

.card a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: start;
}

.content-panel {
    padding: 28px;
}

.contact-section {
    padding-top: 34px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
    gap: 34px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 106px;
}

.contact-copy .lead + .lead {
    margin-top: 14px;
}

.contact-panel {
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, var(--blue)), var(--surface));
}

.contact-result-hero {
    max-width: 900px;
}

.contact-result-section {
    padding-top: 22px;
}

.contact-result-panel {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px;
}

.contact-result-panel h2 {
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    margin-bottom: 12px;
}

.contact-result-panel p {
    font-size: 1.08rem;
}

.result-success {
    border-left: 4px solid var(--blue);
}

.result-error {
    border-left: 4px solid #a6533a;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.form-heading {
    padding-bottom: 4px;
}

.form-heading h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
}

.contact-form label span {
    font-size: .92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--bg) 72%, var(--surface));
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.contact-form select {
    min-height: 51px;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 18%, transparent);
    background: var(--surface);
}

.contact-form .button {
    width: fit-content;
    min-width: 180px;
}

.site-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    max-width: 560px;
    color: var(--muted);
    font-size: .92rem;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-methods > a,
.protected-email {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    width: fit-content;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(24, 46, 67, .06);
}

.protected-email {
    gap: 10px;
    min-width: 126px;
    justify-content: center;
}

.email-reveal {
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0;
    white-space: nowrap;
}

.email-reveal:hover,
.email-output a:hover {
    text-decoration: underline;
}

.email-output a {
    color: var(--blue);
}

.email-noscript {
    color: var(--muted);
    font-size: .9rem;
}

.site-footer .protected-email {
    margin: 8px 0;
}

.site-footer .protected-email a {
    display: inline;
    margin: 0;
    color: var(--blue);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--blue);
    box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--surface) 70%, transparent);
}

.two-column-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 34px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item h2 {
    font-size: clamp(1.35rem, 1.7vw, 1.8rem);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 1.05rem;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.metric {
    border-left: 3px solid var(--blue);
    background: var(--surface-2);
    padding: 16px;
    border-radius: var(--radius);
}

.metric strong {
    display: block;
    font-size: 1.4rem;
}

.page-hero {
    padding: 62px 0 38px;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 3.6vw, 4.05rem);
    max-width: 860px;
}

.breadcrumb {
    color: var(--muted);
    margin-bottom: 18px;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--blue);
}

.two-column-copy {
    columns: 2 320px;
    column-gap: 42px;
}

.two-column-copy p {
    break-inside: avoid;
    margin-bottom: 18px;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.cta-band .eyebrow {
    color: #9fc8ee;
}

.cta-band .button-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.28);
}

.site-footer {
    padding: 54px 0 28px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 26px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 16px;
}

.site-footer h2 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.site-footer a {
    display: block;
    color: var(--muted);
    margin: 8px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-bottom span:last-child {
    display: flex;
    gap: 16px;
}

@media (max-width: 920px) {
    .site-nav {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .brand {
        width: 180px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
    }

    .site-nav.open .nav-links,
    .site-nav.open .nav-actions {
        display: flex;
    }

    .site-nav.open .nav-links {
        flex-direction: column;
        align-items: stretch;
        order: 3;
    }

    .site-nav.open .nav-actions {
        order: 4;
    }

    .hero,
    .split,
    .contact-layout,
    .founder-profile,
    .founder-band,
    .fit-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }

    .hero {
        min-height: auto;
        padding-top: 44px;
    }

    .hero-panel {
        min-height: 360px;
    }

    .grid,
    .cred-row,
    .proof-strip,
    .industry-grid,
    .process-grid,
    .two-column-list,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-strip div:nth-child(2) {
        border-right: 0;
    }

    .proof-strip div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .grid,
    .cred-row,
    .proof-strip,
    .industry-grid,
    .process-grid,
    .fit-grid,
    .two-column-list,
    .field-grid,
    .metric-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .proof-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-strip div:last-child {
        border-bottom: 0;
    }

    .section-header {
        display: block;
    }

    .hero-panel {
        min-height: 330px;
    }

    .signal {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .cta-band {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
