:root {
    --bg-dark: #0B0B12;
    --bg-indigo: #1A1A2E;
    --bg-soft: #2A2A40;
    --neon: #A855F7;
    --bg-dark-rgb: 11, 11, 18;
    --bg-indigo-rgb: 26, 26, 46;
    --bg-soft-rgb: 42, 42, 64;
    --neon-rgb: 168, 85, 247;
    --bg-gray-rgba: rgba(255,255,255,0.15);
    --bg-dgray-rgba: rgba(255,255,255,0.06);
}

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
}

.bg-grid {
    background-size: 50px 50px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

.header {
    position: sticky;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 60px;
    background: var(--bg-indigo);
    backdrop-filter: blur(12px);
    box-sizing: border-box;
    border-bottom: 1px solid var(--bg-indigo-rgb);
    z-index: 2000;
}

.header-left {
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo img {
    height: 45px;
    cursor: pointer;
}

.header-center {
    display: flex;
    justify-content: center;
    justify-self: center;
    transform: translateX(20px);
}

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

.nav a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 0;
    text-decoration: none;
    opacity: 0.8;
    color: whitesmoke;
}

.nav a:hover {
    color: white;
    opacity: 1;
}

.nav a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav a:hover::before {
    width: 100%;
}

.nav a.active {
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 24px;
}

.lang {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    gap: 8px;
    padding: 8px 16px;
    color: white;
    background: var(--bg-dgray-rgba);
    border: 1px solid var(--bg-gray-rgba);
    border-radius: 28px;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
    cursor: pointer;
}

.lang-btn:hover {
    background: var(--bg-gray-rgba);
}

.arrow {
    display: inline-block;
    font-size: 20px;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.lang-btn.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    font-family: "Inter", sans-serif;
    top: 120%;
    right: 0;
    width: 260px;
    padding: 10px;
    gap: 8px;
    background: var(--bg-dark);
    border: 1px solid var(--bg-gray-rgba);
    border-radius: 18px;
    opacity: 0;
    backdrop-filter: blur(14px);
    transform: translateY(10px);
    transition: 0.25s ease;
    pointer-events: none;
}

.lang-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}

.lang-item:hover {
    background: var(--bg-dgray-rgba);
}

.lang-item.active {
    background: var(--bg-gray-rgba);
}

.b-side {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: white;
    padding: 8px 18px;
    border-radius: 24px;
    background: var(--bg-dgray-rgba);
    transition: 0.25s ease;
}

.b-side:hover {
    background: white;
    color: black;
}

.b-side-btn {
    position: relative;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    overflow: hidden;
    color: white;
    background: var(--bg-dgray-rgba);
    border: 1px solid var(--bg-gray-rgba);
    backdrop-filter: blur(10px);
    transition:
    background 0.6s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease,
    color 0.45s ease;
}

.b-side-btn .label {
    position: relative;
    top: 3px;
    color: white;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: var(--bg-gray-rgba);
    opacity: 0;
    width: 20px;
    height: 20px;
    transform: scale(0);
    pointer-events: none;
}

.ripple.enter {
    animation: ripple-enter 1400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ripple.leave {
    animation: ripple-leave 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ripple-enter {
    from {
        transform: scale(0);
        opacity: 0.6;
    }
    to {
        transform: scale(4);
        opacity: 1;
}
}

@keyframes ripple-leave {
    from {
        transform: scale(4);
        opacity: 1;
}
    to {
        transform: scale(0);
        opacity: 0;
    }
}

.hamburger {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    background: none;
    border: none;
    z-index: 9999;
    cursor: pointer;
}

.hamburger span {
    display: block;
    transform: none;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 10px;
    transform-origin: center;
    transition: 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background-color 0.25s ease;
}

.hamburger:hover span {
    background-color: var(--neon);
}

.hamburger.active span {
    background-color: var(--neon);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) translateX(0);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) translateX(0);
}

.mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    padding: 120px 40px 40px 40px;
    gap: 32px;
    z-index: 1000;
    background: var(--bg-dgray-rgba);
    backdrop-filter: blur(18px);
    transition: right 0.45s cubic-bezier(.4,0,.2,1);
    box-sizing: border-box;
    pointer-events: none;
}

.mobile-menu.show {
    right: 0;
    pointer-events: auto;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 22px;
    color: white;
    opacity: 0;
    transform: translateX(30px);
}

.b-sidee {
    position: relative;
    display: block;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    padding: 5px 0px;
    margin-left: -20px;
    width: calc(100% + 40px);
    color: white;
    background: transparent;
    background: var(--bg-dgray-rgba);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.b-sidee::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -20px;
    right: -40px;
    height: 1px;
    background: var(--bg-dgray-rgba);
}

.b-sidee:hover {
    background: var(--bg-indigo);
    color: white;
    transform: none;
}

.mobile-menu a:hover {
    color: var(--neon);
}

.mobile-menu.show a {
    animation: slideIn 0.5s forwards;
}

.mobile-menu.show a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.show a:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.show a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.show a:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu.show a:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 800px) {
    .header-right > .b-side-btn {
        display: none;
    }

    .header-center {
        display: none;
        position: fixed;
        flex-direction: column;
        align-items: center;
        top: 90px;
        left: 0;
        width: 100%;
        gap: 26px;
        padding: 40px 0;
        background: var(--bg-dark);
        backdrop-filter: blur(14px);
        transform: translateY(-120%);
        transition: 0.35s ease;
    }

    .header-center.show {
        transform: translateY(0);
    }

    .nav {
        flex-direction: column;
    }

    .hamburger {
        display: flex;
        margin-left: 12px;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 90px);
    padding: 0 5%;
    padding-top: 50px;
    gap: 60px;
}

.hero-text {
    color: white;
    max-width: 700px;
    cursor: default;
    order: 1;
}

.hero h1 {
    font-family: monospace;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero h1 span {
    display: block;
}

.name {
    color: white;
}

.encrypt {
    letter-spacing: 3px;
}

.hero-desc {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
    margin-top: 24px;
    color: #a1a1aa;
}

.info-cards {
    display: flex;
    gap: 15px;
    margin-top: 33px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: 11px;
    min-width: 200px;
    background: var(--bg-dgray-rgba);
    border: 1px solid var(--bg-gray-rgba);
    backdrop-filter: blur(6px);
    transition: 0.25s ease;
}

.hover-glow {
    position: relative;
    overflow: hidden;
}

.hover-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(250px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    filter: blur(24px);
    pointer-events: none;
}

.hover-glow:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-3px);
}

.label {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #a1a1aa;
}

.card h2 {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
    padding: 0px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
    min-width: 200px;
}

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

.shine-btn {
    position: relative;
    display: inline-block;
    z-index: 1;
    overflow: visible;
    transition: 0.25s ease;
}

.shine-btn:hover {
    box-shadow:
        0 0 25px rgba(255,255,255,0.35); 
}

