/* =========================================================
   PROJECT DETAIL
   Reyhan Hardiansyah Portfolio
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

:root {

    --bg-primary:
        #08080b;

    --bg-secondary:
        #0d0d12;

    --bg-card:
        #111116;

    --text-primary:
        #f5f5f7;

    --text-secondary:
        #a1a1aa;

    --text-muted:
        #666671;

    --border:
        rgba(
            255,
            255,
            255,
            0.08
        );

    --border-hover:
        rgba(
            139,
            92,
            246,
            0.35
        );

    --primary:
        #8b5cf6;

    --primary-light:
        #a78bfa;

    --secondary:
        #6366f1;

    --container:
        1180px;

    --radius:
        14px;

}


/* =========================================================
   02. RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing:
        border-box;

}


html {

    scroll-behavior:
        smooth;

}


body {

    min-height: 100vh;

    background:
        var(--bg-primary);

    color:
        var(--text-primary);

    font-family:
        "Space Grotesk",
        sans-serif;

    -webkit-font-smoothing:
        antialiased;

}


a {

    color: inherit;

    text-decoration:
        none;

}


button,
a {

    -webkit-tap-highlight-color:
        transparent;

}


/* =========================================================
   03. GLOBAL BACKGROUND
========================================================= */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(
                139,
                92,
                246,
                0.07
            ),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 60%,
            rgba(
                99,
                102,
                241,
                0.035
            ),
            transparent 25%
        );

}


/* =========================================================
   04. CONTAINER
========================================================= */

.project-container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin:
        0 auto;

}


/* =========================================================
   05. GRADIENT TEXT
========================================================= */

.gradient-text {

    background:
        linear-gradient(
            110deg,
            var(--primary-light),
            var(--secondary)
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

}


/* =========================================================
   06. NAVBAR
========================================================= */

.project-navbar {

    position:
        sticky;

    top: 0;

    z-index: 1000;

    height:
        74px;

    display:
        flex;

    align-items:
        center;

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(
            8,
            8,
            11,
            0.78
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

}


.project-navbar
.project-container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


/* =========================================================
   07. PROJECT LOGO
========================================================= */

.project-logo {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    transition:
        transform 0.3s ease;

}


.project-logo img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

}


.project-logo:hover {

    transform:
        translateY(-2px);

}


/* =========================================================
   08. BACK TO PROJECTS
========================================================= */

.back-projects {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        8px;

    color:
        var(--text-muted);

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.back-projects span {

    font-size:
        13px;

}


.back-projects:hover {

    gap:
        11px;

    color:
        var(--primary-light);

}


/* =========================================================
   09. PROJECT HERO
========================================================= */

.project-hero {

    position:
        relative;

    padding:
        115px 0 90px;

    overflow:
        hidden;

}


.project-hero::before {

    content: "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    top:
        -200px;

    right:
        -130px;

    border-radius:
        50%;

    background:
        rgba(
            139,
            92,
            246,
            0.10
        );

    filter:
        blur(100px);

    pointer-events:
        none;

}


.project-hero-meta {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    margin-bottom:
        28px;

}


.project-hero-meta span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    letter-spacing:
        0.12em;

    color:
        var(--text-muted);

}


.project-hero-meta span:first-child {

    color:
        var(--primary-light);

}


.project-hero-content {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        50px;

}


.project-hero-text {

    max-width:
        780px;

}


.project-label {

    display:
        inline-block;

    margin-bottom:
        15px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        8px;

    letter-spacing:
        0.15em;

    color:
        var(--primary-light);

}


.project-hero h1 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            58px,
            8vw,
            108px
        );

    line-height:
        0.95;

    letter-spacing:
        -0.065em;

    font-weight:
        600;

}


.project-subtitle {

    max-width:
        620px;

    margin-top:
        27px;

    color:
        var(--text-secondary);

    font-size:
        16px;

    line-height:
        1.7;

}


.project-hero-tags {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    margin-top:
        28px;

}


