﻿/* ============================================================
   GLOBAL
   ============================================================ */

:root {
    --background: #ffffff;
    --surface: #f5f7f9;
    --surface-dark: #111827;
    --text: #17202a;
    --text-muted: #667085;
    --border: #dfe4ea;
    --accent: #1f6feb;
    --accent-dark: #1557b0;
    --white: #ffffff;
    --max-width: 1240px;
    --header-height: 82px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}


/* ============================================================
   SHARED CONTAINER
   ============================================================ */

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 228, 234, 0.85);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(calc(100% - 48px), var(--max-width));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* ============================================================
   BRAND
   ============================================================ */

.site-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.brand-name {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.brand-subtitle {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-left: auto;
}

    .main-navigation a {
        position: relative;
        display: inline-flex;
        align-items: center;
        height: var(--header-height);
        color: #475467;
        font-size: 0.88rem;
        font-weight: 600;
        white-space: nowrap;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .main-navigation a:hover {
            color: var(--accent);
        }

        .main-navigation a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 17px;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.2s ease;
        }

        .main-navigation a:hover::after {
            transform: scaleX(1);
        }


    /* ============================================================
   CONTACT NAVIGATION BUTTON
   ============================================================ */

    .main-navigation .nav-contact {
        height: auto;
        padding: 10px 18px;
        color: var(--white);
        background: var(--surface-dark);
        border-radius: 5px;
    }

        .main-navigation .nav-contact::after {
            display: none;
        }

        .main-navigation .nav-contact:hover {
            color: var(--white);
            background: var(--accent);
        }


/* ============================================================
   MOBILE NAVIGATION BUTTON
   ============================================================ */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .mobile-menu-toggle span {
        display: block;
        height: 2px;
        margin: 5px 0;
        background: var(--text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }


/* ============================================================
   MAIN CONTENT
   ============================================================ */

main {
    width: 100%;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 135deg, #f7f9fc 0%, #ffffff 55%, #edf4ff 100% );
}

    .hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        right: -220px;
        top: -180px;
        border-radius: 50%;
        background: rgba(31, 111, 235, 0.08);
    }

.hero-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow,
.section-eyebrow {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

    .hero h1 span {
        display: block;
        color: var(--accent);
    }

.hero-description {
    max-width: 680px;
    margin: 32px 0 36px;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    color: var(--white);
    background: var(--accent);
}

    .button-primary:hover {
        background: var(--accent-dark);
    }

.button-secondary {
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
}

    .button-secondary:hover {
        border-color: var(--accent);
    }


/* ============================================================
   HERO CARD
   ============================================================ */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: min(100%, 430px);
    padding: 38px;
    color: var(--white);
    background: linear-gradient( 145deg, #111827, #1d2939 );
    border-radius: 10px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.hero-card-label {
    color: #98a2b3;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero-card-title {
    margin-top: 12px;
    font-size: 2rem;
    font-weight: 800;
}

.hero-card-text {
    margin-top: 14px;
    color: #c7ced8;
    line-height: 1.7;
}

.hero-card-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .hero-card-grid div {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

        .hero-card-grid div:nth-child(odd) {
            padding-right: 15px;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-card-grid div:nth-child(even) {
            padding-left: 20px;
        }

    .hero-card-grid strong,
    .hero-card-grid span {
        display: block;
    }

    .hero-card-grid strong {
        font-size: 1rem;
    }

    .hero-card-grid span {
        margin-top: 4px;
        color: #98a2b3;
        font-size: 0.75rem;
    }


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.content-section {
    padding: 120px 0;
}

.section-container {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 60px;
}

    .section-heading h2 {
        margin: 0;
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .section-heading > p {
        max-width: 650px;
        margin-top: 20px;
        color: var(--text-muted);
        font-size: 1.05rem;
    }


/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

    .about-grid p {
        color: var(--text-muted);
    }

    .about-grid .large-text {
        color: var(--text);
        font-size: 1.65rem;
        line-height: 1.5;
    }


/* ============================================================
   TECHNOLOGY
   ============================================================ */

.technology-section {
    background: var(--surface);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.technology-card {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .technology-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

.technology-number {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.technology-card h3 {
    margin: 16px 0 12px;
    font-size: 1.4rem;
}

.technology-card p {
    color: var(--text-muted);
}

.technology-tags {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .technology-tags span {
        padding: 5px 10px;
        color: #475467;
        background: #f2f4f7;
        border-radius: 4px;
        font-size: 0.72rem;
        font-weight: 700;
    }


/* ============================================================
   EXPERIENCE
   ============================================================ */

.experience-preview {
    border-top: 1px solid var(--border);
}

.experience-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.experience-year {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.experience-item h3 {
    margin: 0;
    font-size: 1.5rem;
}

.experience-role {
    margin-top: 5px;
    color: var(--text-muted);
    font-weight: 600;
}

.experience-item p {
    max-width: 750px;
    margin-top: 15px;
    color: var(--text-muted);
}


/* ============================================================
   PROJECTS
   ============================================================ */

.projects-section {
    background: var(--surface);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    min-height: 300px;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.project-label {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-card h3 {
    margin: 18px 0;
    font-size: 1.45rem;
    line-height: 1.25;
}

.project-card p {
    color: var(--text-muted);
}


/* ============================================================
   RESUME
   ============================================================ */

.resume-section {
    padding: 110px 0;
    color: var(--white);
    background: var(--surface-dark);
}

.resume-content {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 100px;
    align-items: center;
}

    .resume-content .section-eyebrow {
        color: #7db1ff;
    }

    .resume-content h2 {
        max-width: 750px;
        margin: 0;
        font-size: clamp(2.3rem, 4vw, 3.8rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .resume-content p {
        color: #b7c0cd;
        font-size: 1.05rem;
    }


/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
    padding: 140px 0;
}

.contact-content {
    max-width: 850px;
}

    .contact-content h2 {
        margin: 0;
        font-size: clamp(2.7rem, 5vw, 4.5rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .contact-content p {
        max-width: 650px;
        margin: 28px 0 32px;
        color: var(--text-muted);
        font-size: 1.1rem;
    }


/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero {
    padding: 130px 0 120px;
    background: linear-gradient( 135deg, #f7f9fc 0%, #ffffff 65%, #edf4ff 100% );
}

.page-hero-dark {
    color: var(--white);
    background: linear-gradient( 135deg, #0b1220 0%, #172033 100% );
}

.page-hero .section-eyebrow {
    margin-bottom: 24px;
}

.page-hero h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.page-introduction {
    max-width: 750px;
    margin: 30px 0 0;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.page-hero-dark .page-introduction {
    color: #b7c0cd;
}

.page-hero-dark .section-eyebrow {
    color: #7db1ff;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    color: #c7ced8;
    background: #0b1220;
}

.footer-inner {
    padding: 60px 0 35px;
}

.footer-brand {
    margin-bottom: 40px;
}

    .footer-brand strong {
        display: block;
        color: var(--white);
        font-size: 1.15rem;
        font-weight: 800;
    }

    .footer-brand span {
        display: block;
        margin-top: 7px;
        color: #98a2b3;
        font-size: 0.75rem;
    }

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-navigation a {
        color: #c7ced8;
        font-size: 0.85rem;
    }

        .footer-navigation a:hover {
            color: var(--white);
        }

.footer-copyright {
    padding-top: 30px;
    color: #667085;
    font-size: 0.75rem;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .header-inner {
        gap: 20px;
    }

    .main-navigation {
        gap: 18px;
    }

        .main-navigation a {
            font-size: 0.82rem;
        }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .about-grid {
        gap: 50px;
    }

    .resume-content {
        gap: 50px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE NAVIGATION
   ============================================================ */

@media (max-width: 850px) {

    :root {
        --header-height: 72px;
    }

    .header-inner {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .brand-subtitle {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: var(--header-height);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    }

        .main-navigation.is-open {
            display: flex;
        }

        .main-navigation a {
            height: auto;
            padding: 13px 12px;
        }

            .main-navigation a::after {
                display: none;
            }

        .main-navigation .nav-contact {
            margin-top: 5px;
            text-align: center;
            justify-content: center;
        }

    .content-section {
        padding: 85px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .resume-content {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 100px 0 90px;
    }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */

@media (max-width: 550px) {

    .container,
    .section-container,
    .hero-container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .hero-container {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .technology-card,
    .project-card {
        padding: 28px;
    }

    .page-hero {
        padding: 80px 0 75px;
    }

        .page-hero h1 {
            font-size: 3rem;
        }

    .page-introduction {
        font-size: 1rem;
    }

}
/* =========================================================
   AI & TECHNOLOGY PAGE
   ========================================================= */

.technology-architecture-section {
    background: var(--surface);
}

    .technology-architecture-section .section-heading {
        max-width: 820px;
    }


/* ---------------------------------------------------------
   Architecture diagram
   --------------------------------------------------------- */

.architecture-diagram {
    max-width: 900px;
    margin: 3rem auto 0;
}

.architecture-layer {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.architecture-layer-ai {
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(31, 111, 235, 0.12);
}

.architecture-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--surface-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.architecture-layer-ai .architecture-icon {
    background: var(--accent);
}

.architecture-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.architecture-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.architecture-connector {
    text-align: center;
    padding: 0.65rem 0;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Technology lists
   --------------------------------------------------------- */

.technology-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

    .technology-list li {
        position: relative;
        margin-bottom: 0.65rem;
        padding-left: 1.2rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

        .technology-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }


/* ---------------------------------------------------------
   Card numbering
   --------------------------------------------------------- */

.technology-card-number {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* ---------------------------------------------------------
   AI project intelligence highlight
   --------------------------------------------------------- */

.technology-highlight-section {
    background: var(--surface-dark);
    color: var(--white);
}

.technology-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.technology-highlight-content {
    max-width: 650px;
}

    .technology-highlight-content h2 {
        margin: 0.75rem 0 1.5rem;
        color: var(--white);
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1.1;
    }

    .technology-highlight-content p {
        color: #c7d0dc;
        line-height: 1.8;
    }

    .technology-highlight-content .section-label {
        color: #79b3ff;
    }


/* ---------------------------------------------------------
   AI example window
   --------------------------------------------------------- */

.ai-example-window {
    overflow: hidden;
    border: 1px solid #2b3645;
    border-radius: 12px;
    background: #0b1220;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.ai-example-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #263142;
    background: #111827;
}

.ai-example-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #667085;
}

.ai-example-title {
    margin-left: 0.6rem;
    color: #aeb9c8;
    font-size: 0.8rem;
    font-weight: 600;
}

.ai-example-body {
    padding: 1.5rem;
}

.ai-example-message {
    padding: 1rem 1.15rem;
    border-radius: 9px;
    font-size: 0.9rem;
    line-height: 1.65;
}

.ai-example-user {
    margin-left: 2rem;
    background: #1e3a5f;
    color: #dbeafe;
}

.ai-example-ai {
    margin-top: 1rem;
    background: #151f2f;
    color: #c7d0dc;
}

    .ai-example-ai strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }

    .ai-example-ai p {
        margin: 0;
    }


/* ---------------------------------------------------------
   Technology stack
   --------------------------------------------------------- */

.technology-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

    .technology-stack span {
        display: inline-flex;
        align-items: center;
        padding: 0.7rem 1rem;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--surface);
        color: var(--text);
        font-size: 0.85rem;
        font-weight: 600;
    }


/* ---------------------------------------------------------
   Closing section
   --------------------------------------------------------- */

.technology-closing-section {
    background: var(--surface);
}

.technology-closing {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .technology-closing h2 {
        margin: 0.75rem 0 1.25rem;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.15;
    }

    .technology-closing p {
        max-width: 720px;
        margin: 0 auto;
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.8;
    }


/* =========================================================
   AI & TECHNOLOGY RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .technology-highlight {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .architecture-layer {
        grid-template-columns: 56px 1fr;
        gap: 1.25rem;
    }

    .architecture-icon {
        width: 48px;
        height: 48px;
    }
}


@media (max-width: 550px) {

    .architecture-layer {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .architecture-icon {
        width: 46px;
        height: 46px;
    }

    .architecture-connector {
        padding: 0.5rem 0;
    }

    .technology-highlight {
        gap: 2rem;
    }

    .technology-highlight-content h2 {
        font-size: 2rem;
    }

    .ai-example-body {
        padding: 1rem;
    }

    .ai-example-user {
        margin-left: 0;
    }

    .technology-stack {
        gap: 0.5rem;
    }

    .technology-stack span {
        padding: 0.6rem 0.85rem;
        font-size: 0.8rem;
    }
}

/* =========================================================
   TECHNOLOGY PAGE INTRODUCTION
   ========================================================= */

.technology-page-introduction {
    max-width: 900px;
    margin: 0 auto;
}

    .technology-page-introduction .section-heading {
        max-width: 900px;
    }

    .technology-page-introduction .page-introduction-text {
        max-width: 900px;
    }

/* =========================================================
   PROJECTS PAGE
   ========================================================= */

.projects-introduction {
    max-width: 900px;
    margin: 0 auto;
}

    .projects-introduction p {
        max-width: 800px;
        color: var(--text-muted);
        font-size: 1.08rem;
        line-height: 1.8;
    }


/* ---------------------------------------------------------
   Case studies
   --------------------------------------------------------- */

.project-case-study {
    position: relative;
}

.project-case-study-alt {
    background: var(--surface);
}

.project-case-study-featured {
    padding: 6rem 0;
    background: var(--surface-dark);
    color: var(--white);
}

.project-featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 5rem;
    align-items: center;
}

.project-case-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
}

.project-case-grid-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.project-case-content {
    max-width: 680px;
}

.project-number {
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.project-category {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.project-case-study-featured .project-category {
    color: #8dbfff;
}

.project-case-content h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
}

.project-lead {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.65;
}

.project-case-content p:not(.project-lead) {
    color: var(--text-muted);
    line-height: 1.8;
}

.project-case-study-featured .project-case-content p:not(.project-lead),
.project-case-study-featured .project-lead {
    color: #c7d0dc;
}


/* ---------------------------------------------------------
   Project tags
   --------------------------------------------------------- */

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.75rem;
}

    .project-tags span {
        padding: 0.55rem 0.8rem;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--surface);
        color: var(--text);
        font-size: 0.75rem;
        font-weight: 600;
    }

.project-case-study-featured .project-tags span {
    border-color: #344154;
    background: #182233;
    color: #d6dfeb;
}


/* ---------------------------------------------------------
   Featured AI visual
   --------------------------------------------------------- */

.project-visual {
    min-width: 0;
}

.project-window {
    overflow: hidden;
    border: 1px solid #344154;
    border-radius: 14px;
    background: #0b1220;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.project-window-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #273244;
    color: #9aa8ba;
    font-size: 0.78rem;
    font-weight: 600;
}

.project-window-controls {
    display: flex;
    gap: 0.4rem;
}

    .project-window-controls span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #5b6675;
    }

.project-window-body {
    padding: 1.5rem;
}

.project-ai-question {
    margin-left: 2rem;
    padding: 1rem;
    border-radius: 9px;
    background: #1e3a5f;
    color: #dbeafe;
    font-size: 0.9rem;
    line-height: 1.5;
}

.project-ai-response {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 9px;
    background: #151f2f;
}

.project-ai-response-label {
    margin-bottom: 0.5rem;
    color: #70adff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-ai-response h4 {
    margin: 0 0 0.6rem;
    color: #ffffff;
    font-size: 1rem;
}

.project-ai-response p {
    margin: 0;
    color: #aeb9c8;
    font-size: 0.85rem;
    line-height: 1.65;
}

.project-ai-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

    .project-ai-metrics div {
        padding: 0.75rem;
        border: 1px solid #2c3849;
        border-radius: 7px;
    }

    .project-ai-metrics strong,
    .project-ai-metrics span {
        display: block;
    }

    .project-ai-metrics strong {
        color: #7f8da0;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .project-ai-metrics span {
        margin-top: 0.3rem;
        color: #dce5ef;
        font-size: 0.75rem;
    }


/* ---------------------------------------------------------
   Architecture strip
   --------------------------------------------------------- */

.project-architecture-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.5rem;
    border: 1px solid #2d3a4d;
    border-radius: 12px;
    background: #131d2c;
}

    .project-architecture-strip div:not(.project-architecture-arrow) {
        text-align: center;
    }

    .project-architecture-strip strong,
    .project-architecture-strip span {
        display: block;
    }

    .project-architecture-strip strong {
        color: #ffffff;
        font-size: 0.85rem;
    }

    .project-architecture-strip span {
        margin-top: 0.3rem;
        color: #8997aa;
        font-size: 0.7rem;
    }

.project-architecture-arrow {
    color: #6eaaff;
    font-size: 1.5rem;
}


/* ---------------------------------------------------------
   Project dashboard visual
   --------------------------------------------------------- */

.project-dashboard {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.project-dashboard-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
}

.project-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.dashboard-card {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #ffffff;
}

    .dashboard-card span,
    .dashboard-card strong {
        display: block;
    }

    .dashboard-card span {
        color: var(--text-muted);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .dashboard-card strong {
        margin-top: 0.5rem;
        color: var(--text);
        font-size: 1.15rem;
    }


/* ---------------------------------------------------------
   Semantic search
   --------------------------------------------------------- */

.semantic-visual {
    margin-top: 2rem;
}

.semantic-search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    color: var(--text-muted);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

    .semantic-search-box strong {
        color: var(--accent);
        font-size: 1.2rem;
    }

.semantic-results {
    margin-top: 1rem;
}

.semantic-result {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.semantic-score {
    align-self: start;
    padding: 0.4rem;
    border-radius: 6px;
    background: var(--surface);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.semantic-result strong {
    font-size: 0.85rem;
}

.semantic-result p {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Semantic vector visual
   --------------------------------------------------------- */

.project-semantic-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.semantic-vector {
    width: 100%;
    max-width: 430px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    text-align: center;
}

.vector-label {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.vector-values {
    margin: 1.25rem 0;
    padding: 1rem;
    border-radius: 8px;
    background: var(--surface-dark);
    color: #a9caff;
    font-family: monospace;
    font-size: 0.8rem;
}

.vector-arrow {
    margin: 0.5rem 0;
    color: var(--accent);
    font-size: 1.5rem;
}

.vector-dimensions {
    margin-top: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Data pipeline
   --------------------------------------------------------- */

.data-pipeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
}

.pipeline-node {
    width: min(100%, 300px);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.pipeline-node-highlight {
    border-color: var(--accent);
    color: var(--accent);
}

.pipeline-line {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Cloud architecture
   --------------------------------------------------------- */

.cloud-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.cloud-layer {
    width: min(100%, 430px);
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

    .cloud-layer strong,
    .cloud-layer span {
        display: block;
    }

    .cloud-layer strong {
        color: var(--text);
        font-size: 0.9rem;
    }

    .cloud-layer span {
        margin-top: 0.4rem;
        color: var(--text-muted);
        font-size: 0.7rem;
        line-height: 1.5;
    }

.cloud-arrow {
    padding: 0.65rem 0;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Closing section
   --------------------------------------------------------- */

.projects-closing-section {
    background: var(--surface-dark);
    color: var(--white);
}

.projects-closing {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .projects-closing h2 {
        margin: 0.75rem 0 1.25rem;
        color: var(--white);
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.15;
    }

    .projects-closing p {
        max-width: 700px;
        margin: 0 auto 2rem;
        color: #c7d0dc;
        font-size: 1.05rem;
        line-height: 1.8;
    }


/* =========================================================
   PROJECTS RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .project-featured-grid,
    .project-case-grid,
    .project-case-grid-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-case-content {
        max-width: none;
    }

    .project-case-grid-reverse .project-case-content {
        order: 1;
    }

    .project-case-grid-reverse .project-case-visual {
        order: 2;
    }

    .project-architecture-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-architecture-arrow {
        transform: rotate(90deg);
    }
}


@media (max-width: 550px) {

    .project-case-study-featured {
        padding: 4rem 0;
    }

    .project-ai-question {
        margin-left: 0;
    }

    .project-ai-metrics {
        grid-template-columns: 1fr;
    }

    .project-window-body {
        padding: 1rem;
    }

    .project-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .semantic-result {
        grid-template-columns: 1fr;
    }

    .semantic-score {
        width: 72px;
    }

    .semantic-vector {
        padding: 1.5rem;
    }

    .data-pipeline {
        padding: 1rem 0;
    }

    .cloud-architecture {
        padding: 0;
    }
}
/* =========================================================
   PROJECTS PAGE
   ========================================================= */

.projects-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 30%, rgba(31, 111, 235, 0.18), transparent 35%), linear-gradient(135deg, #0b1220 0%, #111827 55%, #162338 100%);
    color: var(--white);
}

    .projects-page-hero::after {
        content: "";
        position: absolute;
        right: -160px;
        bottom: -220px;
        width: 620px;
        height: 620px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

.projects-page-hero-content {
    position: relative;
    z-index: 2;
}

.projects-hero-copy {
    max-width: 900px;
}

.projects-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #8ebcff;
}

.projects-hero-copy h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

    .projects-hero-copy h1 span {
        display: block;
        color: #8ebcff;
    }

.projects-hero-copy p {
    max-width: 760px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.18rem;
    line-height: 1.8;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.projects-introduction-section {
    padding: 110px 0 100px;
    background: var(--background);
}

.projects-introduction {
    max-width: 900px;
    margin: 0 auto;
}

.section-kicker {
    margin-bottom: 18px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.projects-introduction h2 {
    max-width: 800px;
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.projects-introduction p {
    max-width: 820px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
}


/* =========================================================
   PROJECT SHOWCASE
   ========================================================= */

.project-showcase {
    padding: 120px 0;
}

.project-showcase-light {
    background: var(--surface);
}

.project-showcase-featured {
    background: #f8fafc;
}

.project-showcase-dark {
    background: #0d1522;
    color: var(--white);
}

.project-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
}

.project-showcase-reverse .project-showcase-content {
    order: 2;
}

.project-showcase-reverse .project-visual {
    order: 1;
}

.project-showcase-content {
    min-width: 0;
}

.project-number {
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.project-category {
    margin-bottom: 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.project-showcase-dark .project-category {
    color: #91a4bd;
}

.project-lead {
    margin-bottom: 20px !important;
    color: var(--text);
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

.project-showcase-content p {
    margin: 0 0 28px;
    color: var(--text-muted);
    line-height: 1.8;
}

.project-showcase-content-light p {
    color: #aebbd0;
}

.project-showcase-content-light .project-lead {
    color: var(--white);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

    .project-tags span {
        display: inline-flex;
        padding: 8px 12px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--white);
        color: var(--text);
        font-size: 0.75rem;
        font-weight: 700;
    }

.project-showcase-dark .project-tags span {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #dce6f3;
}

.project-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(31, 111, 235, 0.05);
}

    .project-note strong {
        font-size: 0.78rem;
        color: var(--text);
    }

    .project-note span {
        color: var(--text-muted);
        font-size: 0.78rem;
        line-height: 1.5;
    }

.project-note-dark {
    background: rgba(255, 255, 255, 0.04);
}

    .project-note-dark strong {
        color: var(--white);
    }

    .project-note-dark span {
        color: #9eacc0;
    }


/* =========================================================
   AI DASHBOARD
   ========================================================= */

.project-visual {
    min-width: 0;
}

/* Main AI dashboard window */
.ai-dashboard {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* Dashboard header */
.ai-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid #e5eaf0;
    background: #ffffff;
}

.window-label {
    display: block;
    margin-bottom: 5px;
    color: #7b8797;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.ai-dashboard-header strong {
    display: block;
    color: #182230;
    font-size: 0.95rem;
}

.status-pill {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f7ef;
    color: #257942;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Dashboard metrics */
.ai-dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e5eaf0;
    background: #f8fafc;
}

.ai-metric {
    padding: 20px 22px;
    border-right: 1px solid #e5eaf0;
}

    .ai-metric:last-child {
        border-right: none;
    }

    .ai-metric span {
        display: block;
        margin-bottom: 7px;
        color: #7b8797;
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .ai-metric strong {
        color: #182230;
        font-size: 1rem;
    }

/* Dashboard body */
.ai-dashboard-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
    gap: 24px;
    padding: 24px 28px;
}

.ai-panel {
    min-width: 0;
}

.ai-panel-title {
    margin-bottom: 14px;
    color: #7b8797;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Milestones */
.ai-milestone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f4;
}

    .ai-milestone:last-child {
        border-bottom: none;
    }

    .ai-milestone span {
        color: #3d4a5a;
        font-size: 0.82rem;
    }

    .ai-milestone strong {
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .ai-milestone.complete strong {
        color: #27804a;
    }

    .ai-milestone.delayed strong {
        color: #c27a14;
    }

    .ai-milestone.ontime strong {
        color: #27804a;
    }

    .ai-milestone.upcoming strong {
        color: #667085;
    }

/* AI summary panel */
.ai-summary-panel {
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

    .ai-summary-panel p {
        margin: 0;
        color: #526173;
        font-size: 0.82rem;
        line-height: 1.65;
    }

.ai-summary-label {
    margin-bottom: 10px;
    color: #1f6feb;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Dashboard footer / AI input */
.ai-dashboard-footer {
    display: flex;
    gap: 10px;
    padding: 18px 28px;
    border-top: 1px solid #e5eaf0;
    background: #f8fafc;
}

.ai-input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid #d7dee7;
    border-radius: 9px;
    background: #ffffff;
    color: #667085;
    font-size: 0.78rem;
}

.ai-button {
    flex-shrink: 0;
    padding: 11px 16px;
    border: none;
    border-radius: 9px;
    background: #1f6feb;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
}

/* =========================================================
   AI PROJECT INTELLIGENCE - VISUAL ALIGNMENT
   ========================================================= */

.project-showcase-featured .project-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.project-showcase-featured .ai-dashboard {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================================================
   AI DASHBOARD - RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .ai-dashboard-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .ai-dashboard-header {
        padding: 18px 20px;
    }

    .ai-dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .ai-metric {
        border-right: none;
        border-bottom: 1px solid #e5eaf0;
    }

        .ai-metric:last-child {
            border-bottom: none;
        }

    .ai-dashboard-body {
        padding: 20px;
    }

    .ai-dashboard-footer {
        padding: 16px 20px;
    }
}

@media (max-width: 550px) {

    .ai-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ai-dashboard-footer {
        flex-direction: column;
    }

    .ai-button {
        width: 100%;
    }
}

/* =========================================================
   AI PROJECT INTELLIGENCE - VISUAL ALIGNMENT
   ========================================================= */

.project-showcase-featured .project-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.project-showcase-featured .ai-dashboard {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
/* =========================================================
   PROJECT 01 - VISUAL COLUMN
   ========================================================= */

.project-showcase-featured-grid .project-visual {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}


/* =========================================================
   AI DASHBOARD
   ========================================================= */

.project-showcase-featured .ai-dashboard {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}


/* =========================================================
   REPRESENTATIVE ARCHITECTURE
   ========================================================= */

.project-architecture {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0;
    padding: 24px;
    border: 1px solid #dce3eb;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
}

.project-architecture-heading {
    margin-bottom: 20px;
    color: #7b8797;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-architecture-flow {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.project-architecture-node {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px;
    border: 1px solid #e1e7ee;
    border-radius: 10px;
    background: #f8fafc;
    box-sizing: border-box;
}

    .project-architecture-node span {
        display: block;
        margin-bottom: 8px;
        color: var(--accent);
        font-size: 0.62rem;
        font-weight: 800;
    }

    .project-architecture-node strong {
        display: block;
        margin-bottom: 6px;
        color: #253142;
        font-size: 0.74rem;
        line-height: 1.3;
    }

    .project-architecture-node small {
        display: block;
        color: #7b8797;
        font-size: 0.62rem;
        line-height: 1.45;
    }

.project-architecture-arrow {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #9aa7b8;
    font-size: 1rem;
}


/* =========================================================
   INTERACTIVE AI DEMONSTRATION
   ========================================================= */

.ai-demo-area {
    padding: 24px 28px 28px;
    border-top: 1px solid #e5eaf0;
    background: #f8fafc;
}

.ai-demo-heading {
    margin-bottom: 4px;
    color: #182230;
    font-size: 0.88rem;
    font-weight: 800;
}

.ai-demo-subheading {
    margin-bottom: 16px;
    color: #7b8797;
    font-size: 0.72rem;
}

.ai-demo-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-question {
    padding: 9px 12px;
    border: 1px solid #d9e1ea;
    border-radius: 8px;
    background: #ffffff;
    color: #435164;
    font-family: inherit;
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

    .ai-question:hover {
        border-color: #9bbcf0;
        background: #f4f8ff;
    }

    .ai-question.active {
        border-color: var(--accent);
        background: #eef5ff;
        color: #1557b0;
    }


/* =========================================================
   AI RESPONSE
   ========================================================= */

.ai-demo-response {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    background: #ffffff;
}

    .ai-demo-response.visible {
        display: block;
    }

.ai-demo-response-label {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

#ai-demo-response-text {
    color: #526173;
    font-size: 0.8rem;
    line-height: 1.65;
}


/* =========================================================
   AI INPUT
   ========================================================= */

.ai-demo-input-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .ai-demo-input-row .ai-input {
        flex: 1;
        min-width: 0;
    }

#ai-demo-question {
    overflow: hidden;
    color: #7b8797;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   AI DASHBOARD METRIC RISK
   ========================================================= */

.metric-risk {
    color: #c27a14 !important;
}


/* =========================================================
   PROJECT 01 RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .project-showcase-featured-grid {
        grid-template-columns: 1fr;
    }

        .project-showcase-featured-grid .project-visual {
            margin-top: 30px;
        }

    .project-architecture-flow {
        flex-wrap: wrap;
    }

    .project-architecture-node {
        flex: 1 1 calc(50% - 8px);
    }

    .project-architecture-arrow {
        display: none;
    }
}


@media (max-width: 650px) {

    .project-showcase-featured-grid .project-visual {
        gap: 24px;
    }

    .ai-demo-area {
        padding: 20px;
    }

    .ai-demo-input-row {
        flex-direction: column;
    }

        .ai-demo-input-row .ai-button {
            width: 100%;
        }

    .project-architecture {
        padding: 20px;
    }

    .project-architecture-node {
        flex: 1 1 100%;
    }
}
/* =========================================================
   PROJECT 02 - SEMANTIC CONSTRUCTION SEARCH
   ========================================================= */


/* =========================================================
   PROJECT 02 LAYOUT
   ========================================================= */

.project-02-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 64px;
    width: 100%;
}

    .project-02-grid .project-showcase-content {
        width: 100%;
        min-width: 0;
    }

.project-02-visual {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
}


    /* =========================================================
   SEMANTIC SEARCH WINDOW
   ========================================================= */

    .project-02-visual .semantic-window {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        border: 1px solid #dce3eb;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
    }


    /* =========================================================
   SEMANTIC HEADER
   ========================================================= */

    .project-02-visual .semantic-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 24px;
        border-bottom: 1px solid #e5eaf0;
        background: #ffffff;
    }

        .project-02-visual .semantic-header > div {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 0;
        }

        .project-02-visual .semantic-header strong {
            display: block;
            color: #1e2937;
            font-size: 0.92rem;
            line-height: 1.3;
        }

    .project-02-visual .semantic-status {
        flex: 0 0 auto;
        padding: 6px 9px;
        border: 1px solid #b9dfc7;
        border-radius: 999px;
        background: #effaf2;
        color: #287443;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    /* =========================================================
   SEARCH AREA
   ========================================================= */

    .project-02-visual .semantic-search-area {
        padding: 22px 24px;
        background: #f8fafc;
    }

    .project-02-visual .semantic-search-label {
        margin-bottom: 9px;
        color: #6f7c8d;
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .project-02-visual .semantic-search-row {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .project-02-visual .semantic-search-input {
        flex: 1;
        min-width: 0;
        height: 44px;
        padding: 0 14px;
        border: 1px solid #d5dde7;
        border-radius: 9px;
        outline: none;
        background: #ffffff;
        color: #263445;
        font-family: inherit;
        font-size: 0.78rem;
        box-sizing: border-box;
    }

        .project-02-visual .semantic-search-input:focus {
            border-color: #8db3eb;
            box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.08);
        }

    .project-02-visual .semantic-search-button {
        flex: 0 0 auto;
        height: 44px;
        padding: 0 18px;
        border: 0;
        border-radius: 9px;
        background: var(--accent);
        color: #ffffff;
        font-family: inherit;
        font-size: 0.74rem;
        font-weight: 700;
        cursor: pointer;
    }

        .project-02-visual .semantic-search-button:hover {
            background: var(--accent-dark);
        }

    .project-02-visual .semantic-search-hint {
        margin-top: 9px;
        color: #8a96a6;
        font-size: 0.66rem;
    }


    /* =========================================================
   RESULTS
   ========================================================= */

    .project-02-visual .semantic-results-area {
        padding: 22px 24px 24px;
        background: #ffffff;
    }

    .project-02-visual .semantic-results-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 14px;
    }

        .project-02-visual .semantic-results-header > div {
            display: flex;
            align-items: center;
            gap: 9px;
        }

    .project-02-visual .semantic-results-title {
        color: #273547;
        font-size: 0.76rem;
        font-weight: 800;
    }

    .project-02-visual .semantic-result-count {
        padding: 3px 7px;
        border-radius: 999px;
        background: #eef3f8;
        color: #7b8797;
        font-size: 0.58rem;
        font-weight: 700;
    }

    .project-02-visual .semantic-model {
        color: #8a96a6;
        font-size: 0.62rem;
    }


    /* =========================================================
   RESULT CARDS
   ========================================================= */

    .project-02-visual .semantic-results {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .project-02-visual .semantic-result {
        width: 100%;
        padding: 15px 16px;
        border: 1px solid #e1e7ee;
        border-radius: 10px;
        background: #ffffff;
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

        .project-02-visual .semantic-result:hover {
            border-color: #bfd2ec;
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
            transform: translateY(-1px);
        }

    .project-02-visual .semantic-result-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 7px;
    }

    .project-02-visual .semantic-result-type {
        color: #7b8797;
        font-size: 0.57rem;
        font-weight: 800;
        letter-spacing: 0.09em;
    }

    .project-02-visual .semantic-score {
        flex: 0 0 auto;
        padding: 4px 7px;
        border-radius: 5px;
        background: #eef5ff;
        color: #2165b7;
        font-size: 0.62rem;
        font-weight: 800;
    }

    .project-02-visual .semantic-result strong {
        display: block;
        margin-bottom: 6px;
        color: #293748;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .project-02-visual .semantic-result p {
        margin: 0 0 9px;
        color: #687688;
        font-size: 0.7rem;
        line-height: 1.55;
    }

    .project-02-visual .semantic-result-meta {
        color: #98a3b1;
        font-size: 0.6rem;
    }


    /* =========================================================
   NO RESULTS
   ========================================================= */

    .project-02-visual .semantic-no-results {
        display: none;
        margin-top: 10px;
        padding: 20px;
        border: 1px dashed #d5dde7;
        border-radius: 10px;
        background: #f8fafc;
        color: #7b8797;
        font-size: 0.72rem;
        line-height: 1.6;
        text-align: center;
    }

        .project-02-visual .semantic-no-results.visible {
            display: block;
        }


    /* =========================================================
   SEMANTIC FOOTER
   ========================================================= */

    .project-02-visual .semantic-footer {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
        padding: 18px 24px;
        border-top: 1px solid #e5eaf0;
        background: #f8fafc;
    }

        .project-02-visual .semantic-footer > div {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }

    .project-02-visual .semantic-footer-label {
        color: #929dac;
        font-size: 0.56rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .project-02-visual .semantic-footer strong {
        color: #455365;
        font-size: 0.67rem;
        line-height: 1.35;
    }


    /* =========================================================
   PROJECT 02 ARCHITECTURE
   ========================================================= */

    .project-02-visual .project-architecture {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 24px;
        box-sizing: border-box;
        border: 1px solid #dce3eb;
        border-radius: 16px;
        background: #ffffff;
    }

    .project-02-visual .project-architecture-flow {
        display: flex;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .project-02-visual .project-architecture-node {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px;
        box-sizing: border-box;
        border: 1px solid #e1e7ee;
        border-radius: 10px;
        background: #f8fafc;
    }

    .project-02-visual .project-architecture-arrow {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        color: #9aa7b8;
        font-size: 1rem;
    }


/* =========================================================
   PROJECT 02 RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .project-02-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-02-visual {
        margin-top: 0;
    }

        .project-02-visual .project-architecture-flow {
            flex-wrap: wrap;
        }

        .project-02-visual .project-architecture-node {
            flex: 1 1 calc(50% - 8px);
        }

        .project-02-visual .project-architecture-arrow {
            display: none;
        }
}


@media (max-width: 650px) {

    .project-02-grid {
        gap: 28px;
    }

    .project-02-visual {
        gap: 24px;
    }

        .project-02-visual .semantic-header {
            padding: 18px 20px;
        }

        .project-02-visual .semantic-search-area,
        .project-02-visual .semantic-results-area {
            padding-left: 20px;
            padding-right: 20px;
        }

        .project-02-visual .semantic-search-row {
            flex-direction: column;
        }

        .project-02-visual .semantic-search-button {
            width: 100%;
        }

        .project-02-visual .semantic-results-header {
            align-items: flex-start;
            flex-direction: column;
        }

        .project-02-visual .semantic-footer {
            grid-template-columns: 1fr;
            padding-left: 20px;
            padding-right: 20px;
        }

        .project-02-visual .project-architecture {
            padding: 20px;
        }

        .project-02-visual .project-architecture-node {
            flex: 1 1 100%;
        }
}
/* =========================================================
   PROJECT 02 - RESULT CONTENT WIDTH FIX
   ========================================================= */

.project-02-visual .semantic-result {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.project-02-visual .semantic-result-top {
    width: 100%;
}

.project-02-visual .semantic-result strong {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.project-02-visual .semantic-result p {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    color: #687688;
    font-size: 0.7rem;
    line-height: 1.55;
}

.project-02-visual .semantic-result-meta {
    display: block;
    width: 100%;
    max-width: none;
}
/* =========================================================
   PROJECT 03 - CONSTRUCTION DATA INTEGRATION
   ========================================================= */

.project-03 {
    position: relative;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.project-03-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: start;
}


/* ---------------------------------------------------------
   VISUAL COLUMN
   --------------------------------------------------------- */

.project-03-visual {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}


/* ---------------------------------------------------------
   DATA PIPELINE WINDOW
   --------------------------------------------------------- */

.data-pipeline-window {
    width: 100%;
    max-width: 780px;
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.data-pipeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid #e5eaf0;
}


    .data-pipeline-header > div {
        min-width: 0;
    }


.data-pipeline-kicker {
    display: block;
    margin-bottom: 5px;
    color: #7b8797;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.data-pipeline-header strong {
    display: block;
    color: #182230;
    font-size: 0.9rem;
    font-weight: 800;
}


.data-pipeline-status {
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 1px solid #cfe2d5;
    border-radius: 7px;
    background: #f4faf5;
    color: #438153;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}


/* ---------------------------------------------------------
   PIPELINE
   --------------------------------------------------------- */

.data-pipeline {
    display: flex;
    align-items: stretch;
    padding: 28px 24px 24px;
    background: #f8fafc;
}


.pipeline-stage {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    border: 1px solid #dfe6ee;
    border-radius: 10px;
    background: #ffffff;
    color: #435164;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}


    .pipeline-stage:hover {
        border-color: #b8c8da;
        background: #ffffff;
    }


    .pipeline-stage.active {
        border-color: var(--accent);
        background: #eef5ff;
        box-shadow: 0 4px 12px rgba(31, 111, 235, 0.08);
    }


.pipeline-stage-number {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}


.pipeline-stage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f1f4f8;
    color: #627083;
    font-size: 1rem;
    font-weight: 700;
}


.pipeline-stage.active .pipeline-stage-icon {
    background: #ffffff;
    color: var(--accent);
}


.pipeline-stage strong {
    display: block;
    width: 100%;
    max-width: none !important;
    margin-bottom: 5px;
    color: #273444;
    font-size: 0.68rem;
    line-height: 1.35;
    box-sizing: border-box;
}


.pipeline-stage small {
    display: block;
    width: 100%;
    max-width: none !important;
    color: #7b8797;
    font-size: 0.56rem;
    line-height: 1.4;
    box-sizing: border-box;
}


.pipeline-connector {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .pipeline-connector span {
        display: block;
        width: 100%;
        height: 1px;
        background: #c8d2df;
        position: relative;
    }


        .pipeline-connector span::after {
            content: "";
            position: absolute;
            right: -1px;
            top: -3px;
            width: 6px;
            height: 6px;
            border-top: 1px solid #9aa7b8;
            border-right: 1px solid #9aa7b8;
            transform: rotate(45deg);
        }


/* ---------------------------------------------------------
   PIPELINE DETAIL
   --------------------------------------------------------- */

.pipeline-detail {
    padding: 22px 24px 24px;
    border-top: 1px solid #e5eaf0;
    background: #ffffff;
}


.pipeline-detail-heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 9px;
}


    .pipeline-detail-heading span {
        color: var(--accent);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    .pipeline-detail-heading strong {
        color: #263445;
        font-size: 0.82rem;
        font-weight: 800;
    }


.pipeline-detail > p {
    width: 100%;
    max-width: none !important;
    margin: 0;
    color: #667487;
    font-size: 0.72rem;
    line-height: 1.6;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   DATA PREVIEW
   --------------------------------------------------------- */

.pipeline-data-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}


.pipeline-data-row {
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    background: #f8fafc;
}


    .pipeline-data-row span {
        display: block;
        margin-bottom: 5px;
        color: #8a96a5;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    .pipeline-data-row strong {
        display: block;
        color: #344255;
        font-size: 0.66rem;
        line-height: 1.4;
        overflow-wrap: anywhere;
    }


/* ---------------------------------------------------------
   METRICS
   --------------------------------------------------------- */

.pipeline-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #e5eaf0;
    background: #fbfcfd;
}


.pipeline-metric {
    min-width: 0;
    padding: 16px 18px;
    border-right: 1px solid #e5eaf0;
}


    .pipeline-metric:last-child {
        border-right: 0;
    }


    .pipeline-metric span {
        display: block;
        margin-bottom: 5px;
        color: #8a96a5;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    .pipeline-metric strong {
        display: block;
        color: #273444;
        font-size: 0.82rem;
        font-weight: 800;
    }


.pipeline-metric-status {
    color: #438153 !important;
}


/* ---------------------------------------------------------
   PROJECT 03 ARCHITECTURE
   --------------------------------------------------------- */

.project-03-architecture {
    width: 100%;
    max-width: 780px;
    margin: 0;
    padding: 24px;
    border: 1px solid #dce3eb;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
}


    .project-03-architecture .project-architecture-flow {
        width: 100%;
    }


    .project-03-architecture .project-architecture-node {
        min-width: 0;
    }


        .project-03-architecture .project-architecture-node strong,
        .project-03-architecture .project-architecture-node small {
            max-width: none !important;
        }


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .project-03-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-03-visual {
        margin-top: 10px;
    }
}


@media (max-width: 750px) {

    .data-pipeline {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 20px;
    }


    .pipeline-connector {
        display: none;
    }


    .pipeline-stage {
        min-height: 125px;
    }


    .pipeline-data-preview {
        grid-template-columns: 1fr;
    }


    .pipeline-metrics {
        grid-template-columns: 1fr;
    }


    .pipeline-metric {
        border-right: 0;
        border-bottom: 1px solid #e5eaf0;
    }


        .pipeline-metric:last-child {
            border-bottom: 0;
        }
}


@media (max-width: 550px) {

    .data-pipeline-header {
        align-items: flex-start;
        flex-direction: column;
    }


    .data-pipeline {
        grid-template-columns: 1fr;
    }


    .pipeline-stage {
        min-height: auto;
        padding: 16px;
    }


    .project-03-architecture {
        padding: 20px;
    }
}
/* =========================================================
   PROJECT 03 - PROJECT NUMBER
   ========================================================= */

.project-03 .project-number {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}
/* =========================================================
   PROJECT 03 - TITLE SIZE
   ========================================================= */

.project-03 .project-showcase-header h2 {
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
/* =========================================================
   PROJECT 04 - ENTERPRISE AI ARCHITECTURE
   ========================================================= */


/* ---------------------------------------------------------
   PROJECT NUMBER
   --------------------------------------------------------- */

.project-04 .project-number {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.project-04-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: start;
}


/* ---------------------------------------------------------
   VISUAL COLUMN
   --------------------------------------------------------- */

.project-04-visual {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}


/* ---------------------------------------------------------
   ARCHITECTURE WINDOW
   --------------------------------------------------------- */

.enterprise-architecture-window {
    width: 100%;
    max-width: 780px;
    overflow: hidden;
    border: 1px solid #273448;
    border-radius: 18px;
    background: #111a28;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 4px 16px rgba(15, 23, 42, 0.10);
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.enterprise-architecture-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid #29374b;
    background: #151f2f;
}


    .enterprise-architecture-header > div {
        min-width: 0;
    }


.enterprise-architecture-kicker {
    display: block;
    margin-bottom: 5px;
    color: #8290a5;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.enterprise-architecture-header strong {
    display: block;
    color: #f3f6fa;
    font-size: 0.9rem;
    font-weight: 800;
}


.enterprise-architecture-status {
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 1px solid #34445a;
    border-radius: 7px;
    background: #1b2738;
    color: #91a4bc;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}


/* ---------------------------------------------------------
   ARCHITECTURE LAYERS
   --------------------------------------------------------- */

.enterprise-architecture {
    padding: 26px 24px;
    background: linear-gradient( 180deg, #111a28 0%, #101927 100% );
}


.architecture-layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 13px 15px;
    border: 1px solid #2b394d;
    border-radius: 11px;
    background: #182333;
    color: #d8e0ea;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}


    .architecture-layer:hover {
        border-color: #45566e;
        background: #1b283a;
    }


    .architecture-layer.active {
        border-color: #4f8fe8;
        background: #1b2c45;
        box-shadow: inset 3px 0 0 var(--accent), 0 8px 20px rgba(0, 0, 0, 0.12);
    }


/* ---------------------------------------------------------
   LAYER NUMBER
   --------------------------------------------------------- */

.architecture-layer-number {
    flex: 0 0 auto;
    width: 34px;
    color: #6e8098;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}


.architecture-layer.active
.architecture-layer-number {
    color: #74a9ed;
}


/* ---------------------------------------------------------
   LAYER CONTENT
   --------------------------------------------------------- */

.architecture-layer-content {
    flex: 1 1 auto;
    min-width: 0;
}


    .architecture-layer-content strong {
        display: block;
        width: 100%;
        max-width: none !important;
        margin-bottom: 4px;
        color: #e7edf5;
        font-size: 0.72rem;
        line-height: 1.35;
        box-sizing: border-box;
    }


    .architecture-layer-content small {
        display: block;
        width: 100%;
        max-width: none !important;
        color: #8391a5;
        font-size: 0.58rem;
        line-height: 1.4;
        box-sizing: border-box;
    }


/* ---------------------------------------------------------
   LAYER INDICATOR
   --------------------------------------------------------- */

.architecture-layer-indicator {
    flex: 0 0 auto;
    margin-left: 15px;
    color: #53647b;
    font-size: 0.9rem;
}


.architecture-layer.active
.architecture-layer-indicator {
    color: #72a9ed;
}


/* ---------------------------------------------------------
   CONNECTORS
   --------------------------------------------------------- */

.architecture-layer-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}


    .architecture-layer-connector span {
        display: block;
        width: 1px;
        height: 24px;
        background: #35445a;
        position: relative;
    }


        .architecture-layer-connector span::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: -3px;
            width: 6px;
            height: 6px;
            border-right: 1px solid #56677e;
            border-bottom: 1px solid #56677e;
            transform: rotate(45deg);
        }


/* ---------------------------------------------------------
   DETAIL PANEL
   --------------------------------------------------------- */

.architecture-detail {
    padding: 22px 24px 24px;
    border-top: 1px solid #29374b;
    background: #151f2f;
}


.architecture-detail-heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 9px;
}


    .architecture-detail-heading span {
        color: #6ea5e9;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    .architecture-detail-heading strong {
        color: #e6edf5;
        font-size: 0.82rem;
        font-weight: 800;
    }


.architecture-detail > p {
    width: 100%;
    max-width: none !important;
    margin: 0;
    color: #9aa8ba;
    font-size: 0.7rem;
    line-height: 1.6;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   CAPABILITIES
   --------------------------------------------------------- */

.architecture-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}


    .architecture-capabilities span {
        padding: 6px 9px;
        border: 1px solid #304057;
        border-radius: 6px;
        background: #192638;
        color: #91a1b5;
        font-size: 0.57rem;
        font-weight: 700;
    }


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.architecture-footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #29374b;
    background: #101824;
}


    .architecture-footer > div {
        min-width: 0;
        padding: 15px 16px;
        border-right: 1px solid #29374b;
    }


        .architecture-footer > div:last-child {
            border-right: 0;
        }


    .architecture-footer span {
        display: block;
        margin-bottom: 5px;
        color: #68788e;
        font-size: 0.52rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }


    .architecture-footer strong {
        display: block;
        color: #b9c6d5;
        font-size: 0.63rem;
        line-height: 1.35;
    }


/* ---------------------------------------------------------
   SUMMARY
   --------------------------------------------------------- */

.project-04-summary {
    width: 100%;
    max-width: 780px;
    padding: 22px 24px;
    border: 1px solid #dce3eb;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
}


.project-04-summary-heading {
    margin-bottom: 17px;
    color: #8995a5;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}


.project-04-summary-flow {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}


    .project-04-summary-flow > div {
        flex: 1 1 0;
        min-width: 0;
    }


    .project-04-summary-flow span:not(.project-04-summary-arrow) {
        display: block;
        margin-bottom: 4px;
        color: var(--accent);
        font-size: 0.55rem;
        font-weight: 800;
    }


    .project-04-summary-flow strong {
        display: block;
        color: #39485a;
        font-size: 0.65rem;
    }


.project-04-summary-arrow {
    flex: 0 0 auto;
    color: #a0acbb;
    font-size: 0.85rem;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .project-04-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-04-visual {
        margin-top: 10px;
    }
}


@media (max-width: 700px) {

    .enterprise-architecture-header {
        align-items: flex-start;
        flex-direction: column;
    }


    .enterprise-architecture {
        padding: 20px;
    }


    .architecture-layer {
        min-height: 68px;
        padding: 12px;
    }


    .architecture-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


        .architecture-footer > div:nth-child(2) {
            border-right: 0;
        }


        .architecture-footer > div:nth-child(-n + 2) {
            border-bottom: 1px solid #29374b;
        }


    .project-04-summary-flow {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }


    .project-04-summary-arrow {
        display: none;
    }


    .project-04-summary-flow > div {
        padding: 11px 12px;
        border: 1px solid #e3e8ee;
        border-radius: 8px;
        background: #f8fafc;
    }
}


@media (max-width: 500px) {

    .architecture-layer-indicator {
        display: none;
    }


    .architecture-layer-number {
        width: 29px;
    }


    .architecture-footer {
        grid-template-columns: 1fr;
    }


        .architecture-footer > div {
            border-right: 0;
            border-bottom: 1px solid #29374b;
        }


            .architecture-footer > div:last-child {
                border-bottom: 0;
            }


    .architecture-detail {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* =========================================================
   PROJECT 05 - CONSTRUCTION MANAGEMENT PLATFORM
   ========================================================= */

.project-05 .project-number {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

/* =========================================================
   PROJECT 05 GRID
   ========================================================= */

.project-05-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 68px;
    align-items: start;
    width: 100%;
}

    .project-05-grid .project-showcase-content {
        width: 100%;
        min-width: 0;
    }

.project-05-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    min-width: 0;
}


/* =========================================================
   PROJECT 05 CAPABILITIES
   ========================================================= */

.project-05-capability-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.project-05-capability {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 14px;
    border: 1px solid #e1e7ee;
    border-radius: 9px;
    background: #f8fafc;
}

    .project-05-capability > span {
        flex: 0 0 auto;
        color: var(--accent);
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.06em;
    }

    .project-05-capability > div {
        min-width: 0;
    }

    .project-05-capability strong {
        display: block;
        margin-bottom: 3px;
        color: #354355;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .project-05-capability small {
        display: block;
        color: #7b8796;
        font-size: 0.63rem;
        line-height: 1.5;
    }


/* =========================================================
   CONSTRUCTION PLATFORM WINDOW
   ========================================================= */

.construction-platform-window {
    width: 100%;
    max-width: 820px;
    overflow: hidden;
    border: 1px solid #d7dee7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
}


/* =========================================================
   PLATFORM HEADER
   ========================================================= */

.construction-platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid #e2e7ed;
    background: #ffffff;
}

.construction-platform-brand {
    min-width: 0;
}

.construction-platform-kicker {
    display: block;
    margin-bottom: 5px;
    color: #8793a3;
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.construction-platform-brand strong {
    display: block;
    margin-bottom: 4px;
    color: #263446;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.35;
}

.construction-platform-brand small {
    display: block;
    color: #8b97a6;
    font-size: 0.62rem;
}

.construction-platform-status {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid #b8dfc6;
    border-radius: 999px;
    background: #effaf2;
    color: #2d7746;
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =========================================================
   PROJECT SUMMARY
   ========================================================= */

.construction-platform-summary {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr 1fr;
    border-bottom: 1px solid #e5e9ee;
    background: #f8fafc;
}

    .construction-platform-summary > div {
        min-width: 0;
        padding: 15px 18px;
        border-right: 1px solid #e2e7ed;
    }

        .construction-platform-summary > div:last-child {
            border-right: 0;
        }

    .construction-platform-summary span {
        display: block;
        margin-bottom: 5px;
        color: #929dac;
        font-size: 0.52rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .construction-platform-summary strong {
        display: block;
        color: #475568;
        font-size: 0.67rem;
        line-height: 1.4;
    }


/* =========================================================
   METRICS
   ========================================================= */

.construction-platform-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid #e2e7ed;
    background: #ffffff;
}

.platform-metric {
    min-width: 0;
    padding: 17px 18px;
    border-right: 1px solid #e4e8ed;
}

    .platform-metric:last-child {
        border-right: 0;
    }

    .platform-metric > span {
        display: block;
        margin-bottom: 6px;
        color: #919dac;
        font-size: 0.53rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .platform-metric > strong {
        display: block;
        margin-bottom: 3px;
        color: #344356;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .platform-metric > small {
        display: block;
        color: #8a96a5;
        font-size: 0.58rem;
        line-height: 1.4;
    }

.platform-metric-risk > strong {
    color: #a47717;
}


/* =========================================================
   TABS
   ========================================================= */

.construction-platform-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid #e2e7ed;
    background: #ffffff;
}

.platform-tab {
    position: relative;
    flex: 0 0 auto;
    padding: 14px 17px;
    border: 0;
    background: transparent;
    color: #8995a5;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease;
}

    .platform-tab:hover {
        background: #f8fafc;
        color: #4d5b6d;
    }

    .platform-tab.active {
        color: var(--accent);
        background: #f8fbff;
    }

        .platform-tab.active::after {
            content: "";
            position: absolute;
            right: 14px;
            bottom: -1px;
            left: 14px;
            height: 2px;
            background: var(--accent);
        }


/* =========================================================
   TAB CONTENT
   ========================================================= */

.construction-platform-content {
    min-height: 355px;
    background: #ffffff;
}

.platform-panel {
    display: none;
    padding: 22px 24px 24px;
}

    .platform-panel.active {
        display: block;
    }

.platform-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

    .platform-panel-heading > div {
        min-width: 0;
    }

    .platform-panel-heading span:first-child {
        display: block;
        margin-bottom: 4px;
        color: #929dac;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.09em;
    }

    .platform-panel-heading strong {
        display: block;
        color: #354356;
        font-size: 0.78rem;
        line-height: 1.35;
    }

.platform-panel-date {
    flex: 0 0 auto;
    color: #9aa5b3;
    font-size: 0.59rem;
}


/* =========================================================
   OVERVIEW
   ========================================================= */

.platform-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.platform-overview-card {
    min-width: 0;
    padding: 15px;
    border: 1px solid #e2e7ed;
    border-radius: 9px;
    background: #f9fafc;
}

.platform-card-label {
    display: block;
    margin-bottom: 7px;
    color: #929dac;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.platform-overview-card strong {
    display: block;
    margin-bottom: 4px;
    color: #3d4c5e;
    font-size: 0.72rem;
    line-height: 1.4;
}

.platform-overview-card small {
    display: block;
    color: #8b97a6;
    font-size: 0.59rem;
    line-height: 1.45;
}

.platform-health {
    color: #287443 !important;
}

.platform-progress-section {
    margin-top: 20px;
}

.platform-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

    .platform-progress-heading span {
        color: #8d99a8;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .platform-progress-heading strong {
        color: #4b5a6c;
        font-size: 0.64rem;
    }

.platform-progress-track {
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8edf2;
}

.platform-progress-value {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}


/* =========================================================
   MILESTONES
   ========================================================= */

.platform-milestones {
    display: flex;
    flex-direction: column;
}

.platform-milestone {
    position: relative;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px 0;
    border-bottom: 1px solid #edf0f3;
}

    .platform-milestone:last-child {
        border-bottom: 0;
    }

.milestone-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #d8dfe7;
    border-radius: 50%;
    background: #ffffff;
    color: #a0abb8;
    font-size: 0.62rem;
    font-weight: 800;
    box-sizing: border-box;
}

.platform-milestone.complete .milestone-marker {
    border-color: #b8dec5;
    background: #eff9f1;
    color: #32804d;
}

.platform-milestone.current .milestone-marker {
    border-color: #9bbdea;
    background: #eef5ff;
    color: var(--accent);
}

.platform-milestone > div {
    min-width: 0;
}

.platform-milestone strong {
    display: block;
    margin-bottom: 3px;
    color: #465467;
    font-size: 0.66rem;
    line-height: 1.35;
}

.platform-milestone small {
    display: block;
    color: #929dac;
    font-size: 0.57rem;
    line-height: 1.4;
}

.milestone-status {
    flex: 0 0 auto;
    color: #929dac;
    font-size: 0.56rem;
    font-weight: 700;
}

.platform-milestone.current .milestone-status {
    color: var(--accent);
}


/* =========================================================
   RISKS
   ========================================================= */

.platform-risk-list {
    display: flex;
    flex-direction: column;
}

.platform-risk-item {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f3;
}

    .platform-risk-item:last-child {
        border-bottom: 0;
    }

.risk-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 5px;
    font-size: 0.58rem;
    font-weight: 800;
}

.platform-risk-item.elevated .risk-indicator {
    background: #fdeeee;
    color: #c13d3d;
}

.platform-risk-item.moderate .risk-indicator {
    background: #fff7e6;
    color: #a87814;
}

.platform-risk-item.low .risk-indicator {
    background: #edf8f0;
    color: #32804c;
}

.risk-main {
    min-width: 0;
}

    .risk-main strong {
        display: block;
        margin-bottom: 3px;
        color: #435164;
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .risk-main small {
        display: block;
        color: #929dac;
        font-size: 0.56rem;
        line-height: 1.45;
    }

.risk-level {
    flex: 0 0 auto;
    font-size: 0.56rem;
    font-weight: 700;
}

.platform-risk-item.elevated .risk-level {
    color: #bd4646;
}

.platform-risk-item.moderate .risk-level {
    color: #a47717;
}

.platform-risk-item.low .risk-level {
    color: #34804c;
}


/* =========================================================
   FINANCIAL
   ========================================================= */

.platform-financial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.platform-financial-card {
    min-width: 0;
    padding: 15px;
    border: 1px solid #e2e7ed;
    border-radius: 9px;
    background: #f9fafc;
}

    .platform-financial-card span {
        display: block;
        margin-bottom: 7px;
        color: #929dac;
        font-size: 0.52rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .platform-financial-card strong {
        display: block;
        margin-bottom: 4px;
        color: #3c4b5d;
        font-size: 0.82rem;
    }

    .platform-financial-card small {
        display: block;
        color: #8c98a7;
        font-size: 0.57rem;
    }

.platform-budget-bar {
    margin-top: 20px;
}

.budget-bar-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

    .budget-bar-labels span {
        color: #8d99a8;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .budget-bar-labels strong {
        color: #4c5b6c;
        font-size: 0.63rem;
    }

.budget-bar-track {
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8edf2;
}

.budget-bar-value {
    width: 71%;
    height: 100%;
    border-radius: inherit;
    background: #718096;
}


/* =========================================================
   ACTIVITY
   ========================================================= */

.platform-activity-list {
    display: flex;
    flex-direction: column;
}

.platform-activity-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f3;
}

    .platform-activity-item:last-child {
        border-bottom: 0;
    }

.activity-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #d9e1e9;
    border-radius: 7px;
    background: #f6f8fa;
    color: #718096;
    font-size: 0.64rem;
    font-weight: 800;
}

.platform-activity-item > div {
    min-width: 0;
}

.platform-activity-item strong {
    display: block;
    margin-bottom: 3px;
    color: #465467;
    font-size: 0.65rem;
    line-height: 1.35;
}

.platform-activity-item small {
    display: block;
    color: #929dac;
    font-size: 0.56rem;
}


/* =========================================================
   PLATFORM FOOTER
   ========================================================= */

.construction-platform-footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e2e7ed;
    background: #f8fafc;
}

    .construction-platform-footer > div {
        min-width: 0;
        padding: 14px 15px;
        border-right: 1px solid #e2e7ed;
    }

        .construction-platform-footer > div:last-child {
            border-right: 0;
        }

    .construction-platform-footer span {
        display: block;
        margin-bottom: 4px;
        color: #969fac;
        font-size: 0.5rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .construction-platform-footer strong {
        display: block;
        color: #596779;
        font-size: 0.59rem;
        line-height: 1.35;
    }


/* =========================================================
   PROJECT 05 ARCHITECTURE
   ========================================================= */

.project-05-architecture {
    width: 100%;
    max-width: 820px;
}

    .project-05-architecture .project-architecture-flow {
        width: 100%;
    }

    .project-05-architecture .project-architecture-node {
        min-width: 0;
    }


/* =========================================================
   PROJECT 05 RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .project-05-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-05-visual {
        margin-top: 10px;
    }
}


@media (max-width: 750px) {

    .construction-platform-summary {
        grid-template-columns: 1fr;
    }

        .construction-platform-summary > div {
            border-right: 0;
            border-bottom: 1px solid #e2e7ed;
        }

            .construction-platform-summary > div:last-child {
                border-bottom: 0;
            }

    .construction-platform-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .construction-platform-metrics .platform-metric:nth-child(2) {
            border-right: 0;
        }

        .construction-platform-metrics
        .platform-metric:nth-child(-n + 2) {
            border-bottom: 1px solid #e4e8ed;
        }

    .construction-platform-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .construction-platform-footer > div:nth-child(2) {
            border-right: 0;
        }

        .construction-platform-footer > div:nth-child(-n + 2) {
            border-bottom: 1px solid #e2e7ed;
        }
}


@media (max-width: 650px) {

    .construction-platform-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .construction-platform-status {
        align-self: flex-start;
    }

    .construction-platform-tabs {
        overflow-x: auto;
    }

    .platform-tab {
        padding-right: 13px;
        padding-left: 13px;
    }

    .platform-panel {
        padding: 20px;
    }

    .platform-panel-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .platform-overview-grid,
    .platform-financial-grid {
        grid-template-columns: 1fr;
    }

    .platform-milestone {
        grid-template-columns: 27px minmax(0, 1fr);
    }

    .milestone-status {
        grid-column: 2;
        margin-top: -4px;
    }

    .platform-risk-item {
        grid-template-columns: 27px minmax(0, 1fr);
    }

    .risk-level {
        grid-column: 2;
        margin-top: -4px;
    }
}


@media (max-width: 500px) {

    .construction-platform-metrics {
        grid-template-columns: 1fr;
    }

        .construction-platform-metrics .platform-metric {
            border-right: 0;
            border-bottom: 1px solid #e4e8ed;
        }

            .construction-platform-metrics
            .platform-metric:last-child {
                border-bottom: 0;
            }

    .construction-platform-footer {
        grid-template-columns: 1fr;
    }

        .construction-platform-footer > div {
            border-right: 0;
            border-bottom: 1px solid #e2e7ed;
        }

            .construction-platform-footer > div:last-child {
                border-bottom: 0;
            }

    .project-05-capability {
        padding: 12px;
    }
}
/* =========================================================
   RESUME PAGE
   ========================================================= */


/* =========================================================
   RESUME HERO
   ========================================================= */

.resume-page {
    background: #ffffff;
}

.resume-hero {
    padding: 105px 0 90px;
    border-bottom: 1px solid #e4e8ed;
    background: linear-gradient( 180deg, #f8fafc 0%, #ffffff 100% );
}

.resume-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 90px;
}

.resume-hero-content {
    max-width: 850px;
}

.resume-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.resume-hero-content h1 {
    margin: 0 0 12px;
    color: #172333;
    font-size: clamp(3.3rem, 6vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.resume-hero-content h2 {
    max-width: 760px;
    margin: 0 0 25px;
    color: #39485a;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

    .resume-hero-content h2 span {
        color: var(--accent);
    }

.resume-hero-content > p {
    max-width: 760px;
    margin: 0;
    color: #687688;
    font-size: 1rem;
    line-height: 1.8;
}

.resume-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.resume-primary-action,
.resume-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 19px;
    border-radius: 8px;
    font-size: 0.69rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.resume-primary-action {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
}

    .resume-primary-action:hover {
        background: var(--accent-dark);
        transform: translateY(-1px);
    }

.resume-secondary-action {
    border: 1px solid #d7dfe8;
    background: #ffffff;
    color: #4b5a6c;
}

    .resume-secondary-action:hover {
        border-color: #b9c8d9;
        background: #f8fafc;
        transform: translateY(-1px);
    }


/* =========================================================
   PROFILE CARD
   ========================================================= */

.resume-hero-profile {
    display: flex;
    justify-content: flex-end;
}

.resume-profile-card {
    width: 100%;
    max-width: 370px;
    padding: 30px;
    border: 1px solid #dce3eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    box-sizing: border-box;
}

.resume-profile-label {
    display: block;
    margin-bottom: 20px;
    color: #8c98a7;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.resume-profile-card strong {
    display: block;
    color: #344255;
    font-size: 0.82rem;
    line-height: 1.4;
}

.resume-profile-divider {
    height: 1px;
    margin: 17px 0;
    background: #e7ebf0;
}


/* =========================================================
   GENERAL RESUME SECTIONS
   ========================================================= */

.resume-section {
    padding: 100px 0;
}

.resume-container {
    width: 100%;
}

.resume-section-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

    .resume-section-heading > span {
        display: block;
        margin-bottom: 13px;
        color: var(--accent);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.13em;
    }

    .resume-section-heading h2 {
        margin: 0;
        color: #263547;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 1.08;
    }

        .resume-section-heading h2 span {
            color: var(--accent);
        }

    .resume-section-heading > p {
        max-width: 720px;
        margin: 20px 0 0;
        color: #8a96a5;
        font-size: 0.92rem;
        line-height: 1.75;
    }


/* =========================================================
   PROFESSIONAL SUMMARY
   ========================================================= */

.resume-summary-section {
    background: #ffffff;
}

.resume-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 80px;
    align-items: start;
}

.resume-summary-main {
    max-width: 800px;
}

    .resume-summary-main p {
        margin: 0 0 20px;
        color: #667487;
        font-size: 0.94rem;
        line-height: 1.85;
    }

        .resume-summary-main p:last-child {
            margin-bottom: 0;
        }

.resume-summary-facts {
    border-top: 1px solid #dfe5eb;
}

.resume-fact {
    padding: 18px 0;
    border-bottom: 1px solid #dfe5eb;
}

    .resume-fact span {
        display: block;
        margin-bottom: 6px;
        color: #949eab;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .resume-fact strong {
        display: block;
        color: #405063;
        font-size: 0.72rem;
        line-height: 1.45;
    }


/* =========================================================
   AI SECTION
   ========================================================= */

.resume-ai-section {
    background: #111a28;
}

.resume-section-heading-light > span {
    color: #6fa7eb;
}

.resume-section-heading-light h2 {
    color: #f1f5f9;
}

    .resume-section-heading-light h2 span {
        color: #6fa7eb;
    }

.resume-section-heading-light > p {
    color: #96a5b8;
}

.resume-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.resume-ai-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    padding: 26px;
    border: 1px solid #29374b;
    border-radius: 12px;
    background: #151f2f;
    box-sizing: border-box;
}

.resume-ai-card-number {
    color: #5e96dc;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.resume-ai-card > div:last-child {
    min-width: 0;
}

    .resume-ai-card > div:last-child > span {
        display: block;
        margin-bottom: 8px;
        color: #74859c;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

.resume-ai-card h3 {
    margin: 0 0 10px;
    color: #e7edf5;
    font-size: 1rem;
    line-height: 1.35;
}

.resume-ai-card p {
    margin: 0;
    color: #97a6b8;
    font-size: 0.7rem;
    line-height: 1.7;
}

.resume-ai-technology {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #29374b;
}

    .resume-ai-technology > span {
        display: block;
        margin-bottom: 13px;
        color: #718198;
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

.resume-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

    .resume-ai-tags span {
        padding: 7px 10px;
        border: 1px solid #304057;
        border-radius: 6px;
        background: #192638;
        color: #9aaabd;
        font-size: 0.57rem;
        font-weight: 700;
    }


/* =========================================================
   TECHNOLOGY GRID
   ========================================================= */

.resume-technology-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.resume-technology-column {
    min-width: 0;
    padding-top: 20px;
    border-top: 2px solid #dce3eb;
}

.resume-technology-label {
    display: block;
    margin-bottom: 17px;
    color: #7e8b9c;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.resume-technology-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.resume-technology-column li {
    padding: 7px 0;
    border-bottom: 1px solid #edf0f3;
    color: #586779;
    font-size: 0.7rem;
    line-height: 1.4;
}

    .resume-technology-column li:last-child {
        border-bottom: 0;
    }


/* =========================================================
   EXPERIENCE TIMELINE
   ========================================================= */

.resume-experience-section {
    background: #f7f9fb;
}

.resume-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding-left: 55px;
}

    .resume-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 16px;
        width: 1px;
        background: #d7dfe8;
    }

.resume-timeline-item {
    position: relative;
    margin-bottom: 55px;
}

    .resume-timeline-item:last-child {
        margin-bottom: 0;
    }

.resume-timeline-marker {
    position: absolute;
    top: 0;
    left: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border: 1px solid #b9c9db;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 800;
    box-sizing: border-box;
}

.resume-timeline-content {
    padding: 30px;
    border: 1px solid #dfe5eb;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.resume-job-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
}

.resume-job-period {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.resume-job-header h3 {
    margin: 0 0 5px;
    color: #29384a;
    font-size: 1.25rem;
    line-height: 1.3;
}

.resume-job-header strong {
    display: block;
    color: #687688;
    font-size: 0.72rem;
}

.resume-job-focus {
    flex: 0 0 auto;
    padding: 7px 9px;
    border: 1px solid #dbe3eb;
    border-radius: 6px;
    background: #f8fafc;
    color: #7e8b9b;
    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.resume-timeline-content > p {
    max-width: 850px;
    margin: 0 0 20px;
    color: #667487;
    font-size: 0.77rem;
    line-height: 1.7;
}

.resume-job-highlights {
    margin: 0;
    padding-left: 17px;
}

    .resume-job-highlights li {
        margin-bottom: 9px;
        padding-left: 5px;
        color: #667487;
        font-size: 0.7rem;
        line-height: 1.65;
    }

        .resume-job-highlights li:last-child {
            margin-bottom: 0;
        }


/* =========================================================
   LEADERSHIP
   ========================================================= */

.resume-leadership-section {
    background: #ffffff;
}

.resume-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.resume-leadership-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid #dfe5eb;
    border-radius: 12px;
    background: #ffffff;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

    .resume-leadership-card:hover {
        border-color: #c7d5e4;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
        transform: translateY(-2px);
    }

    .resume-leadership-card > span {
        display: block;
        margin-bottom: 10px;
        color: var(--accent);
        font-size: 0.54rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .resume-leadership-card h3 {
        margin: 0 0 10px;
        color: #354356;
        font-size: 1rem;
        line-height: 1.35;
    }

    .resume-leadership-card p {
        margin: 0;
        color: #778495;
        font-size: 0.7rem;
        line-height: 1.7;
    }


/* =========================================================
   SELECTED PROJECTS
   ========================================================= */

.resume-projects-section {
    background: #f7f9fb;
}

.resume-project-list {
    max-width: 950px;
    margin: 0 auto;
    border-top: 1px solid #dce3eb;
}

.resume-project-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 19px 5px;
    border-bottom: 1px solid #dce3eb;
    color: inherit;
    text-decoration: none;
    transition: padding-left 0.18s ease, background-color 0.18s ease;
}

    .resume-project-item:hover {
        padding-left: 12px;
        background: #ffffff;
    }

    .resume-project-item > span:first-child {
        color: var(--accent);
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.06em;
    }

    .resume-project-item > div {
        min-width: 0;
    }

    .resume-project-item strong {
        display: block;
        margin-bottom: 4px;
        color: #39485a;
        font-size: 0.77rem;
        line-height: 1.35;
    }

    .resume-project-item small {
        display: block;
        color: #8b97a6;
        font-size: 0.59rem;
        line-height: 1.4;
    }

.resume-project-arrow {
    color: #8fa0b2;
    font-size: 0.95rem;
}


/* =========================================================
   CTA
   ========================================================= */

.resume-cta-section {
    padding: 100px 0;
    background: #111a28;
}

.resume-cta {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .resume-cta > span {
        display: block;
        margin-bottom: 17px;
        color: #6fa7eb;
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.13em;
    }

    .resume-cta h2 {
        margin: 0 auto 18px;
        color: #f1f5f9;
        font-size: clamp(2rem, 4vw, 3.2rem);
        letter-spacing: -0.04em;
        line-height: 1.08;
    }

        .resume-cta h2 span {
            color: #6fa7eb;
        }

    .resume-cta p {
        max-width: 650px;
        margin: 0 auto;
        color: #96a5b8;
        font-size: 0.82rem;
        line-height: 1.75;
    }

.resume-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-top: 28px;
    padding: 0 22px;
    border: 1px solid #4c8bdd;
    border-radius: 8px;
    background: #2168bc;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

    .resume-cta-button:hover {
        background: #1557a6;
        transform: translateY(-1px);
    }


/* =========================================================
   RESUME RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .resume-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .resume-hero-profile {
        justify-content: flex-start;
    }

    .resume-profile-card {
        max-width: 500px;
    }

    .resume-summary-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .resume-technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 40px;
    }
}


@media (max-width: 800px) {

    .resume-section {
        padding: 75px 0;
    }

    .resume-ai-grid,
    .resume-leadership-grid {
        grid-template-columns: 1fr;
    }

    .resume-job-header {
        flex-direction: column;
        gap: 14px;
    }

    .resume-job-focus {
        align-self: flex-start;
    }
}


@media (max-width: 600px) {

    .resume-hero {
        padding: 75px 0 65px;
    }

    .resume-hero-content h1 {
        font-size: 3rem;
    }

    .resume-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .resume-primary-action,
    .resume-secondary-action {
        width: 100%;
    }

    .resume-technology-grid {
        grid-template-columns: 1fr;
    }

    .resume-timeline {
        padding-left: 0;
    }

        .resume-timeline::before {
            display: none;
        }

    .resume-timeline-marker {
        position: static;
        margin-bottom: 12px;
    }

    .resume-timeline-content {
        padding: 22px;
    }

    .resume-project-item {
        grid-template-columns: 30px minmax(0, 1fr) auto;
        gap: 12px;
    }
}


@media (max-width: 450px) {

    .resume-hero-content h1 {
        font-size: 2.65rem;
    }

    .resume-profile-card {
        padding: 24px;
    }

    .resume-ai-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px;
    }

    .resume-ai-card-number {
        margin-bottom: 2px;
    }
}
/* =========================================================
   RESUME CONTAINER
   ========================================================= */

.resume-page .resume-container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}
/* ============================================================
   EXPERIENCE PAGE
   ============================================================ */

.experience-page {
    background: var(--background);
}


/* ============================================================
   EXPERIENCE HERO
   ============================================================ */

.experience-hero {
    background: var(--surface-dark);
    color: var(--white);
    padding: 110px 0 100px;
}

.experience-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    gap: 80px;
    align-items: center;
}

.experience-hero-content {
    max-width: 760px;
}

.experience-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #8fb8f7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.experience-hero-content h1 {
    margin: 0 0 26px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.experience-title-accent {
    display: block;
    color: #8fb8f7;
}

.experience-hero-lead {
    max-width: 700px;
    margin: 0 0 20px;
    color: #f5f7fa;
    font-size: 1.3rem;
    line-height: 1.55;
}

.experience-hero-description {
    max-width: 700px;
    margin: 0;
    color: #aeb9c8;
    font-size: 1rem;
    line-height: 1.8;
}

.experience-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.experience-primary-action,
.experience-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.experience-primary-action {
    background: var(--accent);
    color: var(--white);
}

    .experience-primary-action:hover {
        background: var(--accent-dark);
        color: var(--white);
        transform: translateY(-2px);
    }

.experience-secondary-action {
    border: 1px solid #465264;
    color: var(--white);
    background: transparent;
}

    .experience-secondary-action:hover {
        border-color: #8290a3;
        color: var(--white);
        transform: translateY(-2px);
    }


/* ============================================================
   CAREER CARD
   ============================================================ */

.experience-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.experience-career-card {
    width: 100%;
    max-width: 600px;
    border: 1px solid #2c3747;
    background: #151d29;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.experience-career-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #2c3747;
    color: #9da9b8;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.experience-career-status {
    color: #8fb8f7;
}

.experience-career-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 34px 24px 30px;
}

.experience-career-node {
    min-width: 0;
}

.experience-career-node-number {
    display: block;
    margin-bottom: 12px;
    color: #6e7c8f;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.experience-career-node.active .experience-career-node-number {
    color: #8fb8f7;
}

.experience-career-node strong {
    display: block;
    margin-bottom: 5px;
    color: #f3f6fa;
    font-size: 0.85rem;
}

.experience-career-node small {
    display: block;
    color: #8290a2;
    font-size: 0.67rem;
    line-height: 1.45;
}

.experience-career-connector {
    width: 28px;
    height: 1px;
    background: #445063;
}

.experience-career-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #2c3747;
}

    .experience-career-card-footer > div {
        padding: 20px 22px;
    }

        .experience-career-card-footer > div + div {
            border-left: 1px solid #2c3747;
        }

    .experience-career-card-footer span {
        display: block;
        margin-bottom: 7px;
        color: #687688;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .experience-career-card-footer strong {
        color: #dce3eb;
        font-size: 0.78rem;
    }


/* ============================================================
   SHARED EXPERIENCE CONTAINER
   ============================================================ */

.experience-container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.experience-section-heading {
    margin-bottom: 60px;
}

    .experience-section-heading > div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

.experience-section-number {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.experience-section-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.experience-section-heading h2 {
    max-width: 850px;
    margin: 0;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

    .experience-section-heading h2 span {
        display: block;
        color: var(--accent);
    }


/* ============================================================
   CAREER OVERVIEW
   ============================================================ */

.experience-overview-section {
    padding: 110px 0;
    background: var(--background);
}

.experience-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 90px;
    align-items: start;
}

.experience-overview-main {
    max-width: 780px;
}

    .experience-overview-main p {
        margin: 0 0 22px;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.85;
    }

        .experience-overview-main p:last-child {
            margin-bottom: 0;
        }

    .experience-overview-main .experience-large-text {
        margin-bottom: 28px;
        color: var(--text);
        font-size: 1.35rem;
        line-height: 1.65;
    }

.experience-overview-facts {
    border-top: 1px solid var(--border);
}

.experience-fact {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

    .experience-fact span {
        color: var(--text-muted);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .experience-fact strong {
        color: var(--text);
        font-size: 0.9rem;
    }


/* ============================================================
   COMPANY SECTIONS
   ============================================================ */

.experience-company {
    padding: 110px 0;
}

.experience-company-dark {
    background: var(--surface-dark);
    color: var(--white);
}

.experience-company-light {
    background: var(--surface);
    color: var(--text);
}

.experience-company-header {
    position: relative;
    padding-bottom: 42px;
    margin-bottom: 58px;
    border-bottom: 1px solid var(--border);
}

.experience-company-dark .experience-company-header {
    border-bottom-color: #2d3747;
}

.experience-company-number {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.experience-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

    .experience-company-meta span {
        color: var(--text-muted);
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

.experience-company-dark .experience-company-meta span {
    color: #8290a2;
}

.experience-company-header h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.experience-company-dark .experience-company-header h2 {
    color: var(--white);
}

.experience-company-name {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 700;
}

.experience-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.experience-company-summary {
    max-width: 650px;
}

.experience-detail-label {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.experience-company-summary h3 {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.experience-company-dark .experience-company-summary h3 {
    color: var(--white);
}

.experience-company-summary p {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.experience-company-dark .experience-company-summary p {
    color: #aeb9c8;
}

.experience-company-summary p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   CAPABILITY CARDS
   ============================================================ */

.experience-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.experience-company-dark .experience-capability-grid {
    background: #2d3747;
    border-color: #2d3747;
}

.experience-capability-card {
    min-height: 220px;
    padding: 28px;
    background: var(--background);
}

.experience-company-dark .experience-capability-card {
    background: #151d29;
}

.experience-capability-number {
    display: block;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.experience-capability-card h4 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1rem;
}

.experience-company-dark .experience-capability-card h4 {
    color: var(--white);
}

.experience-capability-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.experience-company-dark .experience-capability-card p {
    color: #8f9bad;
}


/* ============================================================
   TECHNOLOGY STRIP
   ============================================================ */

.experience-technology-strip {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    margin-top: 65px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.experience-company-dark .experience-technology-strip {
    border-top-color: #2d3747;
}

.experience-technology-strip > span {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.experience-technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

    .experience-technology-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 12px;
        border: 1px solid var(--border);
        color: var(--text-muted);
        background: var(--background);
        font-size: 0.67rem;
        font-weight: 700;
    }

.experience-company-dark .experience-technology-tags span {
    border-color: #364153;
    color: #aeb9c8;
    background: #151d29;
}


/* ============================================================
   EXPERIENCE HIGHLIGHT
   ============================================================ */

.experience-highlight {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 30px;
    margin-top: 65px;
    padding: 30px;
    border-left: 3px solid var(--accent);
    background: var(--background);
}

.experience-highlight-label {
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.experience-highlight-content strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.05rem;
}

.experience-highlight-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}


/* ============================================================
   CAREER THROUGH-LINE
   ============================================================ */

.experience-throughline-section {
    padding: 110px 0;
    background: var(--background);
}

.experience-throughline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.experience-throughline-step {
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--surface);
}

    .experience-throughline-step > span {
        display: block;
        margin-bottom: 32px;
        color: var(--accent);
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .experience-throughline-step h3 {
        margin: 0 0 12px;
        color: var(--text);
        font-size: 1rem;
    }

    .experience-throughline-step p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.78rem;
        line-height: 1.65;
    }

.experience-throughline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
}


/* ============================================================
   CURRENT TECHNOLOGY FOCUS
   ============================================================ */

.experience-focus-section {
    padding: 0 0 110px;
    background: var(--background);
}

.experience-focus-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    padding: 60px;
    background: var(--surface-dark);
    color: var(--white);
}

.experience-focus-heading > span {
    display: block;
    margin-bottom: 18px;
    color: #8fb8f7;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.experience-focus-heading h2 {
    max-width: 550px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

    .experience-focus-heading h2 strong {
        display: block;
        color: #8fb8f7;
    }

.experience-focus-content {
    padding-top: 5px;
}

    .experience-focus-content > p {
        max-width: 650px;
        margin: 0 0 28px;
        color: #aeb9c8;
        font-size: 1rem;
        line-height: 1.8;
    }

.experience-focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

    .experience-focus-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 13px;
        border: 1px solid #364153;
        color: #c3ccd7;
        font-size: 0.68rem;
        font-weight: 700;
    }


/* ============================================================
   CTA
   ============================================================ */

.experience-cta-section {
    padding: 0 0 110px;
    background: var(--background);
}

.experience-cta {
    padding: 75px 70px;
    background: var(--surface);
    text-align: center;
}

    .experience-cta > span {
        display: block;
        margin-bottom: 18px;
        color: var(--accent);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.14em;
    }

    .experience-cta h2 {
        max-width: 850px;
        margin: 0 auto 20px;
        color: var(--text);
        font-size: clamp(2.2rem, 4vw, 4rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

        .experience-cta h2 strong {
            display: block;
            color: var(--accent);
        }

    .experience-cta p {
        max-width: 680px;
        margin: 0 auto;
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.8;
    }

.experience-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.experience-cta .experience-secondary-action {
    border-color: var(--border);
    color: var(--text);
}

    .experience-cta .experience-secondary-action:hover {
        border-color: var(--accent);
        color: var(--accent);
    }


/* ============================================================
   RESPONSIVE — 1050px
   ============================================================ */

@media (max-width: 1050px) {

    .experience-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-hero-content {
        max-width: 850px;
    }

    .experience-hero-visual {
        justify-content: flex-start;
    }

    .experience-career-card {
        max-width: 850px;
    }

    .experience-overview-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .experience-company-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .experience-throughline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-throughline-arrow {
        display: none;
    }

    .experience-focus-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ============================================================
   RESPONSIVE — 800px
   ============================================================ */

@media (max-width: 800px) {

    .experience-hero {
        padding: 85px 0 75px;
    }

    .experience-overview-section,
    .experience-company,
    .experience-throughline-section {
        padding: 80px 0;
    }

    .experience-focus-section {
        padding-bottom: 80px;
    }

    .experience-cta-section {
        padding-bottom: 80px;
    }

    .experience-career-line {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .experience-career-connector {
        display: none;
    }

    .experience-capability-grid {
        grid-template-columns: 1fr;
    }

    .experience-technology-strip {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .experience-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-throughline {
        grid-template-columns: 1fr;
    }

    .experience-focus-card {
        padding: 45px 35px;
    }

    .experience-cta {
        padding: 55px 35px;
    }
}


/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */

@media (max-width: 600px) {

    .experience-hero-content h1 {
        font-size: 2.9rem;
    }

    .experience-hero-lead {
        font-size: 1.08rem;
    }

    .experience-section-heading h2,
    .experience-company-header h2 {
        font-size: 2.35rem;
    }

    .experience-company-meta {
        flex-direction: column;
        gap: 8px;
    }

    .experience-fact {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .experience-career-card-footer {
        grid-template-columns: 1fr;
    }

        .experience-career-card-footer > div + div {
            border-top: 1px solid #2c3747;
            border-left: 0;
        }

    .experience-focus-card {
        padding: 35px 25px;
    }

    .experience-cta {
        padding: 45px 25px;
    }
}


/* ============================================================
   RESPONSIVE — 450px
   ============================================================ */

@media (max-width: 450px) {

    .experience-hero {
        padding: 70px 0 65px;
    }

    .experience-hero-content h1 {
        font-size: 2.45rem;
    }

    .experience-primary-action,
    .experience-secondary-action {
        width: 100%;
    }

    .experience-career-line {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .experience-career-node {
        padding-bottom: 18px;
        border-bottom: 1px solid #2c3747;
    }

        .experience-career-node:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

    .experience-capability-card {
        min-height: 0;
    }

    .experience-section-heading {
        margin-bottom: 42px;
    }

    .experience-focus-tags {
        gap: 7px;
    }

    .experience-cta-actions {
        flex-direction: column;
    }

        .experience-cta-actions a {
            width: 100%;
        }
}
/* ============================================================
    ABOUT PAGE
    ============================================================ */

.about-page {
    background: var(--background);
}


/* ============================================================
   ABOUT HERO
   ============================================================ */

.about-hero {
    padding: 110px 0 100px;
    background: var(--surface-dark);
    color: var(--white);
}

.about-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
    gap: 80px;
    align-items: center;
}

.about-hero-content {
    max-width: 780px;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #8fb8f7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.about-hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(3rem, 5vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.about-title-accent {
    display: block;
    color: #8fb8f7;
}

.about-hero-lead {
    max-width: 720px;
    margin: 0 0 20px;
    color: #f4f7fa;
    font-size: 1.28rem;
    line-height: 1.55;
}

.about-hero-description {
    max-width: 700px;
    margin: 0;
    color: #aeb9c8;
    font-size: 1rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-primary-action,
.about-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.about-primary-action {
    background: var(--accent);
    color: var(--white);
}

    .about-primary-action:hover {
        background: var(--accent-dark);
        color: var(--white);
        transform: translateY(-2px);
    }

.about-secondary-action {
    border: 1px solid #465264;
    color: var(--white);
    background: transparent;
}

    .about-secondary-action:hover {
        border-color: #8290a3;
        color: var(--white);
        transform: translateY(-2px);
    }


/* ============================================================
   IDENTITY CARD
   ============================================================ */

.about-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.about-identity-card {
    width: 100%;
    max-width: 560px;
    border: 1px solid #2c3747;
    background: #151d29;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.about-identity-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #2c3747;
    color: #8d99aa;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.about-identity-status {
    color: #8fb8f7;
}

.about-identity-main {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 34px 24px;
}

.about-identity-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    border: 1px solid #3b4b61;
    color: #8fb8f7;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-identity-photo {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    overflow: hidden;
    border: 1px solid #3b4b61;
    background: #202b3a;
}

    .about-identity-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-identity-main strong {
    display: block;
    margin-bottom: 7px;
    color: #f3f6fa;
    font-size: 1rem;
}

.about-identity-main span {
    display: block;
    color: #8491a2;
    font-size: 0.72rem;
}

.about-identity-divider {
    height: 1px;
    margin: 0 24px;
    background: #2c3747;
}

.about-identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

    .about-identity-grid > div {
        padding: 22px 24px;
    }

        .about-identity-grid > div:nth-child(odd) {
            border-right: 1px solid #2c3747;
        }

        .about-identity-grid > div:nth-child(-n + 2) {
            border-bottom: 1px solid #2c3747;
        }

    .about-identity-grid span {
        display: block;
        margin-bottom: 7px;
        color: #687688;
        font-size: 0.61rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .about-identity-grid strong {
        color: #dce3eb;
        font-size: 0.77rem;
    }


/* ============================================================
   SHARED CONTAINER
   ============================================================ */

.about-container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}


/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.about-section-heading {
    margin-bottom: 60px;
}

    .about-section-heading > div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

.about-section-number {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-section-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-section-heading h2 {
    max-width: 900px;
    margin: 0;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

    .about-section-heading h2 span {
        display: block;
        color: var(--accent);
    }

.about-section-heading-light .about-section-label {
    color: #8290a2;
}

.about-section-heading-light h2 {
    color: var(--white);
}


/* ============================================================
   EXECUTIVE INTRODUCTION
   ============================================================ */

.about-introduction-section {
    padding: 110px 0;
    background: var(--background);
}

.about-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 90px;
    align-items: start;
}

.about-introduction-main {
    max-width: 780px;
}

    .about-introduction-main p {
        margin: 0 0 22px;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.85;
    }

        .about-introduction-main p:last-child {
            margin-bottom: 0;
        }

    .about-introduction-main .about-large-text {
        margin-bottom: 28px;
        color: var(--text);
        font-size: 1.35rem;
        line-height: 1.65;
    }

.about-introduction-principles {
    border-top: 1px solid var(--border);
}

.about-principle {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

    .about-principle > span {
        display: block;
        margin-bottom: 8px;
        color: var(--accent);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .about-principle strong {
        display: block;
        margin-bottom: 7px;
        color: var(--text);
        font-size: 0.95rem;
    }

    .about-principle p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.78rem;
        line-height: 1.65;
    }


/* ============================================================
   CONSTRUCTION + TECHNOLOGY
   ============================================================ */

.about-construction-section {
    padding: 110px 0;
    background: var(--surface-dark);
    color: var(--white);
}

.about-construction-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}

.about-construction-story {
    max-width: 700px;
}

.about-detail-label {
    display: block;
    margin-bottom: 18px;
    color: #8fb8f7;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-construction-story h3 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 1.85rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.about-construction-story p {
    margin: 0 0 20px;
    color: #aeb9c8;
    font-size: 0.95rem;
    line-height: 1.8;
}

    .about-construction-story p:last-child {
        margin-bottom: 0;
    }


/* ============================================================
   CONNECTION CARD
   ============================================================ */

.about-connection-card {
    border: 1px solid #2c3747;
    background: #151d29;
}

.about-connection-header {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #2c3747;
    color: #687688;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-connection-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    padding: 38px 24px;
}

.about-connection-node span {
    display: block;
    margin-bottom: 12px;
    color: #8fb8f7;
    font-size: 0.64rem;
    font-weight: 800;
}

.about-connection-node strong {
    display: block;
    margin-bottom: 6px;
    color: #f3f6fa;
    font-size: 0.85rem;
}

.about-connection-node small {
    display: block;
    color: #7f8b9c;
    font-size: 0.66rem;
    line-height: 1.5;
}

.about-connection-arrow {
    color: #627084;
    font-size: 1.1rem;
}

.about-connection-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border-top: 1px solid #2c3747;
}

    .about-connection-result span {
        color: #687688;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .about-connection-result strong {
        color: #8fb8f7;
        font-size: 0.8rem;
    }


/* ============================================================
   APPROACH
   ============================================================ */

.about-approach-section {
    padding: 110px 0;
    background: var(--background);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
}

.about-approach-card {
    min-height: 270px;
    padding: 30px;
    background: var(--background);
}

.about-approach-number {
    display: block;
    margin-bottom: 60px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-approach-card h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.1rem;
}

.about-approach-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
}

.about-approach-statement {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 30px;
    margin-top: 45px;
    padding: 30px;
    border-left: 3px solid var(--accent);
    background: var(--surface);
}

    .about-approach-statement span {
        color: var(--accent);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.13em;
    }

    .about-approach-statement strong {
        color: var(--text);
        font-size: 1.1rem;
        line-height: 1.5;
    }


/* ============================================================
   AI + CONSTRUCTION
   ============================================================ */

.about-ai-section {
    padding: 110px 0;
    background: var(--surface-dark);
    color: var(--white);
}

.about-ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 90px;
    align-items: start;
}

.about-ai-story {
    max-width: 760px;
}

    .about-ai-story p {
        margin: 0 0 22px;
        color: #aeb9c8;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-ai-story .about-ai-large-text {
        margin-bottom: 30px;
        color: #f4f7fa;
        font-size: 1.3rem;
        line-height: 1.65;
    }

.about-ai-capabilities {
    border-top: 1px solid #2d3747;
}

.about-ai-capability {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    padding: 22px 0;
    border-bottom: 1px solid #2d3747;
}

    .about-ai-capability > span {
        color: #8fb8f7;
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .about-ai-capability strong {
        display: block;
        margin-bottom: 7px;
        color: #f3f6fa;
        font-size: 0.92rem;
    }

    .about-ai-capability p {
        margin: 0;
        color: #8996a7;
        font-size: 0.76rem;
        line-height: 1.65;
    }

.about-ai-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 55px;
    padding: 24px;
    border: 1px solid #2d3747;
    background: #151d29;
}

    .about-ai-note strong {
        color: #8fb8f7;
        font-size: 0.8rem;
    }

    .about-ai-note span {
        color: #aeb9c8;
        font-size: 0.8rem;
        line-height: 1.6;
    }


/* ============================================================
   LEADERSHIP
   ============================================================ */

.about-leadership-section {
    padding: 110px 0;
    background: var(--background);
}

.about-leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 90px;
    align-items: start;
}

.about-leadership-main {
    max-width: 780px;
}

    .about-leadership-main p {
        margin: 0 0 22px;
        color: var(--text-muted);
        font-size: 0.98rem;
        line-height: 1.8;
    }

        .about-leadership-main p:last-child {
            margin-bottom: 0;
        }

    .about-leadership-main .about-large-text {
        margin-bottom: 28px;
        color: var(--text);
        font-size: 1.3rem;
        line-height: 1.6;
    }

.about-leadership-principles {
    border-top: 1px solid var(--border);
}

    .about-leadership-principles > div {
        display: grid;
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 15px;
        align-items: center;
        padding: 22px 0;
        border-bottom: 1px solid var(--border);
    }

    .about-leadership-principles span {
        color: var(--accent);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }

    .about-leadership-principles strong {
        color: var(--text);
        font-size: 0.92rem;
    }


/* ============================================================
   EXPERTISE
   ============================================================ */

.about-expertise-section {
    padding: 110px 0;
    background: var(--surface);
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
}

.about-expertise-card {
    min-height: 245px;
    padding: 30px;
    background: var(--surface);
}

    .about-expertise-card > span {
        display: block;
        margin-bottom: 50px;
        color: var(--accent);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .about-expertise-card h3 {
        margin: 0 0 12px;
        color: var(--text);
        font-size: 1.05rem;
    }

    .about-expertise-card p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.78rem;
        line-height: 1.7;
    }


/* ============================================================
   PROFESSIONAL PERSPECTIVE
   ============================================================ */

.about-perspective-section {
    padding: 110px 0;
    background: var(--background);
}

.about-perspective-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 60px;
    padding: 65px;
    background: var(--surface-dark);
}

.about-perspective-label {
    color: #8fb8f7;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.about-perspective-content blockquote {
    margin: 0 0 35px;
    color: #f3f6fa;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.about-perspective-content p {
    max-width: 780px;
    margin: 0 0 20px;
    color: #aeb9c8;
    font-size: 0.92rem;
    line-height: 1.8;
}

    .about-perspective-content p:last-child {
        margin-bottom: 0;
    }


/* ============================================================
   CTA
   ============================================================ */

.about-cta-section {
    padding: 0 0 110px;
    background: var(--background);
}

.about-cta {
    padding: 75px 70px;
    background: var(--surface);
    text-align: center;
}

    .about-cta > span {
        display: block;
        margin-bottom: 18px;
        color: var(--accent);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.14em;
    }

    .about-cta h2 {
        max-width: 850px;
        margin: 0 auto 20px;
        color: var(--text);
        font-size: clamp(2.2rem, 4vw, 4rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

        .about-cta h2 strong {
            display: block;
            color: var(--accent);
        }

    .about-cta p {
        max-width: 680px;
        margin: 0 auto;
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.8;
    }

.about-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.about-cta .about-secondary-action {
    border-color: var(--border);
    color: var(--text);
}

    .about-cta .about-secondary-action:hover {
        border-color: var(--accent);
        color: var(--accent);
    }


/* ============================================================
   RESPONSIVE — 1050px
   ============================================================ */

@media (max-width: 1050px) {

    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero-content {
        max-width: 850px;
    }

    .about-hero-visual {
        justify-content: flex-start;
    }

    .about-identity-card {
        max-width: 850px;
    }

    .about-introduction-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-construction-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-ai-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-leadership-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ============================================================
   RESPONSIVE — 800px
   ============================================================ */

@media (max-width: 800px) {

    .about-hero {
        padding: 85px 0 75px;
    }

    .about-introduction-section,
    .about-construction-section,
    .about-approach-section,
    .about-ai-section,
    .about-leadership-section,
    .about-expertise-section,
    .about-perspective-section {
        padding: 80px 0;
    }

    .about-cta-section {
        padding-bottom: 80px;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-card {
        min-height: 0;
    }

    .about-perspective-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 45px 35px;
    }

    .about-cta {
        padding: 55px 35px;
    }
}


/* ============================================================
   RESPONSIVE — 650px
   ============================================================ */

@media (max-width: 650px) {

    .about-hero-content h1 {
        font-size: 2.9rem;
    }

    .about-hero-lead {
        font-size: 1.08rem;
    }

    .about-section-heading h2 {
        font-size: 2.35rem;
    }

    .about-connection-flow {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-connection-arrow {
        display: none;
    }

    .about-connection-node {
        padding-bottom: 20px;
        border-bottom: 1px solid #2c3747;
    }

        .about-connection-node:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

    .about-connection-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .about-expertise-grid {
        grid-template-columns: 1fr;
    }

    .about-expertise-card {
        min-height: 0;
    }

    .about-approach-statement {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-ai-note {
        flex-direction: column;
    }

    .about-identity-grid {
        grid-template-columns: 1fr;
    }

        .about-identity-grid > div:nth-child(odd) {
            border-right: 0;
        }

        .about-identity-grid > div:nth-child(-n + 2) {
            border-bottom: 0;
        }

        .about-identity-grid > div {
            border-bottom: 1px solid #2c3747 !important;
        }

            .about-identity-grid > div:last-child {
                border-bottom: 0 !important;
            }
}


/* ============================================================
   RESPONSIVE — 450px
   ============================================================ */

@media (max-width: 450px) {

    .about-hero {
        padding: 70px 0 65px;
    }

    .about-hero-content h1 {
        font-size: 2.45rem;
    }

    .about-primary-action,
    .about-secondary-action {
        width: 100%;
    }

    .about-identity-main {
        align-items: flex-start;
    }

    .about-identity-photo {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
    }

    .about-perspective-card {
        padding: 35px 25px;
    }

    .about-cta {
        padding: 45px 25px;
    }

    .about-cta-actions {
        flex-direction: column;
    }

        .about-cta-actions a {
            width: 100%;
        }
}
/* =========================================================
   HOME PAGE REFINEMENT
   ========================================================= */

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.home-hero {
    position: relative;
    padding: 105px 0 115px;
    background: var(--background);
    overflow: hidden;
}

.home-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 80px;
    align-items: center;
}

.home-hero-content {
    max-width: 760px;
}

.home-hero-eyebrow,
.home-section-label {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
}

.home-hero h1 {
    margin: 0;
    max-width: 780px;
    color: var(--text);
    font-size: clamp(3.1rem, 5.3vw, 5.2rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.home-hero-accent {
    display: block;
    color: var(--accent);
}

.home-hero-lead {
    max-width: 680px;
    margin: 34px 0 0;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.55;
}

.home-hero-description {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* ---------------------------------------------------------
   HERO VISUAL
   --------------------------------------------------------- */

.home-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.home-hero-card {
    width: 100%;
    max-width: 510px;
    padding: 30px;
    border: 1px solid #273548;
    background: #111827;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.16);
}

.home-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #29374a;
    color: #91a0b3;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-status {
    padding: 5px 8px;
    border: 1px solid #3b4b61;
    color: #aebdce;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.home-hero-card-title {
    margin-top: 28px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

    .home-hero-card-title span {
        margin: 0 5px;
        color: #5e7189;
    }

.home-hero-card-description {
    margin-top: 14px;
    color: #91a0b3;
    font-size: 0.86rem;
    line-height: 1.65;
}

.home-hero-card-flow {
    display: flex;
    align-items: stretch;
    margin-top: 34px;
}

.home-flow-item {
    flex: 1;
}

.home-flow-number {
    display: block;
    margin-bottom: 9px;
    color: #5f7188;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.home-flow-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-flow-item small {
    display: block;
    margin-top: 5px;
    color: #77889d;
    font-size: 0.65rem;
    line-height: 1.4;
}

.home-flow-line {
    flex: 0 0 24px;
    height: 1px;
    margin: 38px 10px 0;
    background: #3a495d;
}


/* ---------------------------------------------------------
   POSITIONING
   --------------------------------------------------------- */

.home-positioning {
    padding: 105px 0;
    background: var(--surface);
}

.home-positioning-container {
    max-width: 1100px;
}

.home-positioning-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 90px;
    align-items: start;
}

    .home-positioning-grid h2,
    .home-section-heading h2,
    .home-build-introduction h2,
    .home-ai-content h2,
    .home-closing-content h2 {
        margin: 0;
        color: var(--text);
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        font-weight: 700;
        letter-spacing: -0.035em;
        line-height: 1.08;
    }

        .home-positioning-grid h2 span,
        .home-section-heading h2 span,
        .home-build-introduction h2 span,
        .home-ai-content h2 span,
        .home-closing-content h2 span {
            color: var(--accent);
        }

.home-positioning-copy {
    padding-top: 4px;
}

    .home-positioning-copy p {
        margin: 0 0 20px;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.8;
    }

        .home-positioning-copy p:last-child {
            margin-bottom: 0;
        }


/* ---------------------------------------------------------
   CAPABILITIES
   --------------------------------------------------------- */

.home-capabilities {
    padding: 110px 0;
    background: var(--background);
}

.home-section-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

    .home-section-heading > p {
        max-width: 680px;
        margin: 24px 0 0;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.8;
    }

.home-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.home-capability-card {
    min-height: 320px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-capability-card:hover {
        position: relative;
        z-index: 2;
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(23, 32, 42, 0.08);
    }

.home-capability-number {
    display: block;
    margin-bottom: 42px;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-capability-card h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.25;
}

.home-capability-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.home-capability-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 28px;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
}

    .home-capability-card a span {
        color: var(--accent);
        transition: transform 0.2s ease;
    }

    .home-capability-card a:hover span {
        transform: translateX(4px);
    }


/* ---------------------------------------------------------
   WHAT I BUILD
   --------------------------------------------------------- */

.home-build-section {
    padding: 110px 0;
    background: var(--surface);
}

.home-build-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 100px;
    align-items: start;
}

.home-build-introduction p {
    max-width: 480px;
    margin: 25px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
}

    .home-text-link span {
        color: var(--accent);
        transition: transform 0.2s ease;
    }

    .home-text-link:hover span {
        transform: translateX(4px);
    }

.home-build-list {
    border-top: 1px solid var(--border);
}

.home-build-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 24px;
    padding: 27px 0;
    border-bottom: 1px solid var(--border);
}

.home-build-icon {
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.home-build-item h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 1.05rem;
}

.home-build-item p {
    max-width: 620px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   AI SECTION
   --------------------------------------------------------- */

.home-ai-section {
    padding: 110px 0;
    background: var(--background);
}

.home-ai-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 80px;
    padding: 65px;
    background: #111827;
}

.home-ai-content h2 {
    color: #ffffff;
}

    .home-ai-content h2 span {
        color: #79aef2;
    }

.home-ai-content p {
    max-width: 620px;
    margin: 23px 0 0;
    color: #a6b2c2;
    font-size: 0.95rem;
    line-height: 1.8;
}

.home-ai-content .btn {
    margin-top: 32px;
}

.home-ai-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.home-ai-layer {
    display: grid;
    grid-template-columns: 40px minmax(150px, 0.75fr) minmax(180px, 1fr);
    gap: 15px;
    align-items: center;
    min-height: 65px;
    padding: 0 18px;
    border: 1px solid #2d3b4f;
    background: #172131;
}

    .home-ai-layer > span {
        color: #5f7188;
        font-size: 0.62rem;
        font-weight: 800;
    }

    .home-ai-layer strong {
        color: #ffffff;
        font-size: 0.78rem;
    }

    .home-ai-layer small {
        color: #8392a5;
        font-size: 0.66rem;
    }


/* ---------------------------------------------------------
   SELECTED WORK
   --------------------------------------------------------- */

.home-work-section {
    padding: 110px 0;
    background: var(--surface);
}

.home-work-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
}

    .home-work-heading .home-text-link {
        flex: 0 0 auto;
        margin-bottom: 5px;
    }

.home-work-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.925fr 0.925fr;
    gap: 18px;
}

.home-work-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--background);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-work-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(23, 32, 42, 0.08);
    }

.home-work-card-featured {
    background: #111827;
    border-color: #111827;
}

.home-work-category {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-work-card-featured .home-work-category {
    color: #7fb0ed;
}

.home-work-card h3 {
    margin: 35px 0 0;
    color: var(--text);
    font-size: 1.65rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.home-work-card-featured h3 {
    color: #ffffff;
}

.home-work-card h3 span {
    display: block;
    color: var(--accent);
}

.home-work-card-featured h3 span {
    color: #7fb0ed;
}

.home-work-card p {
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.home-work-card-featured p {
    color: #a7b2c1;
}

.home-work-link {
    margin-top: auto;
    padding-top: 30px;
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 800;
}

.home-work-card-featured .home-work-link {
    color: #ffffff;
}


/* ---------------------------------------------------------
   CLOSING CTA
   --------------------------------------------------------- */

.home-closing {
    padding: 120px 0;
    background: var(--background);
    text-align: center;
}

.home-closing-content {
    max-width: 850px;
    margin: 0 auto;
}

    .home-closing-content .home-section-label {
        margin-bottom: 22px;
    }

    .home-closing-content h2 {
        font-size: clamp(2.4rem, 5vw, 4.3rem);
    }

    .home-closing-content p {
        max-width: 680px;
        margin: 25px auto 0;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.8;
    }

    .home-closing-content .btn {
        margin-top: 32px;
    }


/* =========================================================
   HOME RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-hero-content {
        max-width: 850px;
    }

    .home-hero-visual {
        justify-content: flex-start;
    }

    .home-hero-card {
        max-width: 650px;
    }

    .home-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-build-grid {
        gap: 60px;
    }

    .home-ai-panel {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-work-card-featured {
        grid-column: 1 / -1;
    }
}


@media (max-width: 850px) {

    .home-hero {
        padding: 80px 0 90px;
    }

    .home-positioning,
    .home-capabilities,
    .home-build-section,
    .home-ai-section,
    .home-work-section {
        padding: 85px 0;
    }

    .home-positioning-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-build-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-work-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

        .home-work-heading .home-text-link {
            margin-bottom: 0;
        }

    .home-ai-panel {
        padding: 45px;
    }
}


@media (max-width: 650px) {

    .home-hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .home-hero-lead {
        font-size: 1.15rem;
    }

    .home-hero-card {
        padding: 24px;
    }

    .home-hero-card-title {
        font-size: 1.6rem;
    }

    .home-hero-card-flow {
        flex-direction: column;
        gap: 18px;
    }

    .home-flow-line {
        display: none;
    }

    .home-flow-item {
        display: grid;
        grid-template-columns: 35px 1fr;
        column-gap: 10px;
    }

    .home-flow-number {
        grid-row: span 2;
        margin: 0;
    }

    .home-flow-item strong {
        align-self: end;
    }

    .home-flow-item small {
        margin-top: 2px;
    }

    .home-capability-grid {
        grid-template-columns: 1fr;
    }

    .home-capability-card {
        min-height: auto;
    }

    .home-ai-panel {
        padding: 32px 25px;
    }

    .home-ai-layer {
        grid-template-columns: 30px 1fr;
        padding: 15px;
    }

        .home-ai-layer small {
            grid-column: 2;
        }

    .home-work-grid {
        grid-template-columns: 1fr;
    }

    .home-work-card-featured {
        grid-column: auto;
    }

    .home-work-card {
        min-height: 300px;
    }

    .home-closing {
        padding: 90px 0;
    }
}


@media (max-width: 450px) {

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .home-hero-actions .btn {
            text-align: center;
        }

    .home-build-item {
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 15px;
    }

    .home-ai-content h2 {
        font-size: 2.2rem;
    }

    .home-work-card {
        padding: 26px;
    }
}
/* =========================================================
   PROJECT 01 / 02 SHOWCASE TITLES
   ========================================================= */

.project-showcase-featured .project-showcase-content h2,
.project-02-grid .project-showcase-content h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
}

    .project-showcase-featured .project-showcase-content h2 .project-title-accent,
    .project-02-grid .project-showcase-content h2 .project-title-accent {
        display: block;
        margin: 0;
        padding: 0;
        font-size: inherit;
        line-height: inherit;
        letter-spacing: inherit;
        font-weight: inherit;
    }

/* =========================================================
   PROJECT 04 / 05 SHOWCASE HEADER TITLES
   ========================================================= */

.project-showcase .project-showcase-header h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
}

    .project-showcase .project-showcase-header h2 .project-title-accent {
        display: block;
        margin: 0;
        padding: 0;
        font-size: inherit;
        line-height: inherit;
        letter-spacing: inherit;
        font-weight: inherit;
    }

/* =========================================================
   CONTACT PAGE
   Executive Contact Experience
   ========================================================= */

.contact-page-hero {
    padding: 100px 0 110px;
    background: var(--surface-dark);
    color: var(--white);
}

.contact-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 90px;
    align-items: center;
}

.contact-hero-content {
    max-width: 820px;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #8fb8f5;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.contact-hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 700;
}

    .contact-hero-content h1 span {
        display: block;
        color: #8fb8f5;
    }

.contact-hero-lead {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.7;
}

.contact-hero-description {
    max-width: 700px;
    margin: 0;
    color: #aeb9c8;
    font-size: 1rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   CONTACT IDENTITY CARD
   --------------------------------------------------------- */

.contact-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.contact-identity-card {
    width: 100%;
    max-width: 390px;
    padding: 32px;
    border: 1px solid #344256;
    background: #182231;
    box-sizing: border-box;
}

.contact-identity-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-identity-photo {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid #46566b;
    background: #202b3a;
}

    .contact-identity-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contact-identity-name {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-identity-title {
    display: block;
    color: #91a0b3;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.contact-identity-divider {
    height: 1px;
    margin: 28px 0;
    background: #344256;
}

.contact-identity-focus > span {
    display: block;
    margin-bottom: 14px;
    color: #738196;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.contact-identity-focus strong {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   DISCUSSION SECTION
   --------------------------------------------------------- */

.contact-discussion-section {
    padding: 110px 0;
    background: #ffffff;
}

.contact-section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.contact-section-label {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.contact-section-heading h2,
.contact-connect-content h2,
.contact-closing-content h2 {
    margin: 0 0 20px;
    color: var(--text);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
}

    .contact-section-heading h2 span,
    .contact-connect-content h2 span,
    .contact-closing-content h2 span {
        display: block;
        color: var(--accent);
    }

.contact-section-heading > p {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-discussion-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.contact-discussion-card {
    min-height: 300px;
    padding: 30px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-sizing: border-box;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    .contact-discussion-card:hover {
        transform: translateY(-4px);
        border-color: #c5d2e1;
        box-shadow: 0 14px 35px rgba(23, 32, 42, 0.07);
    }

.contact-card-number {
    display: block;
    margin-bottom: 50px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.contact-discussion-card h3 {
    margin: 0 0 15px;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 700;
}

.contact-discussion-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CONNECT PANEL
   --------------------------------------------------------- */

.contact-connect-section {
    padding: 0 0 110px;
    background: #ffffff;
}

.contact-connect-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 70px;
    padding: 65px;
    background: var(--surface);
    box-sizing: border-box;
}

.contact-connect-content {
    max-width: 560px;
}

    .contact-connect-content > p {
        max-width: 520px;
        margin: 0;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.8;
    }

.contact-connect-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-connect-option {
    display: block;
    padding: 25px 28px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    .contact-connect-option:hover {
        transform: translateX(4px);
        border-color: #b8c8da;
        box-shadow: 0 10px 25px rgba(23, 32, 42, 0.06);
    }

.contact-option-label {
    display: block;
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.contact-connect-option strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-option-action {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   CLOSING SECTION
   --------------------------------------------------------- */

.contact-closing-section {
    padding: 110px 0 125px;
    background: var(--surface-dark);
    color: #ffffff;
}

.contact-closing-content {
    max-width: 850px;
}

    .contact-closing-content .contact-section-label {
        color: #8fb8f5;
    }

    .contact-closing-content h2 {
        color: #ffffff;
        margin-bottom: 22px;
    }

        .contact-closing-content h2 span {
            color: #8fb8f5;
        }

    .contact-closing-content > p {
        margin: 0 0 32px;
        color: #aeb9c8;
        font-size: 1.05rem;
        line-height: 1.7;
    }

.contact-closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------------------------------------------------------
   CONTACT RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .contact-hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
        gap: 55px;
    }

    .contact-hero-content h1 {
        font-size: clamp(3rem, 5vw, 4.4rem);
    }

    .contact-discussion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-connect-panel {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


@media (max-width: 850px) {

    .contact-page-hero {
        padding: 80px 0 85px;
    }

    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-hero-visual {
        justify-content: flex-start;
    }

    .contact-identity-card {
        max-width: 500px;
    }

    .contact-discussion-section {
        padding: 85px 0;
    }

    .contact-connect-section {
        padding-bottom: 85px;
    }

    .contact-connect-panel {
        padding: 45px;
    }

    .contact-closing-section {
        padding: 85px 0 100px;
    }
}


@media (max-width: 650px) {

    .contact-hero-content h1 {
        font-size: clamp(2.7rem, 11vw, 4rem);
    }

    .contact-hero-lead {
        font-size: 1.08rem;
    }

    .contact-discussion-grid {
        grid-template-columns: 1fr;
    }

    .contact-discussion-card {
        min-height: 0;
    }

    .contact-card-number {
        margin-bottom: 35px;
    }

    .contact-connect-panel {
        padding: 32px;
    }
}

@media (max-width: 450px) {

    .contact-page-hero {
        padding: 65px 0 70px;
    }

    .contact-identity-card {
        padding: 24px;
    }

    .contact-identity-photo {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    .contact-identity-title {
        font-size: 0.56rem;
    }

    .contact-discussion-section {
        padding: 70px 0;
    }

    .contact-connect-panel {
        padding: 25px;
    }

    .contact-closing-section {
        padding: 70px 0 80px;
    }

    .contact-closing-actions {
        flex-direction: column;
    }

        .contact-closing-actions .btn {
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
}
/* =========================================================
   Accessibility — Skip Link
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--surface-dark);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid var(--accent);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform 0.15s ease;
}

    .skip-link:focus {
        transform: translateY(0);
        outline: 3px solid var(--accent);
        outline-offset: 3px;
    }
/* =========================================================
   Accessibility — Keyboard Focus
   ========================================================= */

:where(a, button, input, textarea, select):focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

:where(a, button, input, textarea, select):focus:not(:focus-visible) {
    outline: none;
}
/* =========================================================
   Accessibility — Visually Hidden Content
   ========================================================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}