.shine-btn::after {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    border: 2px solid var(--bg-soft);
    border-radius: 14px;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.shine-btn:hover::after {
    box-shadow: 0 0 10px var(--bg-indigo);
    opacity: 1;
}

.btn-inner {
    position: relative;
    display: inline-block;
    align-items: center;
    font-family: "Inter", sans-serif;
    gap: 8px;
    padding: 12px 22px;
    color: black;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.btn.outline {
    color: white;
    background: var(--bg-dgray-rgba);
    border: 1px solid var(--bg-gray-rgba);
    backdrop-filter: blur(8px);
}

.btn-cv-hover {
    position: relative;
    padding: 6px 22px 6px 12px !important;
    gap: 12px !important;
    overflow: hidden;
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-cv {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-icon {
    position: absolute;
    font-size: 14px;
    line-height: 1;
    color: black;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cv-hover:hover {
    color: black !important;
    background: white !important;
}

.btn-cv-hover:hover .icon-wrapper {
    width: 19px;
    height: 19px;
}

.btn-cv-hover:hover .dot {
    width: 28px;
    height: 28px;
    background-color: white;
}

.btn-cv-hover:hover .arrow-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.text-cv {
    font-family: "Inter", sans-serif;
}

.hero-socmed-container {
    display: flex;
    gap: 27px;
    margin-top: 30px;
}

.hero-socmed-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hero-socmed-link:hover {
    background-color: var(--bg-dgray-rgba); 
}

.hero-socmed-link:hover .social-img {
    opacity: 1;
    transform: scale(1.1);
}

.hero-socmed-img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); 
}

.hero-image-container {
    margin-left: 0;
    order: 2;
    width: fit-content;
    margin: auto;
    display: flex;
    position: relative;
    justify-content: center;
}

.circle-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    height: 425px;
    overflow: hidden;
    border-radius: 50%;
}

.hero-profile-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 425px;
    height: 425px;
    padding: 20px;
    border: 1px solid var(--bg-dgray-rgba);
    border-radius: 50%;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.follow-name {
    position: absolute;
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    padding: 8px 14px;
    color: white;
    background: rgba(35, 35, 50, 0.85);
    border: 1px solid var(--bg-gray-rgba);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.45), 0 0 20px rgba(168,85,247,.15);
    opacity: 0;
    transform: scale(.85);
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
    pointer-events: none;
}

.follow-name.show {
    opacity: 1;
    transform: scale(1);
}

.hero-mini-avatar {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 50%;
}

.hero-status-badge {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    padding: 6px 15px;
    background: #000;
    border: 1px solid var(--bg-dgray-rgba);
    border-radius: 50px;
    white-space: nowrap;
}

.hero-status-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    cursor: default;
}

.hero-status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
}

.hero-status-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-status-badge {
    animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
    from {
        box-shadow: 0 0 5px rgba(34, 197, 94, 0.2);
        border-color: rgba(34, 197, 94, 0.4);
    }
    to {
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
        border-color: rgba(34, 197, 94, 0.8);
    }
}

.about {
    color: white;
    padding: 120px;
}

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

.about-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon);
    cursor: default;
}

.about-title {
    font-family: monospace;
    font-size: 43px;
    font-weight: 800;
    margin-top: 14px;
    line-height: 1.1;
    cursor: default;
}

.about-desc {
    text-align: justify;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #a1a1aa;
    margin-top: 20px;
    max-width: 100%;
    line-height: 1.8;
    cursor: default;
}

.about-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
    padding: 40px 60px;
    background: var(--bg-dgray-rgba);
    border: 1px solid var(--bg-gray-rgba);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 0 30px rgba(var(--neon-rgb), 0.15);
    transform: translateY(-4px);
}

.about-mini-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #a1a1aa;
    cursor: default;
}

.about-left {
    flex: 0 1 auto;
}

.about-left h3 {
    font-family: monospace;
    font-size: 34px;
    margin-top: 8px;
    cursor: default;
}

.about-left p {
    text-align: justify;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #a1a1aa;
    margin-top: 10px;
    max-width: 520px;
    line-height: 1.7;
    cursor: default;
}

.about-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.about-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.about-meta {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #a1a1aa;
}

.about-meta strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
    cursor: default;
}

.about-meta span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    cursor: default;
}