.project-hero-tags span {

    padding:
        6px 9px;

    border:
        1px solid
        var(--border);

    border-radius:
        6px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


.project-hero-number {

    flex-shrink:
        0;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    gap:
        5px;

}


.project-hero-number span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

    letter-spacing:
        0.15em;

}


.project-hero-number strong {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        48px;

    line-height:
        1;

    color:
        rgba(
            255,
            255,
            255,
            0.07
        );

}


/* =========================================================
   10. PROJECT PREVIEW
========================================================= */

.project-preview-section {

    padding:
        0 0 100px;

}


.project-preview {

    position:
        relative;

    border:
        1px solid
        var(--border);

    border-radius:
        16px;

    overflow:
        hidden;

    background:
        #0c0c10;

    box-shadow:
        0 35px 90px
        rgba(
            0,
            0,
            0,
            0.35
        );

}


.preview-topbar {

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        0 16px;

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.018
        );

}


.preview-topbar > span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

}


.preview-dots {

    display:
        flex;

    gap:
        5px;

}


.preview-dots span {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );

}


.preview-content {

    min-height:
        420px;

    display:
        flex;

}


.preview-sidebar {

    width:
        185px;

    flex-shrink:
        0;

    display:
        flex;

    flex-direction:
        column;

    gap:
        13px;

    padding:
        28px 20px;

    border-right:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.012
        );

}


.preview-logo {

    width:
        35px;

    height:
        35px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        22px;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.22
        );

    border-radius:
        8px;

    color:
        var(--primary-light);

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        8px;

    background:
        rgba(
            139,
            92,
            246,
            0.06
        );

}


.preview-sidebar > span {

    width:
        80%;

    height:
        7px;

    border-radius:
        3px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

}


.preview-sidebar > span:nth-child(3) {

    width:
        62%;

}


.preview-sidebar > span:nth-child(4) {

    width:
        75%;

}


.preview-sidebar > span:nth-child(5) {

    width:
        55%;

}


.preview-dashboard {

    flex:
        1;

    padding:
        35px;

}


.preview-heading {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.preview-heading small {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

}


.preview-heading h3 {

    margin-top:
        6px;

    font-size:
        24px;

    font-weight:
        600;

}


.preview-cards {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        10px;

    margin-top:
        30px;

}


.preview-cards > div {

    min-height:
        105px;

    padding:
        17px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    border:
        1px solid
        var(--border);

    border-radius:
        9px;

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


.preview-cards small {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        6px;

    color:
        var(--text-muted);

}


.preview-cards strong {

    font-size:
        27px;

    font-weight:
        500;

}


.preview-chart {

    height:
        140px;

    margin-top:
        15px;

    padding:
        20px;

    display:
        flex;

    align-items:
        flex-end;

    gap:
        12px;

    border:
        1px solid
        var(--border);

    border-radius:
        9px;

    background:
        rgba(
            255,
            255,
            255,
            0.012
        );

}


.preview-chart span {

    flex:
        1;

    height:
        30%;

    border-radius:
        3px 3px 0 0;

    background:
        linear-gradient(
            to top,
            rgba(
                99,
                102,
                241,
                0.25
            ),
            rgba(
                139,
                92,
                246,
                0.75
            )
        );

}


.preview-chart span:nth-child(2) {

    height:
        45%;

}


.preview-chart span:nth-child(3) {

    height:
        35%;

}


.preview-chart span:nth-child(4) {

    height:
        65%;

}


.preview-chart span:nth-child(5) {

    height:
        52%;

}


.preview-chart span:nth-child(6) {

    height:
        82%;

}


/* =========================================================
   11. PROJECT SECTION
========================================================= */

.project-section {

    padding:
        100px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.045
        );

}


.project-two-column {

    display:
        grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap:
        90px;

}


.section-index {

    display:
        block;

    margin-bottom:
        18px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    letter-spacing:
        0.13em;

    color:
        var(--primary-light);

}


.project-section h2 {

    max-width:
        600px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height:
        1.02;

    letter-spacing:
        -0.045em;

    font-weight:
        600;

}


.project-text {

    padding-top:
        30px;

}


.project-text p {

    margin-bottom:
        18px;

    color:
        var(--text-secondary);

    font-size:
        14px;

    line-height:
        1.9;

}


.project-text p:last-child {

    margin-bottom:
        0;

}


/* =========================================================
   12. SECTION HEADING
========================================================= */

.section-heading {

    margin-bottom:
        45px;

}


.section-heading h2 {

    max-width:
        700px;

}


/* =========================================================
   13. PROBLEM GRID
========================================================= */

.problem-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        12px;

}


