.home-page {
    --home-ink: #071f2d;
    --home-ink-soft: #12384c;
    --home-blue: #0079b8;
    --home-cyan: #20b9dc;
    --home-pale: #eef5f7;
    --home-line: #cbdbe2;
    --home-muted: #587080;
    --home-dark: #061d29;
    --home-white: #ffffff;
}

/* Corporate hero */

.corporate-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(86px, 10vw, 148px);
    border-bottom: 1px solid var(--home-line);
    background:
        linear-gradient(rgba(18, 56, 76, 0.045) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(18, 56, 76, 0.045) 1px,
            transparent 1px),
        linear-gradient(135deg,
            #f8fbfc 0%,
            #edf5f7 100%);
    background-size:
        38px 38px,
        38px 38px,
        auto;
}

.corporate-hero::after {
    position: absolute;
    top: 0;
    right: 0;
    width: min(42vw, 680px);
    height: 4px;
    background: linear-gradient(90deg,
            var(--home-blue),
            var(--home-cyan));
    content: "";
}

.corporate-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(56px, 8vw, 118px);
    align-items: center;
}

.corporate-hero-content {
    max-width: 720px;
}

.corporate-hero-content .eyebrow {
    margin-bottom: 24px;
    color: var(--home-blue);
}

.corporate-hero-content h1 {
    max-width: 12ch;
    margin-bottom: 30px;
    color: var(--home-ink);
    font-size: clamp(3rem, 6vw, 5.85rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.corporate-hero-lead {
    max-width: 630px;
    margin-bottom: 18px;
    color: var(--home-ink-soft);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.5;
}

.corporate-hero-detail {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--home-muted);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Engineering path panel */

.engineering-path {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(32, 185, 220, 0.32);
    border-radius: 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.038) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.038) 1px,
            transparent 1px),
        var(--home-dark);
    background-size:
        34px 34px,
        34px 34px,
        auto;
    color: var(--home-white);
    box-shadow:
        0 28px 70px rgba(7, 31, 45, 0.18);
}

.engineering-path::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--home-cyan) 0 36%,
            var(--home-blue) 36% 100%);
    content: "";
}

.engineering-path-topline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    color: #8edff1;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Consolas,
        monospace;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
}

.engineering-path h2 {
    max-width: 13ch;
    margin-bottom: 34px;
    color: var(--home-white);
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.engineering-path-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.engineering-path-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-block: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.engineering-path-list>li>span {
    color: var(--home-cyan);
    font-family:
        ui-monospace,
        SFMono-Regular,
        Consolas,
        monospace;
    font-size: 0.76rem;
}

.engineering-path-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--home-white);
    font-size: 1rem;
}

.engineering-path-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Company facts */

.corporate-facts {
    border-bottom: 1px solid var(--home-line);
    background: var(--home-white);
}

.corporate-facts-grid {
    display: grid;
    grid-template-columns:
        0.72fr 1.35fr 1.2fr 1fr;
}

.corporate-facts-grid>div {
    min-height: 118px;
    padding: 27px 24px;
    border-left: 1px solid var(--home-line);
}

.corporate-facts-grid>div:last-child {
    border-right: 1px solid var(--home-line);
}

.corporate-facts span {
    display: block;
    margin-bottom: 10px;
    color: var(--home-blue);
    font-family:
        ui-monospace,
        SFMono-Regular,
        Consolas,
        monospace;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
}

.corporate-facts strong {
    display: block;
    color: var(--home-ink);
    font-size: 0.98rem;
    line-height: 1.4;
}

/* Shared homepage section heading */

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: 48px;
}

.home-section-heading .eyebrow {
    margin-bottom: 18px;
    color: var(--home-blue);
}

.home-section-heading h2 {
    max-width: 18ch;
    margin-bottom: 0;
    color: var(--home-ink);
    font-size: clamp(2.25rem, 4.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-section-heading>p {
    max-width: 50ch;
    margin: 0;
    color: var(--home-muted);
}

/* =========================================================
   BLOCK 02 — WHAT WE DO
   ========================================================= */

.home-solutions {
    position: relative;
    overflow: hidden;
    padding-block: clamp(68px, 7vw, 104px);
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #ffffff 56%,
            #f4f9fb 100%);
}

.home-solutions::before {
    position: absolute;
    top: 0;
    right: -12%;
    width: 48%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 25%,
            rgba(18, 155, 210, 0.09),
            transparent 62%);
    content: "";
    pointer-events: none;
}

.home-solutions>.container {
    position: relative;
    z-index: 1;
}

/* Section heading */

.home-solutions .home-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(280px, 0.7fr);
    gap: clamp(36px, 7vw, 100px);
    align-items: end;
    margin-bottom: clamp(34px, 4vw, 50px);
}

.home-solutions .home-section-heading .eyebrow {
    margin-bottom: 16px;
    color: var(--home-blue);
}

.home-solutions .home-section-heading h2 {
    max-width: 17ch;
    margin-bottom: 0;
    color: var(--home-ink);
    font-size: clamp(2.3rem, 3.9vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.home-solutions .home-section-heading>p {
    max-width: 46ch;
    margin: 0;
    color: var(--home-muted);
    font-size: 1.02rem;
}

/* Asymmetrical solution layout */

.solution-list {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: clamp(14px, 1.6vw, 22px);
}

.solution-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--home-line);
}

.solution-item::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--home-blue);
    content: "";
}

.solution-item-copy {
    position: relative;
    z-index: 1;
}