@media (max-width: 1024px) {
    .hero {
        gap: 40px;
        align-items: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .circle-wrapper,
    .hero-profile-circle {
        width: 340px;
        height: 340px;
    }

    .about {
        padding: 100px 60px;
    }

    .about-card {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-image-container {
        margin-left: 0;
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .circle-wrapper,
    .hero-profile-circle {
        width: 260px;
        height: 260px;
    }

    .hero-status-badge {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about {
        padding: 80px 24px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 25px;
    }

    .about-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .circle-wrapper,
    .hero-profile-circle {
        width: 220px;
        height: 220px;
    }

    .about-title {
        font-size: 26px;
    }
}

.tech-stack {
    padding: 120px 0;
}

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

.eyebrow {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--neon);
    text-transform: uppercase;
    margin-bottom: 20px;
    cursor: default;
}

.stack-title {
    font-family: monospace;
    font-size: 45px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    cursor: default;
}

.stack-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    text-align: justify;
    color: #a1a1aa;
    max-width: 100%;
    line-height: 1.7;
    cursor: default;
}

.marquee-block {
    margin-top: 80px;
}

.marquee-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #a1a1aa;
    margin-bottom: 18px;
    text-transform: uppercase;
    cursor: default;
}

.marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
    flex-shrink: 0;
}

.stack-item img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: .25s;
}

.stack-item span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.5px;
    cursor: default;
}

.stack-item:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

.stack-item:hover span {
    color: #fff;
}

.marquee img {
    height: 42px;
    flex-shrink: 0;
    opacity: .75;
}

@media (max-width: 1024px) {
    .tech-stack {
        padding: 100px 20px;
    }

    .stack-title {
        font-size: 36px;
    }

    .marquee-track {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tech-stack {
        padding: 80px 20px;
    }

    .stack-title {
        font-size: 30px;
    }

    .stack-desc {
        font-size: 14px;
    }

    .marquee-block {
        margin-top: 50px;
    }

    .marquee-track {
        gap: 30px;
    }

    .stack-item {
        min-width: 70px;
    }

    .stack-item img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .stack-title {
        font-size: 24px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .stack-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .marquee-track {
        gap: 24px;
    }

    .stack-item img {
        height: 28px;
    }

    .stack-item span {
        font-size: 11px;
    }
}

.certifications-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.cert-title {
    color: var(--neon);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 8px;
    cursor: default;
}

.cert-subtitle {
    font-family: monospace;
    font-size: 45px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    cursor: default;
}

.cert-description {
    font-family: "Inter", sans-serif;
    color: #aaa;
    max-width: 100%;
    margin-bottom: 40px;
    cursor: default;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cert-card {
    background-color: #0f0f0f;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.cert-data {
    display: none !important;
}

#detailTitle {
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    cursor: default;
}

#detailIssuer {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: default;
}

.cert-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #262626;
    overflow: hidden;
}

.cert-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-content {
    padding: 20px;
}

.cert-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: "Space Grotesk", sans-serif;
    color: white;
    cursor: default;
}

.cert-content p {
    color: white;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    cursor: default;
}

.cert-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.cert-modal.active {
    display: flex;
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
}

.cert-detail {
    position: relative;
    background: #121212;
    width: 95%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 28px;
    animation: pop .25s ease;
}

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

.cert-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.cert-detail-img {
    width: 98%;
    max-height: 455px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.cert-detail-issuer {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cert-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.cert-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1b1b1b;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    font-size: 0.9rem;
}

.cert-info-box.full {
    grid-column: 1 / -1;
}

.info-cert {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    flex-shrink: 0;
}

.cert-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 10px;
    flex-shrink: 0;
}

.cert-info-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.85;
}

.cert-info-text b {
    font-size: 13px;
    font-family: "Inter", sans-serif;
    color: white;
    cursor: default;
}

.cert-info-box span {
    display: block;
    color: #a1a1aa;
    font-size: 15px;
    margin-bottom: 4px;
    font-family: monospace;
    cursor: default;
}

.cert-detail-desc h3 {
    margin-bottom: 8px;
    color: white;
    font-family: monospace;
    font-size: 18px;
    cursor: default;
}

.cert-detail-desc p {
    color: #a1a1aa;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: default;
    padding-bottom: 15px;
}

.cert-link {
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
}