.info-card {

    position:
        relative;

    min-height:
        280px;

    padding:
        25px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            rgba(
                255,
                255,
                255,
                0.008
            )
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

}


.info-card:hover {

    transform:
        translateY(-5px);

    border-color:
        var(--border-hover);

}


.info-card.featured {

    background:
        linear-gradient(
            145deg,
            rgba(
                139,
                92,
                246,
                0.075
            ),
            rgba(
                255,
                255,
                255,
                0.01
            )
        );

}


.info-number {

    display:
        block;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        9px;

    color:
        var(--primary-light);

}


.info-label {

    display:
        block;

    margin-top:
        35px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    letter-spacing:
        0.12em;

    color:
        var(--text-muted);

}


.info-card h3 {

    max-width:
        430px;

    margin-top:
        10px;

    font-size:
        24px;

    line-height:
        1.15;

    font-weight:
        600;

}


.info-card p {

    max-width:
        480px;

    margin-top:
        14px;

    color:
        var(--text-secondary);

    font-size:
        11px;

    line-height:
        1.8;

}


/* =========================================================
   14. ROLE GRID
========================================================= */

.role-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        9px;

}


.role-card {

    min-height:
        230px;

    padding:
        21px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(
            255,
            255,
            255,
            0.012
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

}


.role-card:hover {

    transform:
        translateY(-5px);

    border-color:
        var(--border-hover);

    background:
        rgba(
            139,
            92,
            246,
            0.035
        );

}


.role-number {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        8px;

    color:
        var(--primary-light);

}


.role-card h3 {

    margin-top:
        55px;

    font-size:
        20px;

    font-weight:
        600;

}


.role-card p {

    margin-top:
        10px;

    color:
        var(--text-muted);

    font-size:
        10px;

    line-height:
        1.75;

}


/* =========================================================
   15. FEATURE LIST
========================================================= */

.feature-list {

    border-top:
        1px solid
        var(--border);

}


.feature-item {

    display:
        grid;

    grid-template-columns:
        55px 1fr;

    gap:
        20px;

    padding:
        22px 0;

    border-bottom:
        1px solid
        var(--border);

    transition:
        padding-left 0.3s ease;

}


.feature-item:hover {

    padding-left:
        8px;

}


.feature-item > span {

    padding-top:
        4px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        8px;

    color:
        var(--primary-light);

}


.feature-item h3 {

    font-size:
        18px;

    font-weight:
        500;

}


.feature-item p {

    margin-top:
        5px;

    color:
        var(--text-muted);

    font-size:
        10px;

    line-height:
        1.7;

}


/* =========================================================
   16. ROLE DESCRIPTION
========================================================= */

.role-description {

    padding-top:
        30px;

}


.role-description > p {

    max-width:
        650px;

    color:
        var(--text-secondary);

    font-size:
        14px;

    line-height:
        1.9;

}


.role-tags {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    margin-top:
        25px;

}


.role-tags span {

    padding:
        6px 8px;

    border:
        1px solid
        var(--border);

    border-radius:
        6px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

}


/* =========================================================
   17. TECHNOLOGY
========================================================= */

.technology-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        9px;

}