.solution-number {
    display: block;
    margin-bottom: clamp(22px, 3vw, 38px);
    color: var(--home-blue);
    font-family: var(--font-technical);
    font-size: clamp(2.1rem, 3.4vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.06em;
}

.solution-label {
    margin-bottom: 12px;
    color: var(--home-blue);
    font-family: var(--font-technical);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.solution-item h3 {
    max-width: 16ch;
    margin-bottom: 14px;
    color: var(--home-ink);
    font-size: clamp(1.65rem, 2.4vw, 2.6rem);
    line-height: 1.06;
    letter-spacing: -0.042em;
}

.solution-item-copy>p:last-child {
    max-width: 45ch;
    margin: 0;
    color: var(--home-muted);
}

/* Route 01 — New development and hardware image */

.solution-item--feature {
    display: flex;
    grid-column: span 7;
    grid-row: span 2;
    flex-direction: column;
    padding: 0;
    background: #f8f7f3;
}

.solution-item--feature .solution-item-copy {
    padding:
        clamp(30px, 3.5vw, 48px) clamp(30px, 3.5vw, 48px) clamp(26px, 3vw, 38px);
}

.solution-item--feature .solution-number {
    margin-bottom: clamp(26px, 3.5vw, 46px);
}

.solution-media {
    position: relative;
    flex: 1 1 300px;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    background: #f1eee7;
}

.solution-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background:
        linear-gradient(180deg,
            transparent,
            rgba(5, 25, 36, 0.72));
    content: "";
    pointer-events: none;
}

.solution-media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center 48%;
    transition: transform 500ms ease;
}

.solution-item--feature:hover .solution-media img {
    transform: scale(1.025);
}

.solution-media figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    left: 24px;
    color: #ffffff;
    font-family: var(--font-technical);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Route 02 — Adaptation */

.solution-item--adapt {
    grid-column: span 5;
    min-height: 300px;
    padding: clamp(30px, 3.5vw, 48px);
    background:
        linear-gradient(145deg,
            #f4fafd 0%,
            #e7f3f8 100%);
}

.solution-item--adapt::after {
    position: absolute;
    right: -74px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(0, 120, 189, 0.16);
    border-radius: 50%;
    content: "";
}

.solution-item--adapt .solution-item-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.solution-item--adapt .solution-item-copy>p:last-child {
    margin-top: auto;
}

/* Route 03 — System integration */

.solution-item--system {
    grid-column: span 5;
    min-height: 300px;
    padding: clamp(30px, 3.5vw, 48px);
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg,
            #082332 0%,
            #0b3447 100%);
}

.solution-item--system::before {
    background:
        linear-gradient(90deg,
            var(--home-blue),
            var(--cyan-400));
}

.solution-item--system::after {
    position: absolute;
    right: -20%;
    bottom: -32%;
    width: 78%;
    height: 72%;
    border: 1px solid rgba(69, 199, 233, 0.26);
    transform: rotate(-18deg);
    content: "";
}

.solution-item--system .solution-item-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.solution-item--system .solution-number,
.solution-item--system .solution-label {
    color: var(--cyan-400);
}

.solution-item--system h3 {
    color: #ffffff;
}

.solution-item--system .solution-item-copy>p:last-child {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.72);
}

/* Section link */

.home-solutions .section-link {
    display: inline-flex;
    margin-top: 24px;
    padding-block: 10px;
    border-bottom: 1px solid var(--home-ink);
    color: var(--home-ink);
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color 160ms ease,
        color 160ms ease;
}

.home-solutions .section-link:hover {
    border-color: var(--home-blue);
    color: var(--home-blue);
}

/* Block 02 responsive layout */

