:root {
    --bg: #F5F8FA;
    --surface: #FFFFFF;
    --surface-2: #EEF2F5;
    --ink: #0F1E2B;
    --ink-dim: #4F5F6C;
    --muted: #8A97A1;
    --primary: #0A4A8F;
    --primary-dark: #073762;
    --primary-soft: #E8F0F9;
    --edge: #FF7A29;
    --edge-soft: #FFF0E4;
    --cloud: #8B96A1;
    --cloud-soft: #EEF0F2;
    --line: #E1E7EC;
    --line-strong: #CBD4DB;
    --radius: 10px;
    --shadow: 0 1px 2px rgba(15, 30, 43, 0.04), 0 8px 24px rgba(15, 30, 43, 0.05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--ink);
}

p {
    margin: 0;
}

section {
    padding: 80px 0;
}

.alt {
    background: var(--surface);
}

/* NAV */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(245, 248, 250, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.logo .mark {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--primary);
    position: relative;
    flex: none;
}

.logo .mark::after {
    content: '';
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--edge);
}

.logo small {
    font-weight: 500;
    color: var(--ink-dim);
    font-size: 12px;
    display: block;
    letter-spacing: 0.02em;
}

.navlinks {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-dim);
}

.navlinks a:hover {
    color: var(--primary);
}

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

.btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 7px;
    border: 1px solid var(--line-strong);
    color: var(--ink);
    white-space: nowrap;
    transition: .15s;
}

.btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-solid {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-edge {
    background: var(--edge);
    border-color: var(--edge);
    color: #fff;
}

.btn-edge:hover {
    background: #E5661A;
    border-color: #E5661A;
    color: #fff;
}

/* HERO */
.hero {
    padding: 76px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--primary-soft);
    border: 1px solid #D4E3F3;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
}

.hero p.lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-dim);
    margin-top: 20px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.race {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 26px 20px;
    box-shadow: var(--shadow);
}

.race-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
}

.race-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lane {
    display: grid;
    grid-template-columns: 96px 1fr 78px;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.lane:last-of-type {
    margin-bottom: 0;
}

.lane-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--ink-dim);
}

.lane-label b {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.track {
    position: relative;
    height: 30px;
    border-radius: 7px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    overflow: hidden;
}

.track-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 7px;
}

.track.edge-track .track-fill {
    background: var(--edge);
    animation: edgePulse 1.4s ease-in-out infinite;
}

.track.cloud-track .track-fill {
    background: var(--cloud);
    animation: cloudPulse 2.6s ease-in-out infinite;
}

@keyframes edgePulse {
    0% {
        width: 0%;
        opacity: .55
    }

    45% {
        width: 96%;
        opacity: .85
    }

    55% {
        width: 96%;
        opacity: .85
    }

    100% {
        width: 0%;
        opacity: .55
    }
}

@keyframes cloudPulse {
    0% {
        width: 0%;
        opacity: .4
    }

    47% {
        width: 96%;
        opacity: .6
    }

    53% {
        width: 96%;
        opacity: .6
    }

    100% {
        width: 0%;
        opacity: .4
    }
}

.lane-ms {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 20px;
    text-align: right;
    font-weight: 600;
}

.lane-ms.edge-ms {
    color: var(--edge);
}

.lane-ms.cloud-ms {
    color: var(--cloud);
}

.lane-ms span {
    font-size: 11px;
    color: var(--muted);
    margin-left: 2px;
    font-weight: 400;
}

.race-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--muted);
}

/* PARTNER STRIP */
.partners {
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partners-head {
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}

.partner-chip {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink-dim);
    opacity: 0.75;
    letter-spacing: 0.01em;
}

/* SECTION HEAD */
.section-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--edge);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head.left {
    text-align: left;
    margin: 0 0 48px;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 800;
}

.section-head p {
    color: var(--ink-dim);
    font-size: 15.5px;
    line-height: 1.65;
    margin-top: 14px;
}

/* SOLUTIONS GRID */
.cards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 26px;
    transition: .15s;
}

.card:hover {
    box-shadow: var(--shadow);
    border-color: var(--line-strong);
    transform: translateY(-2px);
}

.card .ic {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.card h3 {
    font-size: 17.5px;
    font-weight: 700;
    margin-bottom: 9px;
}

.card p {
    font-size: 14.5px;
    color: var(--ink-dim);
    line-height: 1.65;
}

.card .more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
}

/* HOW WE HELP */
.help3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.help-tile {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
}

.help-tile .ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--edge-soft);
    color: var(--edge);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.help-tile h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.help-tile p {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.6;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.stat {
    background: var(--surface);
    padding: 26px 22px;
}

.stat b {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    color: var(--primary);
    font-weight: 600;
}

.stat span {
    font-size: 12.5px;
    color: var(--muted);
    display: block;
    margin-top: 6px;
}

/* PROCESS */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.step {
    position: relative;
    padding-right: 20px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 19px;
    right: -10px;
    width: 20px;
    height: 1px;
    background: var(--line-strong);
}

.step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #fff;
    background: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 600;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.6;
}

/* INDUSTRIES */
.industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ind {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 20px;
    background: var(--surface);
}

.ind .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--edge);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ind h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 8px;
}

.ind p {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.55;
}

/* RESOURCES */
.cards3.resources .card {
    padding: 0;
    overflow: hidden;
}

.res-img {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-soft), var(--surface-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.res-body {
    padding: 22px 22px 24px;
}

.res-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-body h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 8px 0;
}

.res-body p {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.6;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background: var(--primary-dark);
    color: #fff;
    padding: 44px 40px;
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info p.lead2 {
    color: #C9DBEE;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.cinfo-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.cinfo-row .ic {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: #fff;
}

.cinfo-row b {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 3px;
}

.cinfo-row span {
    font-size: 13.5px;
    color: #C9DBEE;
    line-height: 1.55;
}

.contact-form {
    padding: 44px 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-dim);
}

.field input,
.field select,
.field textarea {
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    padding: 11px 13px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.field textarea {
    resize: vertical;
    min-height: 96px;
}

.form-submit {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.form-note {
    font-size: 12px;
    color: var(--muted);
}

.form-success {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
    display: none;
}

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .chev {
    flex: none;
    color: var(--primary);
    transition: transform .15s;
}

.faq-item[open] summary .chev {
    transform: rotate(180deg);
}

.faq-item p {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.65;
    margin-top: 12px;
}

footer {
    background: var(--primary-dark);
    color: #C9DBEE;
    padding: 56px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-grid h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.foot-grid a {
    display: block;
    font-size: 13.5px;
    color: #C9DBEE;
    margin-bottom: 10px;
}

.foot-grid a:hover {
    color: #fff;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
}

.foot-logo .mark {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--edge);
    flex: none;
}

.foot-grid p.about {
    font-size: 13.5px;
    color: #9FB6CE;
    line-height: 1.65;
    max-width: 280px;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: 12.5px;
    color: #8FA6BF;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .cards3,
    .help3 {
        grid-template-columns: 1fr;
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }

    .step:nth-child(2)::after {
        display: none;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 28px;
    }

    .navlinks {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .track-fill {
        animation: none !important;
        width: 55%;
    }
}