.technology-item {

    min-height:
        145px;

    padding:
        20px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(
            255,
            255,
            255,
            0.012
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

}


.technology-item:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--border-hover);

    background:
        rgba(
            139,
            92,
            246,
            0.035
        );

}


.technology-item span {

    font-size:
        20px;

    font-weight:
        600;

}


.technology-item small {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        6px;

    letter-spacing:
        0.1em;

    color:
        var(--text-muted);

}


/* =========================================================
   18. PROJECT CTA
========================================================= */

.project-cta {

    padding:
        90px 0;

}


.project-cta-box {

    position:
        relative;

    padding:
        65px 50px;

    text-align:
        center;

    border:
        1px solid
        var(--border);

    border-radius:
        18px;

    overflow:
        hidden;

    background:
        linear-gradient(
            145deg,
            rgba(
                139,
                92,
                246,
                0.08
            ),
            rgba(
                255,
                255,
                255,
                0.012
            )
        );

}


.project-cta-box::before {

    content: "";

    position:
        absolute;

    width:
        280px;

    height:
        280px;

    top:
        -170px;

    left:
        50%;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        rgba(
            139,
            92,
            246,
            0.15
        );

    filter:
        blur(80px);

}


.project-cta-box > span {

    position:
        relative;

    z-index:
        2;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    letter-spacing:
        0.13em;

    color:
        var(--text-muted);

}


.project-cta-box h2 {

    position:
        relative;

    z-index:
        2;

    margin-top:
        15px;

    font-size:
        clamp(
            35px,
            5vw,
            58px
        );

    line-height:
        1.05;

    letter-spacing:
        -0.04em;

}


.project-cta-box p {

    position:
        relative;

    z-index:
        2;

    max-width:
        500px;

    margin:
        18px auto 0;

    color:
        var(--text-secondary);

    font-size:
        12px;

    line-height:
        1.7;

}


.project-button {

    position:
        relative;

    z-index:
        2;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        28px;

    padding:
        11px 15px;

    border-radius:
        8px;

    background:
        linear-gradient(
            110deg,
            var(--primary),
            var(--secondary)
        );

    font-size:
        10px;

    font-weight:
        600;

    box-shadow:
        0 10px 30px
        rgba(
            99,
            102,
            241,
            0.18
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.project-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(
            99,
            102,
            241,
            0.30
        );

}


/* =========================================================
   19. FOOTER
========================================================= */

.project-footer {

    padding:
        22px 0;

    border-top:
        1px solid
        var(--border);

}


.project-footer-content {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}


.project-footer-content span,
.project-footer-content a {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

}


.project-footer-content a {

    transition:
        color 0.3s ease;

}


.project-footer-content a:hover {

    color:
        var(--primary-light);

}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 1000px) {

    .project-hero {

        padding:
            90px 0 70px;

    }


    .project-two-column {

        grid-template-columns:
            1fr;

        gap:
            30px;

    }


    .project-text,
    .role-description {

        padding-top:
            0;

    }


    .role-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .technology-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   21. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 768px) {

    .project-container {

        width:
            calc(100% - 30px);

    }


    .project-navbar {

        height:
            68px;

    }


    .project-logo {

        width:
            34px;

        height:
            34px;

    }


    .project-hero {

        padding:
            70px 0 60px;

    }


    .project-hero-content {

        display:
            block;

    }


    .project-hero h1 {

        font-size:
            clamp(
                50px,
                12vw,
                75px
            );

    }


    .project-subtitle {

        font-size:
            14px;

    }


    .project-hero-number {

        display:
            none;

    }


    .project-preview-section {

        padding-bottom:
            65px;

    }


    .preview-content {

        min-height:
            330px;

    }


    .preview-sidebar {

        width:
            120px;

        padding:
            22px 15px;

    }


    .preview-dashboard {

        padding:
            23px;

    }


    .preview-cards {

        gap:
            7px;

    }


    .preview-cards > div {

        min-height:
            80px;

        padding:
            12px;

    }


    .preview-cards strong {

        font-size:
            20px;

    }


    .preview-chart {

        height:
            110px;

    }


    .project-section {

        padding:
            70px 0;

    }


    .project-section h2 {

        font-size:
            clamp(
                36px,
                9vw,
                50px
            );

    }


    .problem-grid {

        grid-template-columns:
            1fr;

    }


    .role-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .project-cta {

        padding:
            65px 0;

    }


    .project-cta-box {

        padding:
            50px 25px;

    }

}