.cert-link:hover {
    background: #242424;
    border-color: var(--neon);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cert-subtitle {
        font-size: 36px;
    }

    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .cert-detail {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 80px 24px;
    }

    .cert-subtitle {
        font-size: 30px;
    }

    .cert-description {
        font-size: 14px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cert-content h3 {
        font-size: 18px;
    }

    .cert-detail {
        width: 92%;
        padding: 22px;
        border-radius: 16px;
    }

    .cert-detail-img {
        max-height: 300px;
    }

    .cert-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cert-subtitle {
        font-size: 26px;
    }

    .cert-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .cert-content {
        padding: 16px;
    }

    .cert-content h3 {
        font-size: 17px;
    }

    .cert-detail {
        padding: 18px;
    }
}

.projects-section {
    padding: 120px 0px;
}

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

.projects-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--neon);
    cursor: default;
}

.projects-title {
    font-family: monospace;
    font-size: 45px;
    font-weight: 800;
    margin-top: 14px;
    line-height: 1.1;
    color: white;
    cursor: default;
}

.projects-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #a1a1aa;
    margin-top: 16px;
    margin-bottom: 25px;
    max-width: 100%;
    line-height: 1.7;
    cursor: default;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "info preview"
        "actions preview";
    gap: 20 60px;
    margin-top: 20px;
    padding: 50px;
    background: #0c0c0f;
    border: 1px solid #1f1f23;
    border-radius: 22px;
    align-items: center;
}

.project-card:nth-child(even) {
    grid-template-areas: 
        "preview info"
        "preview actions";
}

.project-card:nth-child(even) .project-info {
    order: 2;
    align-items: flex-end;
    text-align: right;
}

.project-card:nth-child(even) .project-preview {
    order: 1;
}

.project-card:nth-child(even) .project-actions {
    justify-content: flex-end;
}

.project-card:nth-child(even) .project-desc {
    margin-left: auto;
    margin-right: 0;
}

.project-info {
    display: flex;
    flex-direction: column;
}

.project-name {
    font-family: monospace;
    font-size: 42px;
    font-weight: 800;
    color: white;
    cursor: default;
}

.project-info {
    grid-area: info;
}

.project-preview {
    grid-area: preview;
}

.project-actions {
    grid-area: actions;
}

.project-desc {
    font-family: "Inter", sans-serif;
    color: #a1a1aa;
    margin: 18px 0 26px;
    line-height: 1.7;
    max-width: 420px;
    text-align: justify;
    cursor: default;
    text-align: left;
}

.project-card:nth-child(even) .project-desc {
    text-align: right;
}

