*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    background: #0b0b0b;
    color: #e5e5e5;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
}

p {
    color: #aaa;
    line-height: 1.6;
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

    .navbar.scrolled {
        background: rgba(11,11,11,.78);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid #242424;
        box-shadow: 0 10px 30px rgba(0,0,0,.18);
    }

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7c86ff;
    box-shadow: 0 0 14px rgba(124,134,255,.75);
    display: inline-block;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-accent {
    color: #7c86ff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 14px;
    border: none;
    background: none;
    color: #9f9f9f;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: color .25s ease, background .25s ease;
}

    .nav-link:hover {
        color: #fff;
        background: #181818;
    }

.nav-cta {
    margin-right: 0;
    margin-left: 8px;
    padding: 10px 16px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

    .mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #eaeaea;
        margin: 5px auto;
        transition: transform .25s ease, opacity .25s ease;
        border-radius: 999px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.mobile-menu {
    display: none;
    overflow: hidden;
    background: rgba(11,11,11,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #242424;
    padding: 0 20px;
    max-height: 0;
    transition: max-height .35s ease, padding .35s ease;
}

    .mobile-menu.open {
        display: block;
        max-height: 320px;
        padding: 10px 20px 18px;
    }

.mobile-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: none;
    background: none;
    color: #9f9f9f;
    font-size: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: color .25s ease, background .25s ease;
}

    .mobile-link:hover {
        color: #fff;
        background: #181818;
    }

.mobile-cta {
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
}


/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    opacity: .35;
}

.hero-glow-left {
    width: 420px;
    height: 420px;
    left: -180px;
    top: 25%;
    background: rgba(100,100,255,.14);
}

.hero-glow-right {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: 18%;
    background: rgba(255,255,255,.08);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #171717;
    border: 1px solid #2c2c2c;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9f9f9f;
    margin-bottom: 28px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c86ff;
    display: inline-block;
    box-shadow: 0 0 12px rgba(124,134,255,.8);
}

.hero h1 {
    font-size: 64px;
    line-height: 1.02;
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #f5f5f5;
}

.hero-role {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 700;
    color: #8e8e8e;
}

.hero-description {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.8;
    color: #9f9f9f;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 28px;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-button {
    padding: 11px 14px;
    border-radius: 14px;
    background: #171717;
    border: 1px solid #2b2b2b;
    color: #a9a9a9;
    text-decoration: none;
    font-size: 14px;
    transition: all .25s ease;
}

    .social-button:hover {
        color: #ffffff;
        border-color: #4b4b4b;
        transform: translateY(-2px);
    }

.hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -10px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(124,134,255,.35), rgba(255,255,255,.08), transparent);
    filter: blur(16px);
}

.hero-image-card {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #2e2e2e;
    background: #121212;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.34), transparent 45%);
}

.hero-badge {
    position: absolute;
    left: -18px;
    bottom: -18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #151515;
    border: 1px solid #2f2f2f;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    font-size: 13px;
    font-weight: 600;
    color: #f0f0f0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    color: #f5f5f5;
}

.hero-stat-label {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #7c7c7c;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    font-size: 26px;
    color: rgba(255,255,255,.25);
    animation: floatArrow 2s infinite ease-in-out;
}