/* =========================================================
   22. MOBILE
========================================================= */

@media (max-width: 480px) {

    .project-container {

        width:
            calc(100% - 24px);

    }


    .project-navbar {

        height:
            64px;

    }


    .project-logo {

        width:
            31px;

        height:
            31px;

    }


    .back-projects {

        font-size:
            7px;

    }


    .back-projects span {

        font-size:
            11px;

    }


    .project-hero {

        padding:
            55px 0 45px;

    }


    .project-hero-meta {

        gap:
            10px;

        margin-bottom:
            22px;

    }


    .project-hero-meta span {

        font-size:
            6px;

    }


    .project-label {

        font-size:
            6px;

    }


    .project-hero h1 {

        font-size:
            clamp(
                44px,
                13vw,
                62px
            );

    }


    .project-subtitle {

        margin-top:
            20px;

        font-size:
            12px;

        line-height:
            1.7;

    }


    .project-hero-tags {

        margin-top:
            20px;

    }


    .project-hero-tags span {

        padding:
            5px 7px;

        font-size:
            6px;

    }


    .project-preview-section {

        padding-bottom:
            50px;

    }


    .project-preview {

        border-radius:
            10px;

    }


    .preview-topbar {

        height:
            32px;

        padding:
            0 10px;

    }


    .preview-dots span {

        width:
            5px;

        height:
            5px;

    }


    .preview-topbar > span {

        font-size:
            5px;

    }


    .preview-content {

        min-height:
            230px;

    }


    .preview-sidebar {

        width:
            55px;

        padding:
            15px 10px;

        gap:
            10px;

    }


    .preview-logo {

        width:
            28px;

        height:
            28px;

        margin-bottom:
            12px;

        font-size:
            6px;

    }


    .preview-sidebar > span {

        height:
            5px;

    }


    .preview-dashboard {

        padding:
            16px;

    }


    .preview-heading small {

        font-size:
            5px;

    }


    .preview-heading h3 {

        font-size:
            16px;

    }


    .preview-cards {

        margin-top:
            17px;

        gap:
            5px;

    }


    .preview-cards > div {

        min-height:
            55px;

        padding:
            8px;

    }


    .preview-cards small {

        font-size:
            4px;

    }


    .preview-cards strong {

        font-size:
            14px;

    }


    .preview-chart {

        height:
            75px;

        margin-top:
            8px;

        padding:
            10px;

        gap:
            6px;

    }


    .project-section {

        padding:
            55px 0;

    }


    .section-index {

        margin-bottom:
            13px;

        font-size:
            6px;

    }


    .project-section h2 {

        font-size:
            clamp(
                32px,
                10vw,
                44px
            );

    }


    .project-text p {

        font-size:
            11px;

        line-height:
            1.8;

    }


    .info-card {

        min-height:
            240px;

        padding:
            19px;

    }


    .info-label {

        margin-top:
            28px;

        font-size:
            6px;

    }


    .info-card h3 {

        font-size:
            20px;

    }


    .info-card p {

        font-size:
            9px;

    }


    .role-grid {

        grid-template-columns:
            1fr;

    }


    .role-card {

        min-height:
            180px;

        padding:
            18px;

    }


    .role-card h3 {

        margin-top:
            38px;

        font-size:
            18px;

    }


    .role-card p {

        font-size:
            9px;

    }


    .feature-item {

        grid-template-columns:
            35px 1fr;

        gap:
            10px;

        padding:
            17px 0;

    }


    .feature-item h3 {

        font-size:
            15px;

    }


    .feature-item p {

        font-size:
            8px;

    }


    .technology-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .technology-item {

        min-height:
            110px;

        padding:
            16px;

    }


    .technology-item span {

        font-size:
            16px;

    }


    .technology-item small {

        font-size:
            5px;

    }


    .role-description > p {

        font-size:
            11px;

        line-height:
            1.8;

    }


    .role-tags {

        margin-top:
            18px;

    }


    .role-tags span {

        padding:
            5px 6px;

        font-size:
            6px;

    }


    .project-cta {

        padding:
            50px 0;

    }


    .project-cta-box {

        padding:
            40px 18px;

        border-radius:
            14px;

    }


    .project-cta-box h2 {

        font-size:
            32px;

    }


    .project-cta-box p {

        font-size:
            10px;

    }


    .project-button {

        padding:
            10px 13px;

        font-size:
            8px;

    }


    .project-footer {

        padding:
            18px 0;

    }


    .project-footer-content {

        flex-direction:
            column;

        gap:
            8px;

        text-align:
            center;

    }


    .project-footer-content span,
    .project-footer-content a {

        font-size:
            6px;

    }

}


