.solutions-page {
    background: var(--surface);
}

/* ==========================================================
   Block 01 — Solutions hero
   ========================================================== */

.solutions-hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(60px, 7vw, 96px);
    background:
        radial-gradient(circle at 92% 8%,
            rgba(69, 199, 233, 0.14),
            transparent 30%),
        linear-gradient(145deg,
            #ffffff 0%,
            #f6fafc 60%,
            #edf7fa 100%);
}

.solutions-hero::after {
    position: absolute;
    right: -230px;
    bottom: 40px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(0, 120, 189, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.solutions-hero>.container {
    position: relative;
    z-index: 1;
}

.solutions-hero-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr) minmax(320px, 0.72fr);
    gap: clamp(48px, 8vw, 118px);
    align-items: end;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.solutions-hero-title .eyebrow {
    margin: 0 0 20px;
    color: var(--blue-700);
}

.solutions-hero-title h1 {
    max-width: 900px;
    margin: 0;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: clamp(3rem, 4.4vw, 4.8rem);
    font-weight: 520;
    letter-spacing: -0.058em;
    line-height: 0.97;
}

.solutions-hero-introduction {
    max-width: 560px;
    padding-bottom: 5px;
}

.solutions-hero-introduction>p {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.04rem, 1.35vw, 1.2rem);
    line-height: 1.65;
}

.solutions-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
    margin-top: 30px;
}

.solutions-hero-actions .button-primary {
    min-height: 52px;
    padding-inline: 24px;
    border-radius: 2px;
}

.solutions-hero-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
    color: var(--navy-950);
    font-weight: 650;
    text-decoration: none;
}

.solutions-hero-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--blue-600);
    content: "";
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 180ms ease;
}

.solutions-hero-link:hover {
    color: var(--blue-700);
}

.solutions-hero-link:hover::after {
    transform: scaleX(1);
}

.solutions-hero-visual {
    position: relative;
    height: clamp(390px, 36vw, 520px);
    margin: 0;
    overflow: hidden;
    background: var(--navy-900);
}



.solutions-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}







/* Block 01 responsive */

@media (max-width: 980px) {
    .solutions-hero-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solutions-hero-title h1 {
        max-width: 850px;
        font-size: clamp(3rem, 7.5vw, 4.7rem);
    }

    .solutions-hero-introduction {
        max-width: 680px;
    }

    .solutions-hero-visual {
        height: clamp(360px, 52vw, 480px);
    }
}

@media (max-width: 680px) {
    .solutions-hero {
        padding-top: 52px;
    }

    .solutions-hero-heading {
        margin-bottom: 38px;
    }

    .solutions-hero-title .eyebrow {
        margin-bottom: 16px;
    }

    .solutions-hero-title h1 {
        font-size: clamp(2.65rem, 11.5vw, 3.65rem);
        letter-spacing: -0.052em;
        line-height: 0.98;
    }

    .solutions-hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 26px;
    }

    .solutions-hero-actions .button-primary {
        justify-content: center;
        width: 100%;
    }

    .solutions-hero-link {
        justify-content: center;
        width: 100%;
    }

    .solutions-hero-visual {
        height: 340px;
    }

    

   
}

@media (prefers-reduced-motion: reduce) {
    .solutions-hero-link::after {
        transition: none;
    }
}

/* Shared section heading */

.solutions-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.65fr);
    gap: clamp(44px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(36px, 4.5vw, 58px);
}

.solutions-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.solutions-section-heading>p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* RF and microwave capabilities */

.rf-capabilities {
    padding-block: clamp(72px, 8vw, 112px);
    border-top: 1px solid var(--line);
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #ffffff 62%,
            #f3f8fa 100%);
}

.rf-capabilities-header {
    max-width: 1060px;
    margin:
        0 auto clamp(46px, 6vw, 72px);
    text-align: center;
}

.rf-capabilities-header .eyebrow {
    margin-bottom: 20px;
    color: var(--blue-700);
}

.rf-capabilities-header h2 {
    max-width: none;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
}

.rf-capabilities-introduction {
    max-width: 720px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.68;
}

.rf-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.rf-capability {
    min-width: 0;
    padding:
        clamp(34px, 4vw, 54px) clamp(30px, 4vw, 58px);
}

.rf-capability:nth-child(odd) {
    padding-left: 0;
}

.rf-capability:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid var(--line);
}

.rf-capability:nth-child(n + 3) {
    border-top: 1px solid var(--line);
}