@keyframes floatArrow {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.btn {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
}

.primary {
    background: white;
    color: black;
}

.secondary {
    border: 1px solid #333;
    color: white;
}

.social-button i {
    font-size: 18px;
}

.icon i {
    font-size: 20px;
}
    /* ABOUT */

    .about-section {
        padding-top: 100px;
        border-top: 1px solid #1f1f1f;
    }

    .about-header {
        margin-bottom: 60px;
    }

    .about-header h2 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .about-muted {
        color: #6f6f6f;
    }

    .about-intro {
        max-width: 760px;
        font-size: 18px;
        line-height: 1.8;
        color: #9a9a9a;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .skill-card {
        padding: 28px;
        border: 1px solid #2a2a2a;
        border-radius: 22px;
        background: #121212;
        transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .skill-card:hover {
        transform: translateY(-4px);
        border-color: #3b3b3b;
        background: #151515;
    }

    .skill-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1b1b1b;
        border: 1px solid #2a2a2a;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .skill-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #f0f0f0;
    }

    .skill-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #9a9a9a;
    }

    .tech-stack-block {
        margin-top: 10px;
    }

    .tech-stack-title {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #6f6f6f;
        margin-bottom: 16px;
    }

    .tech-stack-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tech-stack-list span {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 12px;
        background: #181818;
        border: 1px solid #2a2a2a;
        color: #d8d8d8;
        transition: border-color .2s ease, color .2s ease, transform .2s ease;
    }

    .tech-stack-list span:hover {
        border-color: #4a4a4a;
        color: #ffffff;
        transform: translateY(-1px);
    }
    /* PROJECTS */

    .projects-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .project-card {
        border: 1px solid #222;
        border-radius: 24px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        position: relative;
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .project-card:hover {
        transform: translateY(-6px);
        border-color: #444;
        box-shadow: 0 12px 30px rgba(0,0,0,.35);
    }

    .featured-card {
        border-color: #6b5cff;
        box-shadow: 0 0 0 1px rgba(107,92,255,.25);
    }

    .project-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        background: #6b5cff;
        color: white;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 12px;
        z-index: 1;
    }

    .project-image {
        position: relative;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        display: block;
        border-radius: 24px 24px 0 0;
        transition: transform .4s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.08);
    }

    .project-content {
        padding: 25px;
    }

    .role {
        font-size: 14px;
        color: #777;
        margin-bottom: 5px;
    }

    .tech span {
        background: #1a1a1a;
        padding: 4px 10px;
        margin-right: 5px;
        font-size: 12px;
        border-radius: 20px;
    }
    /* CONTACT */

    .contact-section {
        padding-top: 100px;
        border-top: 1px solid #1f1f1f;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header h2 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .contact-muted {
        color: #6f6f6f;
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-intro {
        max-width: 420px;
        font-size: 16px;
        line-height: 1.8;
        color: #9a9a9a;
    }

    .info-list {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        border: 1px solid #2d2d2d;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #151515;
        color: #bdbdbd;
        font-size: 16px;
        flex-shrink: 0;
    }

    .info-label {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: #6f6f6f;
        margin-bottom: 4px;
    }

    .info-value {
        font-size: 15px;
        color: #e8e8e8;
    }

    .modern-contact-form {
        gap: 24px;
    }

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

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group label {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: #6f6f6f;
    }

    .form-group input, .form-group textarea {
        background: #121212;
        border: 1px solid #2d2d2d;
        border-radius: 14px;
        padding: 14px 16px;
        color: #f2f2f2;
        transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .form-group input:focus, .form-group textarea:focus {
        outline: none;
        border-color: #4c4c4c;
        background: #161616;
        box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
    }

    .form-group textarea {
        resize: none;
        min-height: 160px;
    }

    .send-btn {
        width: 100%;
        max-width: 220px;
        margin-right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    @media(max-width:900px) {
        .contact-layout, .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 34px;
    }

    .send-btn {
        max-width: none;
        width: 100%;
    }
}


/* FOOTER */

footer {
    border-top: 1px solid #222;
    padding: 30px 0;
    margin-top: 40px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon {
    margin-left: 20px;
    text-decoration: none;
    color: #aaa;
}

    .icon:hover {
        color: white;
    }
.project-hero-banner{
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 140px 0 50px;
}

.project-hero-bg{
    position: absolute;
    inset: 0;
}

.project-hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95);
}

.project-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(11,11,11,.96) 0%, rgba(11,11,11,.76) 38%, rgba(11,11,11,.28) 100%),
        linear-gradient(to right, rgba(11,11,11,.55), transparent 55%);
}

.project-hero-content{
    position: relative;
    z-index: 1;
    width: 100%;
}

.project-top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.project-back-btn,
.project-mini-nav{
    border: 1px solid #2d2d2d;
    background: rgba(18,18,18,.72);
    color: #c9c9c9;
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s ease;
    backdrop-filter: blur(10px);
}

.project-back-btn:hover,
.project-mini-nav:hover{
    color: #fff;
    border-color: #4a4a4a;
    background: rgba(24,24,24,.88);
}