/* =========================================================
   23. VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .project-hero h1 {

        font-size:
            41px;

    }


    .project-subtitle {

        font-size:
            11px;

    }


    .preview-sidebar {

        display:
            none;

    }


    .preview-dashboard {

        padding:
            14px;

    }


    .project-section h2 {

        font-size:
            30px;

    }


    .technology-grid {

        gap:
            6px;

    }


    .technology-item {

        min-height:
            95px;

        padding:
            13px;

    }


    .project-cta-box h2 {

        font-size:
            28px;

    }

}


/* =========================================================
   24. SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width:
        6px;

}


::-webkit-scrollbar-track {

    background:
        var(--bg-primary);

}


::-webkit-scrollbar-thumb {

    background:
        rgba(
            139,
            92,
            246,
            0.35
        );

    border-radius:
        100px;

}


::-webkit-scrollbar-thumb:hover {

    background:
        rgba(
            139,
            92,
            246,
            0.60
        );

}


/* =========================================================
   25. SELECTION
========================================================= */

::selection {

    background:
        rgba(
            139,
            92,
            246,
            0.30
        );

    color:
        var(--text-primary);

}


/* =========================================================
   26. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}
/* =========================================================
   PROJECT SHOWCASE
========================================================= */

.project-showcase-section {

    padding:
        0 0 110px;

}


/* =========================================================
   SHOWCASE HEADING
========================================================= */

.showcase-heading {

    display:
        grid;

    grid-template-columns:
        1fr 0.7fr;

    gap:
        70px;

    align-items:
        end;

    margin-bottom:
        40px;

}


.showcase-heading h2 {

    max-width:
        650px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height:
        1.02;

    letter-spacing:
        -0.045em;

    font-weight:
        600;

}


.showcase-heading p {

    max-width:
        430px;

    color:
        var(--text-secondary);

    font-size:
        12px;

    line-height:
        1.8;

}


/* =========================================================
   MAIN SHOWCASE
========================================================= */

.showcase-main {

    position:
        relative;

}


.showcase-browser {

    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        16px;

    background:
        #0d0d12;

    box-shadow:
        0 35px 90px
        rgba(
            0,
            0,
            0,
            0.35
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;

}


.showcase-browser:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.25
        );

}


/* =========================================================
   BROWSER BAR
========================================================= */

.showcase-browser-bar {

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    position:
        relative;

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.018
        );

}


.showcase-dots {

    position:
        absolute;

    left:
        16px;

    display:
        flex;

    gap:
        5px;

}


.showcase-dots span {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );

}


.showcase-browser-title {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

}


/* =========================================================
   DESKTOP IMAGE
========================================================= */

.showcase-image {

    width:
        100%;

    overflow:
        hidden;

    background:
        #f4f6f9;

}