.project-tools {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.project-tools img {
    width: 26px;
    height: 26px;
    opacity: 0.85;
    transition: 0.25s;
    filter: grayscale(100%);
}

.project-tools img:hover {
    opacity: 1;
    transform: translateY(-3px);
    filter: grayscale(0%);
}

.tools-more {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #1a1a1f;
    border: 1px solid #2a2a2f;
    color: #aaa;
    font-family: "Inter", sans-serif;
}

.project-actions {
    display: flex;
    gap: 14px;
}

.project-btn {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    color: black;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.25s;
}

.project-btn:hover {
    transform: translateY(-2px);
}

.project-preview {
    background: #111;
    border-radius: 18px;
    padding: 7px;
    border: 1px solid #a1a1aa;
    overflow: hidden;
    position: relative;
}

.project-preview a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.overlay-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(20px); 
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.view-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-preview:hover img {
    transform: scale(1.1);
}

.project-preview:hover .preview-overlay {
    opacity: 1;
}

.project-preview:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content svg {
    stroke: white;
    width: 28px;
    height: 28px;
}

.projects-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.projects-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.projects-btn:hover {
    background-color: #333333;
    color: white;
    border: 2px solid #cccccc;
}

@media (max-width: 1024px) {
    .projects-container {
        padding: 0 5%;
    }

    .project-card {
        gap: 40px;
        padding: 40px;
    }

    .project-desc {
        max-width: 90% !important;
        margin-bottom: 25px;
        text-align: left;
    }

    .projects-label, 
    .projects-title, 
    .projects-subtitle {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .project-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 40px 20px !important;
        gap: 32px !important;
        text-align: center !important;
    }
    .project-info { order: 1; }
    .project-preview { order: 2; }
    .project-actions { order: 3; }

    .project-card:nth-child(even) .project-info,
    .project-card:nth-child(even) .project-preview {
        order: unset !important; 
    }

    .project-card:nth-child(even) .project-preview {
        order: 2;
    }

    .project-info {
        order: 1 !important;
        align-items: center !important; 
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .project-preview {
        order: 2 !important; 
        width: 100% !important;
        height: auto !important; 
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    .project-desc, 
    .project-tools {
        display: none !important;
    }

    .project-name {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .project-actions {
        order: 3 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .project-btn {
        font-size: 14px;
        padding: 10px 15px;
        white-space: nowrap !important;
    }
}

.experience-section {
    padding: 120px 0px;
}

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

.experience-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--neon);
}

.experience-title {
    font-family: monospace;
    font-size: 45px;
    font-weight: 800;
    margin-top: 14px;
    line-height: 1.1;
    color: white;
}

.experience-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #a1a1aa;
    margin-top: 16px;
    margin-bottom: 25px;
    max-width: 100%;
    line-height: 1.7;
}

.experience-item {
    display: flex;
    gap: 24px;
    position: relative;
    align-items: stretch;
}

.exp-timeline-linker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.company-icon-box {
    width: 48px;
    height: 48px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.company-icon-box img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.exp-timeline-line {
    width: 2px;
    flex-grow: 1;
    background: #30363d;
    margin-top: -5px;
    z-index: 1;
}

.experience-content {
    padding-bottom: 50px;
    padding-top: 4px;
    flex: 1;
    position: relative;
}

.company-location {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    color: #8b949e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-location strong {
    color: #ffffff;
    font-size: 16px;
}

.company-location .location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    opacity: 0.9;
}

.job-main-header {
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.job-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-status-dot {
    width: 8px;
    height: 8px;
    background: #238636;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 4px #238636;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 8px #3fb950, 0 0 24px #3fb950;
        transform: scale(1.2);
    }
    100% {
        box-shadow: 0 0 4px #238636;
        transform: scale(1);
    }
}

.job-title-wrapper h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.job-date-badge {
    background: rgba(35, 134, 54, 0.15);
    color: #3fb950;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(63, 185, 80, 0.3);
}

.job-type {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #8b949e;
    margin-bottom: 15px;
}

.job-description {
    font-family: "Inter", sans-serif;
    color: #8b949e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.list-jobdesc {
    margin-left: 14px;
    max-width: 860px;
}

.list-jobdesc li {
    margin-bottom: 2px;
    text-align: justify;
}

.job-tech-tags {
    font-family: monospace;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tech-tags span {
    background: #161b22;
    border: 1px solid #30363d;
    color: #c9d1d9;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
}

.job-status-inactive {
    width: 8px;
    height: 8px;
    background: rgb(83, 83, 83);
    border-radius: 50%;
}

.experience-item.inactive .job-date-badge {
    background: var(--bg-gray-rgba);
    color: white;
    border: 1px solid var(--bg-dgray-rgba);
}

.footer {
    color: #d1d5db;
    padding: 50px 0 0;
    border-top: 1px solid #15151c;

    background: linear-gradient(
        to bottom,
        #0B0B12 0%,
        #151521  55%,
        #23283a  100%
    );
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    cursor: default;
    font-family: "Space Grotesk", sans-serif;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 8px;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
    font-family: "Inter", sans-serif;
}

.footer a:hover {
    color: white;
}

.ft-logo {
    height: 40px;
}

.socials {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.socials a {
    display: inline-flex;
    opacity: 0.7;
    transition: 0.25s;
}

.socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(1.3);
}

.socials img {
    width: 22px;
    height: 22px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #18181b;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #3f3f46;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0; /* Sembunyi awal */
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #27272a;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 13px;
    opacity: 0.6;
    cursor: default;
    font-family: monospace;

}