.rf-capability-identity {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.rf-capability-number {
    padding-top: 4px;
    color: var(--blue-600);
    font-family: var(--font-technical);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.rf-capability-identity h3 {
    max-width: 24ch;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(1.4rem, 2vw, 2.05rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.rf-capability-description {
    max-width: 58ch;
    margin: 24px 0 0 64px;
    color: var(--muted);
    line-height: 1.62;
}

.rf-capability-details {
    display: grid;
    gap: 11px;
    margin: 26px 0 0 64px;
    padding: 0;
    list-style: none;
}

.rf-capability-details li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    color: var(--text);
    font-size: 0.91rem;
    line-height: 1.5;
}

.rf-capability-details li::before {
    width: 10px;
    height: 1px;
    background: var(--blue-600);
    content: "";
}

@media (max-width: 820px) {
    

    .rf-capabilities-header h2 {
            max-width: 18ch;
            margin-inline: auto;
        }

    .rf-capability-grid {
        grid-template-columns: 1fr;
    }

    .rf-capability {
        padding-inline: 0;
    }

    .rf-capability:nth-child(even) {
        border-left: 0;
    }

    .rf-capability:nth-child(n + 2) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    .rf-capabilities {
        padding-block: 60px;
    }

    .rf-capabilities-header {
        margin-bottom: 34px;
    }

    .rf-capabilities-header h2 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .rf-capability {
        padding-block: 30px;
    }

    .rf-capability-identity {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .rf-capability-description,
    .rf-capability-details {
        margin-left: 52px;
    }
}

/* Delivery scope */

.delivery-scope {
    padding-block: clamp(72px, 8vw, 112px);
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.delivery-scope-header {
    display: grid;
    grid-template-columns:
        minmax(130px, 0.38fr) minmax(360px, 1.18fr) minmax(280px, 0.72fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: start;
    margin-bottom: clamp(46px, 6vw, 74px);
}

.delivery-scope-header .eyebrow {
    margin: 8px 0 0;
    color: var(--blue-700);
}

.delivery-scope-header h2 {
    max-width: 15ch;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2.35rem, 3.7vw, 3.9rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
}

.delivery-scope-introduction {
    max-width: 47ch;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.68;
}

.delivery-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.delivery-scope-item {
    min-width: 0;
    padding:
        clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 34px) clamp(34px, 4vw, 52px);
}

.delivery-scope-item+.delivery-scope-item {
    border-left: 1px solid var(--line);
}

.delivery-scope-item:first-child {
    padding-left: 0;
}

.delivery-scope-item:last-child {
    padding-right: 0;
}

.delivery-scope-image {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: #f2f5f6;
}

.delivery-scope-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-scope-image-contain img {
    object-fit: contain;
}

.delivery-scope-item:nth-child(2) .delivery-scope-image {
    background: #ffffff;
}

.delivery-scope-item:nth-child(4) .delivery-scope-image {
    background: #000000;
}

.delivery-scope-identity {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    margin-top: 26px;
}

.delivery-scope-identity span,
.delivery-scope-identity p {
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1.45;
}

.delivery-scope-identity p {
    margin: 0;
}

.delivery-scope-identity span {
    font-size: 0.86rem;
    letter-spacing: 0;
}

.delivery-scope-item h3 {
    margin: 20px 0 0;
    color: var(--navy-950);
    font-size: clamp(1.3rem, 1.7vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.delivery-scope-description {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .delivery-scope-header {
        grid-template-columns:
            minmax(120px, 0.35fr) minmax(0, 1fr);
    }

    .delivery-scope-introduction {
        grid-column: 2;
    }

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

    .delivery-scope-item {
        padding-inline: clamp(22px, 4vw, 42px);
    }

    .delivery-scope-item:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .delivery-scope-item:nth-child(even) {
        padding-right: 0;
        border-left: 1px solid var(--line);
    }

    .delivery-scope-item:nth-child(n + 3) {
        padding-top: clamp(34px, 5vw, 52px);
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 680px) {
    .delivery-scope {
        padding-block: 60px;
    }

    .delivery-scope-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 38px;
    }

    .delivery-scope-header h2 {
        max-width: 17ch;
        font-size: clamp(2.4rem, 12vw, 3.45rem);
    }

    .delivery-scope-introduction {
        grid-column: auto;
    }

    .delivery-scope-grid {
        grid-template-columns: 1fr;
    }

    .delivery-scope-item {
        padding-inline: 0;
    }

    .delivery-scope-item:nth-child(even) {
        border-left: 0;
    }

    .delivery-scope-item:nth-child(n + 2) {
        padding-top: 34px;
        border-top: 1px solid var(--line);
    }

    .delivery-scope-item h3,
    .delivery-scope-description {
        margin-left: 46px;
    }
}

/* Markets and applications */

.markets-applications {
    position: relative;
    overflow: hidden;
    padding-block: clamp(78px, 9vw, 126px);
    background:
        radial-gradient(circle at 4% 96%,
            rgba(69, 199, 233, 0.14),
            transparent 30%),
        linear-gradient(145deg,
            var(--navy-950) 0%,
            var(--navy-900) 58%,
            #0d3c50 100%);
    color: #ffffff;
}

.markets-applications::after {
    position: absolute;
    top: -330px;
    right: -220px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(69, 199, 233, 0.18);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.markets-applications .container {
    position: relative;
    z-index: 1;
}

.markets-applications-header {
    max-width: 850px;
    margin-bottom: clamp(46px, 6vw, 72px);
}

.markets-applications-header .eyebrow {
    margin: 0 0 20px;
    color: var(--cyan-400);
}

.markets-applications-header h2 {
    max-width: 15ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.45rem, 4vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.markets-applications-header>p:last-child {
    max-width: 66ch;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.68;
}

.market-list {
    border-top: 1px solid var(--dark-line);
}

.market {
    display: grid;
    grid-template-columns:
        minmax(210px, 0.6fr) minmax(300px, 0.92fr) minmax(380px, 1.2fr);
    gap: clamp(34px, 5vw, 76px);
    padding-block: clamp(40px, 5vw, 62px);
    border-bottom: 1px solid var(--dark-line);
}

.market-identity {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.market-identity img {
    display: block;
    width: 48px;
    height: 48px;
}

.market-identity span {
    display: block;
    margin-bottom: 7px;
    color: var(--signal, #9bd629);
    font-family: var(--font-technical);
    font-size: 1rem;
    font-weight: 600;
}

.market-identity p,
.market-examples-label {
    margin: 0;
    color: var(--cyan-400);
    font-family: var(--font-technical);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1.5;
}

.market-summary h3 {
    max-width: 20ch;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(1.65rem, 2.5vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.06;
}

.market-summary>p {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.64;
}

.market-examples-label {
    margin-bottom: 18px;
}

.market-examples ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.market-examples li {
    display: grid;
    grid-template-columns:
        minmax(145px, 0.75fr) minmax(0, 1fr);
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-examples strong {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.market-examples span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 1120px) {
    .market {
        grid-template-columns:
            minmax(190px, 0.58fr) minmax(0, 1.42fr);
    }

    .market-examples {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .markets-applications {
        padding-block: 68px;
    }

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

    .markets-applications-header {
        margin-bottom: 38px;
    }

    .markets-applications-header h2 {
        max-width: 15ch;
        font-size: clamp(2.55rem, 12vw, 3.8rem);
    }

    .market-examples {
        grid-column: auto;
    }

    .market {
        gap: 28px;
        padding-block: 38px;
    }

    .market-summary h3 {
        max-width: 18ch;
    }

    .market-examples li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
/* Responsive */

@media (max-width: 980px) {

    

    .solutions-hero-heading,
    .solutions-section-heading {
        grid-template-columns: 1fr;
    }

    .solutions-hero-introduction {
        max-width: 650px;
    }

    .solutions-hero-title h1 {
        font-size: clamp(3rem, 8vw, 4.8rem);
    }

    .solutions-scope {
        grid-template-columns: 1fr;
    }

    .solutions-scope>div+div {
        border-left: 0;
    }

  

    
}

@media (max-width: 680px) {

    
    .solutions-hero {
        padding-top: 64px;
    }

    .solutions-hero-heading {
        margin-bottom: 42px;
    }

        .solutions-hero-title h1 {
            font-size: clamp(2.75rem, 12vw, 3.8rem);
        }

    .solutions-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

        .solutions-hero-visual {
            min-height: 340px;
        }

    

    .solutions-scope>div {
        grid-template-columns: 38px 1fr;
        min-height: 0;
    }

     .solutions-section-heading h2 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }
    

    
}


    
/* Complete system engineering */

.system-engineering {
    position: relative;
    overflow: hidden;
    padding-block: clamp(88px, 9vw, 144px);
    background:
        linear-gradient(135deg,
            rgba(18, 155, 210, 0.055),
            transparent 34%),
        var(--surface);
}

.system-engineering-header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: clamp(36px, 4vw, 64px);
    align-items: stretch;
    margin-bottom: clamp(48px, 7vw, 88px);
}

.system-engineering-heading .eyebrow {
    margin-bottom: 18px;
    color: var(--blue-700);
}

.system-engineering-heading h2 {
    max-width: 17ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    font-weight: 500;
    letter-spacing: -0.052em;
    line-height: 1;
}

.system-engineering-scope {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 52px);
    border-left: 1px solid var(--line-strong);
    background:
        linear-gradient(135deg,
            rgba(220, 246, 252, 0.5),
            rgba(255, 255, 255, 0.72));
}

.system-engineering-scope-label {
    margin: 0 0 18px;
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.system-engineering-scope-statement {
    display: block;
    max-width: 25ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.system-engineering-introduction {
    max-width: 52ch;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.system-engineering-stage {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr) minmax(380px, 0.82fr);
    align-items: center;
}

.system-engineering-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: var(--surface-blue);
}

.system-engineering-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.system-engineering-aspects {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    margin-left: -64px;
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 64px rgba(4, 35, 50, 0.13);
}

.system-engineering-aspect {
    min-width: 0;
    padding: clamp(24px, 3vw, 38px);
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.system-engineering-aspect-identity {
    display: flex;
    gap: 14px;
    align-items: baseline;
    margin-bottom: 18px;
}

.system-engineering-aspect-number {
    flex: 0 0 auto;
    color: var(--blue-600);
    font-family: var(--font-technical);
    font-size: 0.82rem;
    font-weight: 600;
}

.system-engineering-aspect-label {
    margin: 0;
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.085em;
    line-height: 1.45;
}

.system-engineering-aspect-description {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.62;
}

.system-engineering-outcome {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(170px, 0.35fr) minmax(0, 1.65fr);
    gap: clamp(32px, 6vw, 88px);
    align-items: center;
    margin-top: clamp(38px, 5vw, 64px);
    padding: clamp(28px, 4vw, 46px);
    overflow: hidden;
    background:
        linear-gradient(125deg,
            var(--navy-950),
            var(--navy-800));
    color: #ffffff;
}

.system-engineering-outcome::after {
    position: absolute;
    right: -90px;
    bottom: -180px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(69, 199, 233, 0.24);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.system-engineering-outcome-label {
    position: relative;
    z-index: 1;
    color: var(--cyan-400);
    font-family: var(--font-technical);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.system-engineering-outcome-text {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 36ch;
    font-size: clamp(1.45rem, 2.5vw, 2.45rem);
    font-weight: 500;
    letter-spacing: -0.032em;
    line-height: 1.16;
}

@media (max-width: 1080px) {
    .system-engineering-stage {
        grid-template-columns:
            minmax(0, 1.1fr) minmax(350px, 0.9fr);
    }

    .system-engineering-aspects {
        margin-left: -44px;
    }
}

@media (max-width: 980px) {
            .system-engineering-header {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
            
                .system-engineering-scope {
                    max-width: 760px;
                    padding: 30px;
                    border-top: 1px solid var(--line-strong);
                    border-left: 0;
                }
            
                .system-engineering-scope-statement {
                    max-width: 32ch;
                }
            
                .system-engineering-introduction {
                    max-width: 64ch;
                }

    .system-engineering-stage {
        grid-template-columns: 1fr;
    }

    .system-engineering-visual {
        width: calc(100% - 32px);
    }

    .system-engineering-aspects {
        width: calc(100% - 32px);
        margin: -32px 0 0 auto;
    }

    .system-engineering-outcome {
        margin-top: 52px;
    }
}

@media (max-width: 680px) {
    .system-engineering {
        padding-block: 68px;
    }

    .system-engineering-header {
        margin-bottom: 40px;
    }

    .system-engineering-heading h2 {
        max-width: 15ch;
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .system-engineering-visual {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .system-engineering-aspects {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 20px 0 0;
    }

    .system-engineering-aspect {
        padding: 24px;
    }

    .system-engineering-outcome {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
        padding: 28px 24px;
    }

    .system-engineering-outcome-text {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
    }
                .system-engineering-scope {
                    padding: 26px 24px;
                }
        
                .system-engineering-scope-statement {
                    font-size: 1.35rem;
                }
        
                .system-engineering-introduction {
                    margin-top: 18px;
                }
}

/* Selected real work */

.selected-work-header {
    display: grid;
    grid-template-columns:
        minmax(260px, 0.48fr) minmax(0, 1.12fr);
    grid-template-rows: auto 1fr;
    gap: 16px clamp(48px, 8vw, 120px);
    align-items: start;
    margin-bottom: clamp(38px, 4.5vw, 56px);
    padding-bottom: clamp(30px, 4vw, 46px);
    border-bottom: 1px solid var(--line-strong);
}

.selected-work-header .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    color: var(--blue-700);
}

.selected-work-header h2 {
    grid-column: 2;
    grid-row: 1 / 3;
    max-width: 18ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.55rem, 3.8vw, 3.7rem);
    font-weight: 500;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.selected-work-introduction {
    grid-column: 1;
    grid-row: 2;
    max-width: 42ch;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.68;
}

/* Unified project grid */

.selected-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.selected-work-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
}

.selected-work-card--featured {
    position: relative;
    overflow: hidden;
    border-color: var(--navy-950);
    background: var(--navy-950);
    color: #ffffff;
}

.selected-work-card--featured::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(90deg,
            var(--cyan-400),
            var(--blue-500));
    content: "";
}

.selected-work-card--featured::after {
    position: absolute;
    right: -155px;
    bottom: -195px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(69, 199, 233, 0.2);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

/* Project images */

.selected-work-card-image {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--surface-blue);
}

.selected-work-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.selected-work-card--featured .selected-work-card-image {
    background: #747474;
}

.selected-work-card--featured .selected-work-card-image img {
    object-fit: contain;
}

.selected-work-card:hover .selected-work-card-image img {
    transform: scale(1.025);
}

/* Project content */

.selected-work-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: clamp(26px, 2.5vw, 36px);
}

.selected-work-meta {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 18px;
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.085em;
    line-height: 1.45;
}

.selected-work-meta span:first-child {
    color: var(--blue-600);
    font-size: 0.86rem;
}

.selected-work-card--featured .selected-work-meta {
    color: var(--cyan-400);
}

.selected-work-card--featured .selected-work-meta span:first-child {
    color: var(--cyan-400);
}

.selected-work-card-content h3 {
    max-width: 22ch;
    margin: 0 0 17px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.038em;
    line-height: 1.08;
}

.selected-work-card--featured .selected-work-card-content h3 {
    color: #ffffff;
}

.selected-work-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.selected-work-card--featured .selected-work-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Evidence */

.selected-work-evidence {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.selected-work-evidence li {
    padding: 6px 9px;
    border: 1px solid var(--line);
    background: var(--surface-blue);
    color: var(--text);
    font-family: var(--font-technical);
    font-size: 0.63rem;
    line-height: 1.35;
}

.selected-work-card--featured .selected-work-evidence li {
    border-color: var(--dark-line);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
}

/* Individual project links */

.selected-work-project-link {
    width: fit-content;
    margin-top: auto;
    color: var(--blue-700);
    font-weight: 600;
}

.selected-work-card--featured .selected-work-project-link {
    color: #ffffff;
    text-decoration-color: var(--cyan-400);
}

/* News index CTA */

.selected-work-news {
    display: grid;
    grid-template-columns:
        minmax(190px, 0.42fr) minmax(0, 1fr) auto;
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    margin-top: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    color: var(--ink);
    text-decoration: none;
}

.selected-work-news-eyebrow {
    color: var(--blue-700);
    font-family: var(--font-technical);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.selected-work-news-label {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.25;
}

.selected-work-news-arrow {
    color: var(--blue-600);
    font-size: 1.7rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.selected-work-news:hover {
    color: var(--blue-700);
}

.selected-work-news:hover .selected-work-news-arrow {
    transform: translateX(6px);
}

/* Selected Work responsive */

@media (max-width: 1080px) {
    .selected-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .selected-work-card--featured {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns:
            minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .selected-work-card--featured .selected-work-card-image {
        height: 100%;
        aspect-ratio: auto;
    }
}

@media (max-width: 720px) {

    .selected-work-header {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            gap: 18px;
            padding-bottom: 32px;
        }
    
        .selected-work-header .eyebrow,
        .selected-work-header h2,
        .selected-work-introduction {
            grid-column: 1;
            grid-row: auto;
        }
    
        .selected-work-header h2 {
            max-width: 16ch;
        }
    
        .selected-work-introduction {
            max-width: 60ch;
            margin-top: 0;
        }
    .selected-work-grid {
        grid-template-columns: 1fr;
    }

    .selected-work-card--featured {
        display: flex;
        grid-column: auto;
    }

    .selected-work-card--featured .selected-work-card-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .selected-work-news {
        grid-template-columns: 1fr auto;
        gap: 12px 20px;
    }

    .selected-work-news-eyebrow {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .selected-work {
        padding-block: 64px;
    }

    .selected-work-header {
        margin-bottom: 36px;
    }

    .selected-work-header h2 {
        font-size: clamp(2.4rem, 11vw, 3.25rem);
    }

    .selected-work-introduction {
        margin-top: 20px;
    }

    .selected-work-card-content {
        padding: 26px 22px 30px;
    }

    .selected-work-evidence {
        align-items: flex-start;
        flex-direction: column;
    }

    .selected-work-news {
        padding-block: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .selected-work-card-image img,
    .selected-work-news-arrow {
        transition: none;
    }
}