.showcase-image img {

    display:
        block;

    width:
        100%;

    height:
        auto;

    transition:
        transform 0.7s ease;

}


.showcase-browser:hover
.showcase-image img {

    transform:
        scale(1.015);

}


/* =========================================================
   SECONDARY SHOWCASE
========================================================= */

.showcase-secondary {

    display:
        grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap:
        70px;

    align-items:
        center;

    margin-top:
        80px;

}


/* =========================================================
   MOBILE IMAGE
========================================================= */

.showcase-mobile {

    display:
        flex;

    justify-content:
        center;

    min-height:
        500px;

    padding:
        40px;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        16px;

    background:
        radial-gradient(
            circle at center,
            rgba(
                139,
                92,
                246,
                0.08
            ),
            transparent 65%
        );

}


.showcase-mobile-image {

    max-width:
        300px;

    overflow:
        hidden;

    border:
        5px solid
        #111116;

    border-radius:
        35px;

    background:
        #08080b;

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            0.5
        );

}


.showcase-mobile-image img {

    display:
        block;

    width:
        100%;

    height:
        auto;

}


/* =========================================================
   SECONDARY INFO
========================================================= */

.showcase-secondary-info {

    max-width:
        500px;

}


.showcase-secondary-info h3 {

    max-width:
        500px;

    margin-top:
        15px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height:
        1.05;

    letter-spacing:
        -0.04em;

    font-weight:
        600;

}


.showcase-secondary-info p {

    margin-top:
        20px;

    color:
        var(--text-secondary);

    font-size:
        12px;

    line-height:
        1.85;

}


/* =========================================================
   SHOWCASE TAGS
========================================================= */

.showcase-tags {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    margin-top:
        25px;

}


.showcase-tags span {

    padding:
        6px 8px;

    border:
        1px solid
        var(--border);

    border-radius:
        6px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size:
        7px;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


/* =========================================================
   SHOWCASE TABLET
========================================================= */

@media (max-width: 900px) {

    .showcase-heading {

        grid-template-columns:
            1fr;

        gap:
            20px;

    }


    .showcase-heading p {

        max-width:
            600px;

    }


    .showcase-secondary {

        grid-template-columns:
            1fr;

        gap:
            40px;

    }


    .showcase-mobile {

        min-height:
            450px;

    }


    .showcase-secondary-info {

        max-width:
            650px;

    }

}


/* =========================================================
   SHOWCASE MOBILE
========================================================= */

@media (max-width: 600px) {

    .project-showcase-section {

        padding-bottom:
            70px;

    }


    .showcase-heading {

        margin-bottom:
            28px;

    }


    .showcase-heading h2 {

        font-size:
            clamp(
                32px,
                10vw,
                45px
            );

    }


    .showcase-heading p {

        font-size:
            10px;

        line-height:
            1.75;

    }


    .showcase-browser {

        border-radius:
            10px;

    }


    .showcase-browser-bar {

        height:
            30px;

    }


    .showcase-dots {

        left:
            10px;

        gap:
            3px;

    }


    .showcase-dots span {

        width:
            5px;

        height:
            5px;

    }


    .showcase-browser-title {

        font-size:
            5px;

    }


    .showcase-secondary {

        margin-top:
            45px;

    }


    .showcase-mobile {

        min-height:
            400px;

        padding:
            25px;

        border-radius:
            12px;

    }


    .showcase-mobile-image {

        max-width:
            235px;

        border-width:
            4px;

        border-radius:
            27px;

    }


    .showcase-secondary-info h3 {

        font-size:
            clamp(
                30px,
                9vw,
                42px
            );

    }


    .showcase-secondary-info p {

        font-size:
            10px;

        line-height:
            1.75;

    }


    .showcase-tags {

        margin-top:
            18px;

    }


    .showcase-tags span {

        font-size:
            6px;

        padding:
            5px 7px;

    }

}