:root {
    --navy-950: #061224;
    --navy-900: #071a33;
    --navy-800: #0d2a4d;
    --blue-600: #4058c7;
    --blue-500: #5872df;
    --blue-100: #e8edff;
    --red-600: #d92d2b;
    --red-500: #ef403d;
    --red-100: #fff0ef;
    --cyan-400: #42b8e7;
    --ink-950: #101828;
    --ink-700: #344054;
    --ink-600: #475467;
    --ink-500: #667085;
    --line: #dfe5ee;
    --soft: #f6f8fc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(6, 18, 36, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id],
article[id] {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    color: var(--ink-950);
    background: var(--white);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--navy-950);
    background: var(--white);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--white);
    background: #020617;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color 180ms ease, background-color 180ms ease;
}

.brand:hover .brand-mark {
    background: var(--blue-600);
}

.brand-name {
    color: #020617;
    font-size: 1.125rem;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 8px 12px;
    border-radius: 12px;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.site-nav .nav-cta {
    margin-left: 12px;
    padding: 10px 16px;
    border: 1px solid var(--blue-600);
    border-radius: 10px;
    color: var(--white);
    background: var(--blue-600);
}

.site-nav .nav-cta:hover {
    border-color: #3048b1;
    color: var(--white);
    background: #3048b1;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--navy-950);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #102b52 100%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.hero-glow-one {
    width: 460px;
    height: 460px;
    top: -180px;
    left: -150px;
    background: rgba(64, 88, 199, 0.22);
}

.hero-glow-two {
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -210px;
    background: rgba(239, 64, 61, 0.18);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 720px;
    padding: 104px 0 96px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.eyebrow,
.section-kicker,
.card-label,
.lane-heading > div > p,
.role-card > p {
    margin: 0;
    color: var(--blue-600);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #9fb1ff;
}

.hero h1 {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: clamp(3.3rem, 6vw, 5.9rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: #8fd8f5;
}

.hero-lead {
    max-width: 690px;
    margin: 28px 0 0;
    color: #c7d4e8;
    font-size: 1.16rem;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 48px;
    padding: 12px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    border-color: var(--red-600);
    color: var(--white);
    background: var(--red-600);
}

.button-primary:hover {
    border-color: #b42320;
    color: var(--white);
    background: #b42320;
}

.button-secondary {
    border-color: #607392;
    color: var(--white);
    background: transparent;
}

.button-secondary:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.button-light {
    border-color: var(--white);
    color: var(--navy-900);
    background: var(--white);
}

.button-light:hover {
    border-color: var(--blue-100);
    color: var(--navy-950);
    background: var(--blue-100);
}

.hero-signals {
    margin: 42px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.hero-signals li {
    padding: 15px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.hero-signals strong,
.hero-signals span {
    display: block;
}

.hero-signals strong {
    color: var(--white);
    font-size: 0.92rem;
}

.hero-signals span {
    margin-top: 3px;
    color: #9db0cc;
    font-size: 0.75rem;
}

.hero-visual {
    position: relative;
    min-height: 510px;
    border-radius: 28px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 32px -24px -24px 32px;
    border: 1px solid rgba(95, 123, 234, 0.45);
    border-radius: 28px;
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(6, 18, 36, 0.04) 20%, rgba(6, 18, 36, 0.86) 100%);
}

.hero-panel {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 19px 21px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(6, 18, 36, 0.82);
    backdrop-filter: blur(14px);
}

.hero-panel p {
    margin: 0 0 4px;
    color: #91a5c4;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel strong {
    font-size: 1.05rem;
}

.status-chip {
    position: absolute;
    z-index: 3;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(6, 18, 36, 0.88);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    font-size: 0.75rem;
    font-weight: 800;
}

.status-chip span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(66, 184, 231, 0.14);
}

.status-chip-one {
    top: 28px;
    left: -26px;
}

.status-chip-two {
    top: 86px;
    right: -20px;
}

.status-chip-two span {
    background: var(--red-500);
    box-shadow: 0 0 0 5px rgba(239, 64, 61, 0.14);
}

.section {
    padding: 116px 0;
}

.section-soft {
    background: var(--soft);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 92px;
    align-items: start;
}

.intro h2,
.section-heading h2,
.delivery h2,
.contact h2 {
    margin: 15px 0 0;
    font-size: clamp(2.35rem, 4.6vw, 4.25rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.intro-copy {
    padding-top: 22px;
    border-top: 2px solid var(--blue-600);
}

.intro-copy p {
    margin: 0;
    color: var(--ink-600);
    font-size: 1.1rem;
    line-height: 1.85;
}

.intro-copy p + p {
    margin-top: 18px;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 54px;
}

.section-heading > p:last-child,
.section-heading-split > p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--ink-600);
    font-size: 1.06rem;
}

.capability-lane {
    margin-top: 30px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(6, 18, 36, 0.045);
}

.capability-lane-dark {
    border-color: var(--navy-900);
    color: var(--white);
    background: var(--navy-900);
}

.capability-lane-accent {
    border-color: #d4dbff;
    background: linear-gradient(135deg, #f5f7ff, var(--white));
}

.lane-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.lane-heading > span {
    min-width: 44px;
    padding-top: 4px;
    color: var(--red-500);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.lane-heading > div > p {
    color: var(--blue-600);
}

.capability-lane-dark .lane-heading > div > p {
    color: #9fb1ff;
}

.lane-heading h3 {
    margin: 6px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

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

.capability-card {
    min-height: 224px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.capability-lane-dark .capability-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.card-label {
    color: var(--red-600);
}

.capability-lane-dark .card-label {
    color: #8fd8f5;
}

.capability-card h4 {
    margin: 14px 0 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.capability-card p:last-child {
    margin: 13px 0 0;
    color: var(--ink-600);
    font-size: 0.91rem;
    line-height: 1.72;
}

.capability-lane-dark .capability-card p:last-child {
    color: #b9c7dc;
}

.delivery {
    color: var(--white);
    background: var(--navy-950);
}

.delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: 90px;
    align-items: start;
}

.section-kicker-light {
    color: #9fb1ff;
}

.delivery-copy > p:not(.section-kicker) {
    margin: 24px 0 0;
    color: #bdcbe0;
    font-size: 1.03rem;
    line-height: 1.82;
}

.text-link {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 850;
    text-decoration: none;
}

.text-link-light {
    color: #b5c4ff;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.role-stack {
    display: grid;
    gap: 16px;
}

.role-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.role-card-primary {
    border-color: rgba(111, 137, 241, 0.65);
    background: linear-gradient(135deg, rgba(64, 88, 199, 0.3), rgba(255, 255, 255, 0.06));
}

.role-card-quiet {
    display: grid;
    grid-template-columns: 0.42fr 0.72fr 1.4fr;
    gap: 16px;
    align-items: start;
}

.role-card > p:first-child {
    color: #9fb1ff;
}

.role-card h3 {
    margin: 8px 0 0;
    font-size: 1.35rem;
}

.role-card ul {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    list-style: none;
}

.role-card li,
.role-card-quiet > p:last-child {
    position: relative;
    margin: 0;
    padding-left: 15px;
    color: #c2cfe2;
    font-size: 0.91rem;
}

.role-card li::before,
.role-card-quiet > p:last-child::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red-500);
}

.role-card-quiet > p:last-child {
    padding-left: 0;
    line-height: 1.7;
}

.role-card-quiet > p:last-child::before {
    display: none;
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
}

.process-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: var(--line);
    list-style: none;
}

.process-grid li {
    min-height: 240px;
    padding: 30px;
    background: var(--white);
}

.process-grid span,
.principles-grid span {
    color: var(--red-600);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.process-grid h3,
.principles-grid h3 {
    margin: 28px 0 0;
    font-size: 1.25rem;
}

.process-grid p,
.principles-grid p {
    margin: 12px 0 0;
    color: var(--ink-600);
    font-size: 0.92rem;
}

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

.principles-grid article {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.contact {
    color: var(--white);
    background: linear-gradient(130deg, var(--blue-600), #263c9d 72%, var(--navy-800));
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 90px;
    align-items: center;
}

.contact-copy > p:not(.section-kicker) {
    max-width: 720px;
    margin: 24px 0 0;
    color: #e3e8ff;
    font-size: 1.05rem;
}

.contact .button {
    margin-top: 30px;
}

.contact-details {
    margin: 0;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(7, 26, 51, 0.28);
}

.contact-details div + div {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details dt {
    color: #c7d1ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 7px 0 0;
    font-size: 1.08rem;
    font-weight: 800;
}

.contact-details a {
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer {
    border-top: 1px solid #1e293b;
    color: var(--white);
    background: #020617;
}

.footer-main {
    padding: 64px 0 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 1fr) minmax(180px, 1fr);
    align-items: start;
    gap: 40px;
}

.footer-brand .brand-mark {
    border: 1px solid #334155;
    background: #0f172a;
}

.footer-brand:hover .brand-mark {
    border-color: var(--blue-500);
    background: var(--blue-600);
}

.footer-brand .brand-name {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-intro > p {
    max-width: 460px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-heading {
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 650;
}

.footer-column ul {
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.footer-column a,
.footer-legal a {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-column a:hover,
.footer-legal a:hover {
    color: var(--white);
}

.footer-legal {
    padding: 28px 0 36px;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.7;
}

.footer-legal p {
    margin: 0;
}

.footer-legal p + p {
    margin-top: 12px;
}

.footer-legal strong {
    color: #cbd5e1;
    font-weight: 650;
}

.footer-legal a {
    font-size: inherit;
}

.footer-legal-meta {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

:focus-visible {
    outline: 3px solid #f8b54a;
    outline-offset: 4px;
}

@media (max-width: 1040px) {
    .hero-grid {
        grid-template-columns: 1fr 0.86fr;
        gap: 48px;
    }

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

    .delivery-grid,
    .contact-grid {
        gap: 56px;
    }
}

@media (max-width: 840px) {
    .shell {
        width: calc(100% - 32px);
    }

    .nav-wrap {
        min-height: 74px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        right: 0;
        left: 0;
        height: calc(100vh - 74px);
        padding: 28px 22px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
        background: var(--white);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 14px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .site-nav a:hover {
        background: var(--soft);
    }

    .site-nav .nav-cta {
        margin-top: 10px;
        margin-left: 0;
        text-align: center;
    }

    .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);
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding: 84px 0 76px;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 660px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .intro-grid,
    .delivery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .role-card-quiet {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-intro {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .shell {
        width: calc(100% - 28px);
    }

    .section {
        padding: 82px 0;
    }

    .hero-grid {
        padding: 70px 0 62px;
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4.25rem);
    }

    .hero-lead {
        font-size: 1.02rem;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-signals {
        grid-template-columns: 1fr;
    }

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

    .hero-visual::before {
        inset: 18px -8px -12px 18px;
    }

    .status-chip-one {
        top: 18px;
        left: -4px;
    }

    .status-chip-two {
        top: 68px;
        right: -5px;
    }

    .intro h2,
    .section-heading h2,
    .delivery h2,
    .contact h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .capability-lane {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .lane-heading {
        gap: 10px;
    }

    .lane-heading > span {
        min-width: 34px;
    }

    .lane-grid,
    .process-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .capability-card,
    .process-grid li {
        min-height: auto;
    }

    .role-card {
        padding: 22px;
    }

    .role-card ul {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 52px 0 38px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-intro {
        grid-column: auto;
    }

    .footer-legal {
        padding: 24px 0 30px;
    }

    .footer-legal-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