@media (max-width: 920px) {
    .home-solutions .home-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-solutions .home-section-heading h2 {
        max-width: 18ch;
    }

    .solution-list {
        grid-template-columns: 1fr;
    }

    .solution-item--feature,
    .solution-item--adapt,
    .solution-item--system {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .solution-item--adapt,
    .solution-item--system {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .home-solutions {
        padding-block: 60px;
    }

    .home-solutions .home-section-heading {
        margin-bottom: 32px;
    }

    .home-solutions .home-section-heading h2 {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .solution-number {
        margin-bottom: 26px;
        font-size: 2.4rem;
    }

    .solution-item--feature .solution-item-copy,
    .solution-item--adapt,
    .solution-item--system {
        padding: 28px;
    }

    .solution-media,
    .solution-media img {
        min-height: 260px;
        max-height: 320px;
    }

    .solution-item--adapt,
    .solution-item--system {
        min-height: 290px;
    }
}/* =========================================================
   BLOCK 03 — CONNECTED ENGINEERING
   ========================================================= */

.home-approach {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(92px, 11vw, 160px);
    background:
        radial-gradient(circle at 88% 18%,
            rgba(35, 183, 235, 0.14),
            transparent 32%),
        linear-gradient(118deg,
            #061b27 0%,
            #082b3b 55%,
            #0a4054 100%);
    color: #ffffff;
}

/* restrained technical linework */
.home-approach::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px);
    background-size: 56px 56px;
    mask-image:
        linear-gradient(90deg,
            transparent 0%,
            #000 48%,
            #000 100%);
}

.home-approach::after {
    position: absolute;
    right: -160px;
    bottom: -250px;
    z-index: -1;
    width: 620px;
    aspect-ratio: 1;
    border: 1px solid rgba(69, 199, 233, 0.18);
    border-radius: 50%;
    content: "";
}

.home-approach-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: clamp(64px, 10vw, 156px);
    align-items: start;
}

.home-approach .eyebrow {
    margin: 0 0 24px;
    color: #58d2f2;
}

.home-approach h2 {
    max-width: 9ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display, var(--font-sans));
    font-size: clamp(3.2rem, 6vw, 6.6rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.91;
}

.home-approach-content {
    padding-top: clamp(14px, 3vw, 42px);
}

.home-approach-content::before {
    display: block;
    width: 72px;
    height: 3px;
    margin-bottom: 34px;
    background:
        linear-gradient(90deg,
            #087cf0,
            #51d4ed);
    content: "";
}

.home-approach-content p {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.home-approach-content .home-approach-lead {
    max-width: 27ch;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

/* connected discipline path */

.approach-path {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: clamp(48px, 7vw, 78px);
    padding-top: 31px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.approach-path::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 58%;
    height: 3px;
    background:
        linear-gradient(90deg,
            #087cf0 0%,
            #45c7e9 62%,
            #95dc48 100%);
    content: "";
}

.approach-path span {
    position: relative;
    padding-right: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.approach-path span::before {
    position: absolute;
    top: -38px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid #54d3ef;
    border-radius: 50%;
    background: #082b3b;
    content: "";
}

.approach-path span:last-child::before {
    border-color: #9bd629;
}

.approach-result {
    margin-top: 35px !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* responsive */

@media (max-width: 900px) {
    .home-approach-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .home-approach h2 {
        max-width: 11ch;
    }

    .home-approach-content {
        padding-top: 0;
    }
}

@media (max-width: 680px) {
    .home-approach {
        padding-block: 76px;
    }

    .home-approach h2 {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .approach-path {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .approach-path::before {
        top: 0;
        left: -2px;
        width: 3px;
        height: 62%;
        background:
            linear-gradient(180deg,
                #087cf0,
                #45c7e9,
                #9bd629);
    }

    .approach-path span {
        min-height: 52px;
        padding: 0 0 22px 28px;
    }

    .approach-path span::before {
        top: 2px;
        left: -6px;
    }
}
/* =========================================================
   BLOCK 04 — ENGINEERING PROCESS
   ========================================================= */

.home-process {
    position: relative;
    overflow: hidden;
    padding-block: clamp(88px, 10vw, 148px);
    background:
        radial-gradient(circle at 91% 12%,
            rgba(18, 155, 210, 0.09),
            transparent 28%),
        #ffffff;
}

.home-process-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(320px, 0.65fr);
    gap: clamp(54px, 10vw, 150px);
    align-items: end;
}

.home-process-heading .eyebrow {
    margin-bottom: 20px;
}

.home-process-heading h2 {
    max-width: 12ch;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display, var(--font-sans));
    font-size: clamp(2.9rem, 5vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.home-process-heading>p {
    max-width: 44ch;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Process sequence */

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: clamp(66px, 8vw, 104px) 0 0;
    padding: 0;
    border-top: 1px solid var(--line-strong);
    list-style: none;
}

.process-flow::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 82%;
    height: 3px;
    background:
        linear-gradient(90deg,
            var(--blue-700) 0%,
            var(--blue-500) 56%,
            var(--cyan-400) 82%,
            #9bd629 100%);
    content: "";
}

.process-flow li {
    position: relative;
    min-height: 246px;
    padding: 48px 28px 32px 0;
}

.process-flow li:not(:last-child) {
    margin-right: 28px;
    border-right: 1px solid var(--line);
}

.process-flow li::before {
    position: absolute;
    top: -8px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 3px solid var(--blue-600);
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.process-flow li:nth-child(4)::before {
    border-color: var(--cyan-400);
}

.process-flow li:last-child::before {
    border-color: #9bd629;
}

.process-number {
    display: block;
    margin-bottom: 34px;
    color: var(--blue-600);
    font-family: var(--font-technical);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.process-flow h3 {
    margin: 0 0 15px;
    color: var(--ink);
    font-family: var(--font-display, var(--font-sans));
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.process-flow p {
    max-width: 26ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

/* =========================================================
   BLOCK 05 — ENGINEERING EVIDENCE
   ========================================================= */

.home-evidence {
    position: relative;
    overflow: hidden;
    padding-top: clamp(88px, 10vw, 150px);
        padding-bottom: clamp(44px, 5vw, 72px);
    background:
        radial-gradient(circle at 92% 8%,
            rgba(18, 155, 210, 0.12),
            transparent 30%),
        linear-gradient(135deg,
            #f8fafb 0%,
            #eef6fa 100%);
}

.home-evidence::before {
    position: absolute;
    top: 0;
    right: 8%;
    width: 32%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--blue-500));
    content: "";
}

.home-evidence-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(280px, 0.55fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 72px);
}

.home-evidence-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(3rem, 6vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.94;
}

.home-evidence-heading>p {
    max-width: 480px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

.home-evidence-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(3,
            clamp(200px, 18vw, 285px));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}

.evidence-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: #dce7eb;
}

.evidence-card--lead {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

.evidence-card--pcb {
    grid-column: 8 / 13;
    grid-row: 1;
}

.evidence-card--thermal {
    grid-column: 8 / 13;
    grid-row: 2;
}

.evidence-card--hardware {
    grid-column: 1 / 7;
    grid-row: 3;
}

.evidence-card--detail {
    grid-column: 7 / 13;
    grid-row: 3;
}

.evidence-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 400ms ease;
}

.evidence-card--pcb img {
    object-position: center;
}

.evidence-card--thermal img {
    object-position: center 54%;
}

.evidence-card--hardware img {
    object-position: center 57%;
}

.evidence-card--detail img {
    object-position: center 63%;
}

.evidence-card::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(4, 22, 32, 0.2) 35%,
            rgba(4, 22, 32, 0.88) 100%);
    content: "";
    pointer-events: none;
}

.evidence-card figcaption {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding:
        clamp(22px, 3vw, 38px) clamp(22px, 3vw, 40px);
    color: #ffffff;
}

.evidence-card figcaption span {
    color: var(--cyan-400);
    font-family: var(--font-technical);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.evidence-card figcaption strong {
    max-width: 34ch;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1.28;
}

.evidence-card:hover img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 960px) {
    .home-evidence-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-evidence-heading h2 {
        max-width: 640px;
    }

    .home-evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .evidence-card,
    .evidence-card--lead,
    .evidence-card--pcb,
    .evidence-card--thermal,
    .evidence-card--hardware,
    .evidence-card--detail {
        grid-column: auto;
        grid-row: auto;
        min-height: 310px;
    }

    .evidence-card--lead {
        grid-column: 1 / -1;
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .home-evidence {
        padding-block: 72px;
    }

    .home-evidence-heading h2 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .home-evidence-grid {
        grid-template-columns: 1fr;
    }

    .evidence-card,
    .evidence-card--lead {
        grid-column: 1;
        min-height: 300px;
    }

    .evidence-card--lead {
        min-height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .evidence-card img {
        transition: none;
    }

    .evidence-card:hover img {
        transform: none;
    }
}

/* Responsive process */

@media (max-width: 980px) {
    .home-process-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 0;
    }

    .process-flow::before {
        display: none;
    }

    .process-flow li {
        min-height: 230px;
        padding: 36px 28px;
        border-top: 2px solid var(--blue-600);
    }

    .process-flow li:not(:last-child) {
        margin-right: 0;
        border-right: 1px solid var(--line);
    }

    .process-flow li::before {
        display: none;
    }

    .process-flow li:last-child {
        grid-column: 1 / -1;
        min-height: auto;
        border-top-color: #9bd629;
    }
}

@media (max-width: 640px) {
    .home-process {
        padding-block: 76px;
    }

    .home-process-heading h2 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .process-flow {
        grid-template-columns: 1fr;
        margin-top: 54px;
    }

    .process-flow li {
        min-height: 0;
        padding: 32px 0 38px;
        border-right: 0 !important;
        border-top: 1px solid var(--line-strong);
    }

    .process-flow li:last-child {
        grid-column: auto;
        border-top: 2px solid #9bd629;
    }

    .process-number {
        margin-bottom: 20px;
    }

    .process-flow p {
        max-width: 38ch;
    }
}

/* E-REON network */

.home-network {
    position: relative;
    overflow: hidden;
    padding-block: clamp(76px, 8vw, 118px);
    background:
        radial-gradient(circle at 88% 16%,
            rgba(44, 190, 239, 0.15),
            transparent 32%),
        linear-gradient(180deg,
            #f4f9fc 0%,
            #edf6fa 100%);
}

.home-network::before {
    position: absolute;
    right: -170px;
    bottom: -250px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 120, 189, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.network-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 62px);
}

.network-heading .eyebrow {
    margin-bottom: 16px;
}

.network-heading h2 {
    max-width: 680px;
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2.65rem, 5.2vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.network-heading>p {
    max-width: 430px;
    margin: 0 0 6px;
    color: var(--home-muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.65;
}

.network-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) minmax(0, 1.08fr);
    border-top: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.34);
}

.network-card {
    position: relative;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    padding: clamp(28px, 3.2vw, 42px);
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.76);
    color: var(--home-ink);
    text-decoration: none;
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.network-card::before {
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    height: 3px;
    background: var(--home-blue);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.network-card:hover {
    z-index: 2;
    background: var(--home-white);
    box-shadow: 0 24px 54px rgba(7, 31, 45, 0.1);
    transform: translateY(-4px);
}

.network-card:hover::before {
    transform: scaleX(1);
}

.network-card:focus-visible {
    z-index: 3;
    outline: 3px solid rgba(0, 120, 189, 0.28);
    outline-offset: -3px;
}

.network-card-meta {
    display: flex;
    gap: 18px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: clamp(40px, 5vw, 66px);
}

.network-number {
    color: var(--home-blue);
    font-family:
        ui-monospace,
        "Cascadia Mono",
        Consolas,
        monospace;
    font-size: 1.15rem;
}

.network-label {
    color: var(--home-blue);
    font-family:
        ui-monospace,
        "Cascadia Mono",
        Consolas,
        monospace;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: right;
}

.network-card h3 {
    max-width: 13ch;
    margin: 0 0 18px;
    color: inherit;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 550;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.network-card p {
    max-width: 38ch;
    margin: 0 0 30px;
    color: var(--home-muted);
    line-height: 1.62;
}

.network-link {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--home-line);
    color: var(--home-blue);
    font-weight: 700;
}

.network-card-dark {
    isolation: isolate;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg,
            #072331 0%,
            #0a4055 100%);
    color: var(--home-white);
}

.network-card-dark::before {
    background: linear-gradient(90deg,
            #1aa9e7,
            #54d8f3);
    transform: scaleX(1);
}

.network-card-dark::after {
    position: absolute;
    right: -150px;
    bottom: -240px;
    z-index: -1;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(69, 199, 233, 0.24);
    border-radius: 50%;
    content: "";
}

.network-card-dark:hover {
    background:
        linear-gradient(135deg,
            #082a3a 0%,
            #0b4a61 100%);
}

.network-card-dark .network-number,
.network-card-dark .network-label {
    color: #55d4f3;
}

.network-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.network-card-dark .network-link {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--home-white);
}

@media (max-width: 980px) {
    .network-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .network-card-dark {
        grid-column: 1 / -1;
        min-height: 270px;
    }
}

@media (max-width: 700px) {
    .home-network {
        padding-block: 68px;
    }

    .network-heading h2 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .network-card,
    .network-card-dark {
        grid-column: auto;
        min-height: 285px;
        padding: 30px 26px;
    }

    .network-card-meta {
        margin-bottom: 38px;
    }
}

/* Closing request */

.home-closing {
    padding-block: clamp(76px, 9vw, 118px);
    background: var(--home-white);
}

.home-closing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(50px, 9vw, 130px);
    align-items: end;
}

.home-closing .eyebrow {
    margin-bottom: 18px;
    color: var(--home-blue);
}

.home-closing h2 {
    max-width: 16ch;
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2.3rem, 4.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-closing-grid>div:last-child {
    padding-top: 28px;
    border-top: 1px solid var(--home-line);
}

.home-closing-grid>div:last-child p {
    margin-bottom: 26px;
    color: var(--home-muted);
}

/* Responsive */

@media (max-width: 1040px) {
    .corporate-hero-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-content h1 {
        max-width: 14ch;
    }

    .engineering-path {
        max-width: 760px;
    }

    .corporate-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-facts-grid>div:nth-child(3) {
        border-top: 1px solid var(--home-line);
    }

    .corporate-facts-grid>div:nth-child(4) {
        border-top: 1px solid var(--home-line);
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .network-card {
        min-height: auto;
    }
}

@media (max-width: 820px) {

    .home-section-heading,
    .home-approach-grid,
    .home-closing-grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading {
        align-items: start;
    }

    .solution-list {
        grid-template-columns: 1fr;
    }

    .solution-item {
        min-height: auto;
    }

    .home-approach-content {
        padding-top: 28px;
    }
}

@media (max-width: 620px) {
    .corporate-hero {
        padding-block: 66px 74px;
    }

    .corporate-hero-content h1 {
        font-size: clamp(2.65rem, 13vw, 4.1rem);
    }

    .engineering-path {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .engineering-path-topline {
        flex-direction: column;
        gap: 5px;
    }

    .corporate-facts-grid {
        grid-template-columns: 1fr;
    }

    .corporate-facts-grid>div {
        min-height: auto;
        border-top: 1px solid var(--home-line);
        border-right: 1px solid var(--home-line);
    }

    .corporate-facts-grid>div:first-child {
        border-top: 0;
    }

    .solution-item {
        grid-template-columns: 1fr;
    }

    .network-card {
        padding: 30px 24px;
    }

    .network-number {
        margin-bottom: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .solution-item,
    .network-card {
        transition: none;
    }

    .network-card:hover {
        transform: none;
    }
}

/* =========================================================
   BLOCK 01 — EDITORIAL CORPORATE HERO
   Full-width photographic canvas with overlapping typography
   ========================================================= */

.home-hero {
    --hero-ink: #071c31;
    --hero-blue: #0768e8;
    --hero-blue-dark: #0050bc;
    --hero-muted: #526b79;
    --hero-line: #d3dfe6;

    overflow: hidden;
    border-bottom: 1px solid var(--hero-line);
    background: #ffffff;
    color: var(--hero-ink);
}

/* Main photographic canvas */

.home-hero-stage {
    position: relative;
    width: 100%;
    min-height: clamp(700px, 76vh, 840px);
    overflow: hidden;
    isolation: isolate;
}

.home-hero-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(249, 251, 252, 0.78) 0%,
            rgba(249, 251, 252, 0.62) 27%,
            rgba(249, 251, 252, 0.24) 47%,
            rgba(249, 251, 252, 0.04) 67%,
            rgba(249, 251, 252, 0) 82%),
        linear-gradient(180deg,
            rgba(4, 20, 34, 0) 65%,
            rgba(4, 20, 34, 0.22) 100%),
        url("/assets/images/home/hero-engineering.webp") 58% center / cover no-repeat,
        #eaf0f3;
}

.home-hero-image::after {
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(7, 28, 49, 0.06);
    border-bottom: 1px solid rgba(7, 28, 49, 0.1);
    content: "";
    pointer-events: none;
}

/* Editorial text placed over the photograph */

.home-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: min(1100px, 68%);
    min-height: clamp(700px, 76vh, 840px);
    margin-left: max(32px,
            calc((100vw - 1480px) / 2));
    padding:
        clamp(74px, 9vh, 116px) clamp(34px, 4.5vw, 72px);
}

/* Small introductory line */

.home-hero-context {
    position: relative;
    margin: 0 0 30px;
    padding-left: 42px;
    color: var(--hero-blue-dark);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-hero-context::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 27px;
    height: 1px;
    background: var(--hero-blue);
    content: "";
}

/* Primary proposition */

.home-hero-copy h1 {
    width: 100%;
    margin: 0;
    color: var(--hero-ink);
    font-family: var(--font-display);
    font-size: clamp(3.7rem, 5.15vw, 5.9rem);
    font-weight: 520;
    letter-spacing: -0.062em;
    line-height: 0.92;
}

.home-hero-copy h1 span {
    display: block;
    color: inherit;
}

/* Supporting copy */

.home-hero-lead {
    max-width: 56ch;
    margin: 36px 0 0;
    color: var(--hero-muted);
    font-family: var(--font-sans);
    font-size: clamp(1.04rem, 1.3vw, 1.2rem);
    font-weight: 400;
    line-height: 1.58;
}

/* Actions */

.home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.home-hero-actions .button-primary {
    min-height: 52px;
    padding-inline: 24px;
    border-color: var(--hero-blue);
    border-radius: 2px;
    background: var(--hero-blue);
    box-shadow: none;
}

.home-hero-actions .button-primary:hover {
    border-color: var(--hero-blue-dark);
    background: var(--hero-blue-dark);
}

.home-hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding-block: 8px;
    color: var(--hero-ink);
    font-family: var(--font-sans);
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
}

.home-hero-text-link span {
    color: var(--hero-blue);
    transition: transform 160ms ease;
}

.home-hero-text-link:hover {
    color: var(--hero-blue);
}

.home-hero-text-link:hover span {
    transform: translateX(5px);
}

/* Information attached to the photograph */

.home-hero-image-note {
    position: absolute;
    z-index: 2;
    right: max(32px,
            calc((100vw - 1480px) / 2));
    bottom: 38px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
    max-width: 340px;
    color: #ffffff;
    text-align: right;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.42),
        0 8px 28px rgba(0, 0, 0, 0.26);
}

.home-hero-image-note span {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.105em;
}

.home-hero-image-note strong {
    font-family: var(--font-sans);
    font-size: 0.93rem;
    font-weight: 500;
}

/* Quiet evidence baseline */

.home-hero-baseline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(calc(100% - 64px), 1480px);
    margin-inline: auto;
    background: #ffffff;
}

.home-hero-baseline>div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 17px;
    align-items: start;
    min-height: 118px;
    padding:
        29px clamp(22px, 3vw, 44px);
    border-left: 1px solid var(--hero-line);
}

.home-hero-baseline>div:last-child {
    border-right: 1px solid var(--hero-line);
}

.home-hero-baseline>div>span {
    color: var(--hero-blue);
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.2;
}

.home-hero-baseline p {
    margin: 0;
    color: var(--hero-muted);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.45;
}

.home-hero-baseline strong {
    display: block;
    margin-bottom: 5px;
    color: var(--hero-ink);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Medium desktop and tablet */

@media (max-width: 1100px) {

    .home-hero-copy {
            width: 78%;
            margin-left: 0;
            padding-inline: clamp(32px, 6vw, 68px);
        }

    .home-hero-image {
        background:
            linear-gradient(90deg,
                rgba(249, 251, 252, 0.97) 0%,
                rgba(249, 251, 252, 0.88) 34%,
                rgba(249, 251, 252, 0.55) 56%,
                rgba(249, 251, 252, 0.08) 82%),
            linear-gradient(180deg,
                rgba(4, 20, 34, 0) 55%,
                rgba(4, 20, 34, 0.34) 100%),
            url("/assets/images/home/hero-engineering.webp") 63% center / cover no-repeat,
            #eaf0f3;
    }

    .home-hero-copy {
        width: 68%;
        margin-left: 0;
        padding-inline: clamp(32px, 6vw, 68px);
    }

        .home-hero-copy h1 {
            font-size: clamp(3.7rem, 7.5vw, 5.5rem);
        }

    .home-hero-image-note {
        right: 32px;
    }

    .home-hero-baseline {
        width: 100%;
    }
}

/* Tablet and mobile:
   image first, copy overlaps its lower edge */

@media (max-width: 760px) {
    .home-hero-stage {
        display: flex;
        flex-direction: column;
        min-height: auto;
        overflow: visible;
        background: #ffffff;
    }

    .home-hero-image {
        position: relative;
        inset: auto;
        order: 1;
        width: 100%;
        min-height: 450px;
        background:
            linear-gradient(180deg,
                rgba(4, 20, 34, 0.02) 42%,
                rgba(4, 20, 34, 0.38) 100%),
            url("/assets/images/home/hero-engineering.webp") 64% center / cover no-repeat,
            #eaf0f3;
    }

    .home-hero-copy {
        order: 2;
        width: calc(100% - 32px);
        min-height: auto;
        margin: -92px 16px 0;
        padding: 42px 30px 46px;
        background: rgba(255, 255, 255, 0.985);
        box-shadow:
            0 -18px 50px rgba(7, 28, 49, 0.08),
            0 18px 40px rgba(7, 28, 49, 0.06);
    }

    .home-hero-context {
        margin-bottom: 24px;
    }

    .home-hero-copy h1 {
        max-width: 10ch;
        font-size: clamp(3.45rem, 14vw, 5.2rem);
        line-height: 0.9;
    }

    .home-hero-lead {
        margin-top: 28px;
    }

    .home-hero-image-note {
        top: 376px;
        right: 26px;
        bottom: auto;
    }

    .home-hero-baseline {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 0;
    }

    .home-hero-baseline>div {
        min-height: auto;
        padding: 25px 28px;
        border-right: 0;
        border-bottom: 1px solid var(--hero-line);
        border-left: 0;
    }

    .home-hero-baseline>div:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

/* Narrow mobile */

@media (max-width: 500px) {
    .home-hero-image {
        min-height: 390px;
        background-position: 67% center;
    }

    .home-hero-copy {
        width: calc(100% - 20px);
        margin: -72px 10px 0;
        padding: 36px 23px 40px;
    }

    .home-hero-copy h1 {
        font-size: clamp(3.1rem, 15vw, 4.5rem);
        letter-spacing: -0.067em;
    }

    .home-hero-image-note {
        top: 324px;
        right: 20px;
        max-width: 250px;
    }

    .home-hero-image-note span {
        font-size: 0.59rem;
    }

    .home-hero-image-note strong {
        font-size: 0.8rem;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .home-hero-actions .button-primary {
        justify-content: center;
        width: 100%;
    }

    .home-hero-text-link {
        justify-content: center;
    }
}

/* Motion preference */

@media (prefers-reduced-motion: reduce) {
    .home-hero-text-link span {
        transition: none;
    }
}

/* =========================================================
   BLOCK — E-REON DESTINATION ROUTES
   ========================================================= */

.home-network {
    position: relative;
    overflow: hidden;
    padding-block: clamp(84px, 9vw, 132px);
    background:
        radial-gradient(circle at 94% 16%,
            rgba(69, 199, 233, 0.18),
            transparent 31%),
        #eef6fa;
}

.home-network-head {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(44px, 6vw, 72px);
}

.home-network-head .eyebrow {
    margin-bottom: 20px;
}

.home-network-head h2 {
    max-width: 680px;
    margin: 0;
    color: #071f2d;
    font-family: var(--font-sans);
    font-size: clamp(3rem, 5.8vw, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.home-network-introduction {
    max-width: 460px;
    margin: 0 0 6px;
    color: #4d6877;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.6;
}

.home-network-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.home-route-card {
    position: relative;
    display: flex;
    min-height: 410px;
    flex-direction: column;
    padding: clamp(30px, 3.2vw, 44px);
    overflow: hidden;
    border: 1px solid #c8dbe5;
    border-radius: 6px;
    color: #071f2d;
    text-decoration: none;
    box-shadow:
        0 1px 2px rgba(7, 31, 45, 0.03),
        0 12px 34px rgba(7, 31, 45, 0.04);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.home-route-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #087fc1;
    content: "";
}

.home-route-card::after {
    position: absolute;
    right: -135px;
    bottom: -145px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(0, 120, 189, 0.15);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-route-card:hover {
    border-color: #8dbed5;
    color: #071f2d;
    box-shadow:
        0 2px 4px rgba(7, 31, 45, 0.04),
        0 22px 48px rgba(7, 31, 45, 0.09);
    transform: translateY(-4px);
}

.home-route-card:focus-visible {
    outline: 3px solid rgba(0, 120, 189, 0.35);
    outline-offset: 4px;
}

.home-route-card-products {
    background: #ffffff;
}

.home-route-card-lab {
    background:
        linear-gradient(145deg,
            #f8fcfe 0%,
            #e8f5fb 100%);
}

.home-route-card-lab::before {
    background:
        linear-gradient(90deg,
            #087fc1,
            #45c7e9);
}

.home-route-card-request {
    border-color: #0a4259;
    background:
        linear-gradient(145deg,
            #082938 0%,
            #0a4056 100%);
    color: #ffffff;
}

.home-route-card-request::before {
    background:
        linear-gradient(90deg,
            #45c7e9,
            #138fce);
}

.home-route-card-request::after {
    border-color: rgba(69, 199, 233, 0.22);
}

.home-route-card-request:hover {
    border-color: #45c7e9;
    color: #ffffff;
}

.home-route-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(54px, 6vw, 82px);
}

.home-route-number {
    color: #0078bd;
    font-family: var(--font-technical);
    font-size: 1.12rem;
    font-weight: 600;
}

.home-route-label {
    color: #0071af;
    font-family: var(--font-technical);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-align: right;
}

.home-route-card-request .home-route-number,
.home-route-card-request .home-route-label {
    color: #45c7e9;
}

.home-route-card h3 {
    position: relative;
    z-index: 1;
    max-width: 12ch;
    margin: 0 0 22px;
    color: inherit;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 550;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.home-route-card>p {
    position: relative;
    z-index: 1;
    max-width: 34ch;
    margin: 0;
    color: #526d7b;
    font-size: 1rem;
    line-height: 1.65;
}

.home-route-card-request>p {
    color: rgba(255, 255, 255, 0.78);
}

.home-route-action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #cfdee5;
    color: #006dad;
    font-weight: 650;
}

.home-route-card-request .home-route-action {
    border-top-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.home-route-action>span {
    transition: transform 180ms ease;
}

.home-route-card:hover .home-route-action>span {
    transform: translate(3px, -3px);
}

@media (max-width: 900px) {
    .home-network-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-network-cards {
        grid-template-columns: 1fr;
    }

    .home-route-card {
        min-height: 340px;
    }

    .home-route-meta {
        margin-bottom: 48px;
    }
}

@media (max-width: 580px) {
    .home-network {
        padding-block: 72px;
    }

    .home-network-head h2 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .home-route-card {
        min-height: 320px;
        padding: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-route-card,
    .home-route-action>span {
        transition: none;
    }

    .home-route-card:hover {
        transform: none;
    }
}

/* Block 07 — Company introduction */

.home-company {
    position: relative;
    overflow: hidden;
    padding-block: clamp(88px, 10vw, 150px);
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 92% 10%,
            rgba(69, 199, 233, 0.13),
            transparent 34%),
        linear-gradient(135deg,
            #ffffff 0%,
            #f6fafc 58%,
            #edf7fb 100%);
}

.home-company::after {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(18, 155, 210, 0.16);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-company-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(320px, 0.88fr) minmax(0, 1.12fr);
    grid-template-areas:
        "eyebrow heading"
        "copy heading"
        "facts facts";
    column-gap: clamp(70px, 9vw, 150px);
}

.home-company-eyebrow {
    grid-area: eyebrow;
    align-self: start;
    margin: 0 0 24px;
}

.home-company-heading {
    grid-area: heading;
    align-self: start;
    padding-top: 26px;
}

.home-company-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.home-company-copy {
    grid-area: copy;
    align-self: end;
    max-width: 560px;
}

.home-company-copy p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.home-company-copy .home-company-lead {
    margin-bottom: 22px;
    color: var(--text);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.5;
}

.home-company-link {
    display: inline-block;
    margin-top: 34px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.home-company-link:hover {
    color: var(--blue-600);
}

.home-company-facts {
    grid-area: facts;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: clamp(60px, 8vw, 96px) 0 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.home-company-facts>div {
    min-height: 150px;
    padding: 30px 28px;
}

.home-company-facts>div+div {
    border-left: 1px solid var(--line);
}

.home-company-facts dt {
    margin-bottom: 14px;
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-company-facts dd {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    font-weight: 600;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .home-company-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "heading"
            "copy"
            "facts";
    }

    .home-company-eyebrow {
        margin-bottom: 18px;
    }

    .home-company-heading {
        padding-top: 0;
    }

    .home-company-copy {
        max-width: 680px;
        margin-top: 34px;
    }

    .home-company-facts {
        margin-top: 56px;
    }
}
/* Block 08 — Closing invitation */

.home-final-cta {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 35%,
            rgba(18, 155, 210, 0.32),
            transparent 38%),
        linear-gradient(115deg,
            var(--navy-950) 0%,
            #062c43 58%,
            #064968 100%);
}

.home-final-cta::before {
    position: absolute;
    right: -130px;
    bottom: -330px;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(69, 199, 233, 0.26);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-final-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: clamp(70px, 10vw, 170px);
    align-items: end;
    padding-block: clamp(76px, 9vw, 126px);
}

.home-final-cta-eyebrow {
    margin: 0 0 22px;
    color: var(--cyan-400);
    font-family: var(--font-technical);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-final-cta h2 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.94;
}

.home-final-cta-action {
    max-width: 520px;
}

.home-final-cta-action p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

.home-final-cta-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: var(--navy-950);
    font-weight: 650;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.home-final-cta-button:hover {
    border-color: var(--cyan-400);
    background: var(--cyan-400);
    color: var(--navy-950);
    transform: translateY(-2px);
}


/* Block 07–08 responsive */

@media (max-width: 900px) {

    .home-company-grid,
    .home-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .home-company-copy {
        max-width: 680px;
    }

    .home-company-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-company-facts>div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .home-company-facts>div:nth-child(4) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 580px) {

    .home-company-heading h2,
    .home-final-cta h2 {
        letter-spacing: -0.05em;
    }

    .home-company-facts {
        grid-template-columns: 1fr;
    }

    .home-company-facts>div {
        min-height: auto;
        padding: 24px 4px;
    }

    .home-company-facts>div+div,
    .home-company-facts>div:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .home-final-cta-button {
        width: 100%;
    }
}

/* Final conversation CTA */

.home-conversation {
    position: relative;
    overflow: hidden;
    padding-block: clamp(76px, 8vw, 118px);
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 18%,
            rgba(69, 199, 233, 0.16),
            transparent 30%),
        linear-gradient(120deg,
            #ffffff 0%,
            #f3f9fc 58%,
            #e9f6fb 100%);
}

.home-conversation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr) minmax(340px, 0.85fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: end;
}

.home-conversation .eyebrow {
    margin-bottom: 24px;
    color: var(--blue-700);
}

.home-conversation h2 {
    max-width: 10ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    font-weight: 520;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.home-conversation-copy {
    max-width: 580px;
    padding-bottom: 8px;
}

.home-conversation-rule {
    display: block;
    width: 72px;
    height: 3px;
    margin-bottom: 30px;
    background:
        linear-gradient(90deg,
            var(--blue-600),
            var(--cyan-400));
}

.home-conversation-copy>p {
    margin: 0 0 34px;
    color: var(--text);
    font-size: clamp(1.08rem, 1.6vw, 1.3rem);
    line-height: 1.6;
}

.home-conversation-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}

.home-conversation-secondary {
    padding-block: 10px;
    border-bottom: 1px solid var(--ink);
    color: var(--ink);
    font-weight: 650;
    text-decoration: none;
}

.home-conversation-secondary:hover {
    border-color: var(--blue-600);
    color: var(--blue-700);
}

.home-conversation-orbit {
    position: absolute;
    right: -180px;
    bottom: -290px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(18, 155, 210, 0.18);
    border-radius: 50%;
}

.home-conversation-orbit::before {
    content: "";
    position: absolute;
    inset: 64px;
    border: 1px solid rgba(18, 155, 210, 0.11);
    border-radius: inherit;
}

@media (max-width: 900px) {
    .home-conversation-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: start;
    }

    .home-conversation h2 {
        max-width: 12ch;
    }
}

@media (max-width: 600px) {
    .home-conversation {
        padding-block: 68px;
    }

    .home-conversation h2 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .home-conversation-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-conversation-actions .button {
        justify-content: center;
        width: 100%;
    }

    .home-conversation-secondary {
        align-self: flex-start;
    }
}