.project-page-links{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-status-row{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.project-status-badge{
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(124,134,255,.14);
    color: #aeb5ff;
    border: 1px solid rgba(124,134,255,.26);
}

.project-meta-chip{
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #b8b8b8;
    background: rgba(18,18,18,.72);
    border: 1px solid #2b2b2b;
}

.large-summary{
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
}

.project-tag-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
}

.project-tag-list span{
    padding: 9px 13px;
    border-radius: 12px;
    background: rgba(20,20,20,.78);
    border: 1px solid #2b2b2b;
    color: #d2d2d2;
    font-size: 13px;
}

.project-role-grid{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

.project-role-card,
.project-responsibility-card,
.project-writeup-card,
.video-embed-shell{
    padding: 28px;
    border: 1px solid #262626;
    border-radius: 22px;
    background: #121212;
}

.section-kicker{
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6f6f6f;
    margin-bottom: 12px;
}

.modern-responsibilities{
    padding-left: 0;
    margin-top: 0;
    list-style: none;
}

.modern-responsibilities li{
    position: relative;
    padding-left: 18px;
}

.modern-responsibilities li::before{
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7c86ff;
    position: absolute;
    left: 0;
    top: 10px;
}

.section-title-row{
    margin-bottom: 22px;
}

.contribution-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contribution-card{
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid #262626;
    border-radius: 20px;
    background: #121212;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contribution-card:hover{
    transform: translateY(-3px);
    border-color: #373737;
    background: #151515;
}

.contribution-number{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(124,134,255,.12);
    border: 1px solid rgba(124,134,255,.22);
    color: #aeb5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.project-writeup-card{
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.video-embed-shell{
    overflow: hidden;
}

.bottom-project-nav{
    padding-top: 8px;
    border-top: 1px solid #242424;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
    margin-top:20px;
}

.media-grid img{
    width:100%;
    display:block;
}

.zoomable-image{
    cursor:pointer;
    transition:transform .3s ease, box-shadow .3s ease;
}

.image-zoom-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(4px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3000;
    padding:30px;
}

.image-zoom-overlay img{
    max-width:min(1100px, 92vw);
    max-height:90vh;
    width:auto;
    height:auto;
    border-radius:20px;
    border:1px solid #2b2b2b;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    cursor:pointer;
    animation:imageZoomIn .22s ease;
}

.image-zoom-overlay{
    cursor:pointer;
}

.zoom-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    cursor:pointer;
}

.zoom-wrapper img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    border-radius:16px;
    border:1px solid #222;
    transition:transform .3s ease, filter .3s ease;
}

.zoom-wrapper::after{
    content:"Click to zoom";
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    letter-spacing:.03em;
    color:#fff;
    background:rgba(0,0,0,.42);
    opacity:0;
    transition:opacity .25s ease, background .25s ease;
    pointer-events:none;
}

.zoom-wrapper:hover::after{
    opacity:1;
}

.zoom-wrapper:hover img{
    transform:scale(1.05);
    filter:brightness(.9);
}

@keyframes imageZoomIn{
    from{
        transform:scale(.94);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* RESPONSIVE */

@media(max-width:900px) {

    .container {
        width: min(1100px, calc(100% - 48px));
        margin: 0 auto;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-inner {
        height: 68px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .hero-grid,
    .skills-grid,
    .projects-grid,
    .contact-grid,
    .contact-layout,
    .form-row,
    .details-grid,
    .media-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:20px;
}

    .zoom-wrapper img{
    height:220px;
}
    .hero h1 {
        font-size: 36px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .hero-role,
    .about-header h2,
    .contact-header h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-description,
    .about-intro,
    .contact-intro {
        font-size: 15px;
        line-height: 1.7;
        max-width: none;
    }

    .availability-pill {
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
    }

        .hero-buttons .btn {
            width: 100%;
            text-align: center;
            margin-right: 0;
        }

    .hero-socials {
        gap: 10px;
    }

    .social-button {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .hero-side {
        align-items: center;
        gap: 22px;
    }

    .hero-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image-card {
        width: 100%;
        max-width: 280px;
        height: 280px;
    }

    .hero-badge {
        left: 50%;
        bottom: -14px;
        transform: translateX(-50%);
        width: max-content;
        max-width: 90%;
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-stat {
        flex: 1;
        min-width: 0;
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    .about-header,
    .contact-header {
        margin-bottom: 32px;
    }

    .skill-card,
    .project-content,
    .download-panel {
        padding: 20px;
    }

    .project-card {
        border-radius: 20px;
    }

    .project-image img {
        border-radius: 20px 20px 0 0;
    }

    .project-badge {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 5px 8px;
    }

    .contact-section {
        padding-top: 70px;
    }

    .contact-layout {
        gap: 28px;
    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .send-btn {
        max-width: none;
        width: 100%;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .socials {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .icon {
        margin-left: 0;
    }
}