* {
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-30 16 16)'%3E%3Crect x='13' y='4' width='6' height='14' rx='2' fill='%238B5CF6'/%3E%3Crect x='12' y='16' width='8' height='5' rx='1' fill='%237C3AED'/%3E%3Cellipse cx='16' cy='23' rx='4' ry='6' fill='%238B5CF6' opacity='0.85'/%3E%3C/g%3E%3C/svg%3E") 4 28, auto;
}

*::selection {
    background-color: #8B5CF6;
    color: #fff;
    text-shadow: none;
    filter: invert(0);
}

*::-moz-selection {
    background-color: #8B5CF6;
    color: #fff;
    text-shadow: none;
}

button,
a,
[onclick] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-30 16 16)'%3E%3Crect x='13' y='4' width='6' height='14' rx='2' fill='%238B5CF6'/%3E%3Crect x='12' y='16' width='8' height='5' rx='1' fill='%237C3AED'/%3E%3Cellipse cx='16' cy='23' rx='4' ry='6' fill='%238B5CF6' opacity='0.85'/%3E%3Cellipse cx='16' cy='27' rx='3' ry='2' fill='%23C4B5FD' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E") 4 28, pointer;
}

@keyframes paint-splash {
    0% {
        transform: scale(0) rotate(-15deg);
        opacity: 1;
    }

    60% {
        transform: scale(1.4) rotate(10deg);
        opacity: 0.7;
    }

    100% {
        transform: scale(2) rotate(20deg);
        opacity: 0;
    }
}

.paint-splash {
    position: fixed;
    pointer-events: none;
    width: 40px;
    height: 40px;
    border-radius: 50% 60% 40% 70%;
    z-index: 9999;
    animation: paint-splash 0.5s ease-out forwards;
    mix-blend-mode: screen;
}

@keyframes trail-fade {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.mouse-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    animation: trail-fade 0.6s ease-out forwards;
    mix-blend-mode: screen;
}

#cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #8B5CF688, #EC4899aa);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
    filter: blur(2px);
}

body {
    font-family: 'Poppins', sans-serif;
    caret-color: #3449d3;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@100;200;300;400;600&display=swap');

nav#main-nav * {
    box-sizing: border-box;
}

nav#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

nav#main-nav .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1001;
}

nav#main-nav .nav-bar-bg {
    position: absolute;
    inset: 0;
    background: rgba(7, 5, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: -1;
    transition: background 0.3s;
}

/* nav#main-nav .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 60%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    z-index: 1002;
} */

nav#main-nav .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

nav#main-nav .nav-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav#main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav#main-nav .nav-links a {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

nav#main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    transform: scaleX(0);
    transition: transform 0.3s;
}

nav#main-nav .nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

nav#main-nav .nav-links a:hover::after {
    transform: scaleX(1);
}

nav#main-nav .nav-hamburger {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

nav#main-nav .nav-hamburger:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

nav#main-nav .nav-hamburger svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    transition: opacity 0.3s, transform 0.3s;
}

nav#main-nav .nav-hamburger .icon-burger {
    opacity: 1;
    transform: rotate(0deg);
}

nav#main-nav .nav-hamburger .icon-close {
    opacity: 0;
    transform: rotate(90deg);
}

nav#main-nav.menu-open .nav-hamburger .icon-burger {
    opacity: 0;
    transform: rotate(-90deg);
}

nav#main-nav.menu-open .nav-hamburger .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

@media(max-width: 768px) {
    nav#main-nav .nav-logo img {
        height: 28px;
    }

    nav#main-nav .nav-links {
        display: none;
    }

    nav#main-nav .nav-hamburger {
        display: flex;
    }
}

#mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

#mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

#mobile-overlay .mob-blur-bg {
    position: absolute;
    inset: 0;
    background: rgba(4, 2, 10, 0.88);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

#mobile-overlay .mob-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#mobile-overlay .mob-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#mobile-overlay .mob-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 88px 32px 0;
}

#mobile-overlay .mob-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

#mobile-overlay .mob-nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s;
}

#mobile-overlay.open .mob-nav-item:nth-child(1) {
    transition-delay: 0.07s;
    transform: translateX(0);
    opacity: 1;
}

#mobile-overlay.open .mob-nav-item:nth-child(2) {
    transition-delay: 0.13s;
    transform: translateX(0);
    opacity: 1;
}

#mobile-overlay.open .mob-nav-item:nth-child(3) {
    transition-delay: 0.19s;
    transform: translateX(0);
    opacity: 1;
}

#mobile-overlay.open .mob-nav-item:nth-child(4) {
    transition-delay: 0.25s;
    transform: translateX(0);
    opacity: 1;
}

#mobile-overlay.open .mob-nav-item:nth-child(5) {
    transition-delay: 0.31s;
    transform: translateX(0);
    opacity: 1;
}

#mobile-overlay .mob-nav-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(139, 92, 246, 0.4);
    width: 28px;
    flex-shrink: 0;
}

#mobile-overlay .mob-nav-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.01em;
    line-height: 1;
    transition: color 0.3s;
}

#mobile-overlay .mob-nav-item:hover .mob-nav-label {
    color: #fff;
}

#mobile-overlay .mob-nav-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
    color: rgba(168, 85, 247, 0.7);
}

#mobile-overlay .mob-nav-item:hover .mob-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

#mobile-overlay .mob-nav-arrow svg {
    width: 20px;
    height: 20px;
}

#mobile-overlay .mob-sponsor {
    padding: 24px 0 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
}

#mobile-overlay.open .mob-sponsor {
    transform: translateY(0);
    opacity: 1;
}

#mobile-overlay .mob-sponsor-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    margin-bottom: 14px;
}

#mobile-overlay .mob-sponsor-label {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

#mobile-overlay .mob-sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s;
}

#mobile-overlay .mob-sponsor-link:hover {
    opacity: 0.75;
}

#mobile-overlay .mob-sponsor-link svg {
    width: 14px;
    height: 14px;
    color: rgba(168, 85, 247, 0.7);
    flex-shrink: 0;
    -webkit-text-fill-color: initial;
}

#mobile-overlay .mob-sponsor-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.15);
}

/* */
#home * {
    box-sizing: border-box;
}

#home .parallax-bg {
    position: absolute;
    inset: 0;
    will-change: transform;
}

#home .mesh-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(120, 80, 200, 0.18) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 80% 90%, rgba(168, 85, 247, 0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 60% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

#home .noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#home .grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

#home .accent-line-v {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 92, 246, 0.15) 30%, rgba(168, 85, 247, 0.3) 50%, rgba(139, 92, 246, 0.15) 70%, transparent 100%);
    pointer-events: none;
}

#home .floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

#home .scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
    animation: scanMove 6s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

#home .content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
}

#home .text-side {
    order: 1;
}

#home .photo-side {
    order: 2;
}

#home .text-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#home .welcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.9);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 2px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

#home .welcome-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8B5CF6, #EC4899);
}

#home .name-block {
    margin-bottom: 16px;
}

#home .name-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    display: block;
}

#home .name-main {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e2d9f3 40%, #c4b5fd 70%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

#home .divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, transparent);
    margin: 20px 0;
}

#home .role-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(13px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#home .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 30px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 28px;
}

#home .cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

#home .btn-primary {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7C3AED, #9333EA, #C026D3);
    color: #fff;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
}

#home .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

#home .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.4);
}

#home .btn-primary:hover::after {
    opacity: 1;
}

#home .btn-secondary {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 32px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s;
}

#home .btn-secondary:hover {
    border-color: rgba(168, 85, 247, 0.6);
    color: #fff;
    transform: translateY(-2px);
    background: rgba(168, 85, 247, 0.05);
}

#home .photo-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#home .photo-frame-outer {
    position: relative;
    width: clamp(280px, 35vw, 420px);
    aspect-ratio: 3/4;
}

#home .photo-bg-deco {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(192, 38, 211, 0.1));
    border-radius: 4px;
    transform: rotate(3deg);
    transition: transform 0.6s;
}

#home .photo-frame-outer:hover .photo-bg-deco {
    transform: rotate(5deg);
}

#home .photo-bg-deco2 {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 3px;
    transform: rotate(-1.5deg);
    transition: transform 0.6s;
}

#home .photo-frame-outer:hover .photo-bg-deco2 {
    transform: rotate(-3deg);
}

#home .photo-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#home .photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.6s;
}

#home .photo-main:hover img {
    filter: grayscale(0%) contrast(1.1);
}

#home .photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.7) 0%, rgba(10, 10, 20, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

#home .photo-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(168, 85, 247, 0.6);
    border-style: solid;
}

#home .photo-corner.tl {
    top: 12px;
    left: 12px;
    border-width: 1px 0 0 1px;
}

#home .photo-corner.tr {
    top: 12px;
    right: 12px;
    border-width: 1px 1px 0 0;
}

#home .photo-corner.bl {
    bottom: 12px;
    left: 12px;
    border-width: 0 0 1px 1px;
}

#home .photo-corner.br {
    bottom: 12px;
    right: 12px;
    border-width: 0 1px 1px 0;
}

#home .photo-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

#home .photo-label-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

#home .photo-frame-outer {
    position: relative;
    overflow: visible;
}

#home .photo-main {
    position: relative;
    overflow: hidden;
}

#home .badge-avail {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    z-index: 10;
    background: rgba(7, 5, 15, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 4px;
    padding: 8px 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    white-space: nowrap;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.12);
}

#home .badge-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

#home .badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    vertical-align: middle;
}

#home .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

#home .scroll-hint-text {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#home .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

#home .side-text {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    z-index: 5;
}

@media(max-width:900px) {

    #home .content-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 100px 20px 100px;
        min-height: 100vh;
        align-content: center;
        text-align: center;
    }

    #home .text-side {
        order: 1;
        display: contents;
    }

    #home .photo-side {
        order: 3;
    }

    #home .text-side {
        display: flex;
        flex-direction: column;
        order: 1;
    }

    #home .welcome-tag {
        margin: 0 auto 20px;
    }

    #home .name-block {
        margin-bottom: 12px;
    }

    #home .name-greeting {
        font-size: clamp(15px, 4vw, 22px);
    }

    #home .name-main {
        font-size: clamp(52px, 14vw, 80px);
    }

    #home .divider-line,
    #home .role-text,
    #home .tagline,
    #home .cta-row {
        display: none;
    }

    #home .photo-side {
        order: 2;
        margin: 32px auto;
    }

    #home .photo-frame-outer {
        width: clamp(200px, 62vw, 300px);
    }

    #home .badge-avail {
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        right: auto;
    }

    #home .after-photo-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        order: 3;
        text-align: center;
    }

    #home .side-text {
        display: none;
    }

    #home .after-photo-block .divider-line {
        display: block;
        margin: 0 auto 16px;
    }

    #home .after-photo-block .role-text {
        display: block;
        margin-bottom: 8px;
        font-size: 11px;
    }

    #home .after-photo-block .tagline {
        display: block;
        font-size: clamp(18px, 5vw, 26px);
        margin-bottom: 24px;
    }

    #home .after-photo-block .cta-row {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    #home .after-photo-block .btn-primary,
    #home .after-photo-block .btn-secondary {
        padding: 12px 24px;
        font-size: 11px;
    }
}

@media(max-width:480px) {
    #home .photo-frame-outer {
        width: clamp(180px, 70vw, 260px);
    }

    #home .content-wrap {
        padding: 90px 16px 140px;
    }
}

#home .after-photo-block {
    display: none;
}

@media(max-width:900px) {
    #home .after-photo-block {
        display: flex;
    }
}

/* */
#icon-burger,
#icon-close {
    will-change: opacity, transform;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-twinkle {
    animation: twinkle 3s ease-in-out infinite;
}

@media (max-width: 640px) {
    .w-18 {
        width: 4.5rem;
    }

    .h-18 {
        height: 4.5rem;
    }

    .w-22 {
        width: 5.5rem;
    }

    .h-22 {
        height: 5.5rem;
    }

    section {
        padding-top: 5rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    section {
        padding-top: 6rem;
    }
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .flex-1 {
        min-width: 0;
        text-align: center;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    }
}

.backdrop-blur-frosted {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-ornament {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

#about {
    background: linear-gradient(135deg, #0f0f2e 0%, #1a1a4e 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.glass-ornament {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-ornament {
    position: absolute;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(79, 70, 229, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-ornament:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-ornament:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-ornament:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-ornament:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
}

.floating-ornament:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 15%;
    animation-delay: 3s;
}

.floating-ornament:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 20%;
    animation-delay: 5s;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.8;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* */
#about * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#about .about-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#about .about-glow-l {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#about .about-glow-r {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

#about .about-h-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#about .about-h-line-b {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#about .about-v-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.06), transparent);
    pointer-events: none;
}

#about .about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

@media(max-width:900px) {
    #about .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    #about .about-img-side {
        order: 1;
    }

    #about .about-text-side {
        order: 2;
    }

    #about .section-tag {
        margin: 0 auto 20px;
    }

    #about .about-divider {
        margin: 16px auto;
    }

    #about .about-skills-grid {
        justify-content: center;
    }

    #about .about-social {
        justify-content: center;
    }

    #about .about-exp-row {
        justify-content: center;
    }
}

#about .about-img-side {
    position: relative;
    display: flex;
    justify-content: center;
}

#about .img-outer {
    position: relative;
    width: clamp(260px, 32vw, 380px);
}

#about .img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

#about .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) contrast(1.05) brightness(0.95);
    transition: filter 0.8s, transform 0.8s;
}

#about .img-frame:hover img {
    filter: grayscale(0%) contrast(1.1) brightness(1);
    transform: scale(1.03);
}

#about .img-overlay-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 5, 15, 0.75) 0%, rgba(7, 5, 15, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

#about .img-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(168, 85, 247, 0.5);
    border-style: solid;
}

#about .img-corner.tl {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

#about .img-corner.tr {
    top: 10px;
    right: 10px;
    border-width: 1px 1px 0 0;
}

#about .img-corner.bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 1px 1px;
}

#about .img-corner.br {
    bottom: 10px;
    right: 10px;
    border-width: 0 1px 1px 0;
}

#about .img-side-tag {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

#about .img-side-tag-inner {
    background: rgba(7, 5, 15, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

#about .img-tag-dot {
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 50%;
}

#about .img-tag-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

#about .badge-sub {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.7);
    margin-top: 2px;
}

#about .about-text-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#about .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: fit-content;
}

#about .section-tag-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

#about .section-tag-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
}

#about .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

#about .about-title span.white {
    color: #ffffff;
}

#about .about-title span.grad {
    background: linear-gradient(135deg, #a78bfa, #ec4899, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#about .about-title em {
    font-style: italic;
    font-weight: 300;
}

#about .about-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, transparent);
    margin: 16px 0 20px;
}

#about .about-typing {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.55);
    min-height: 32px;
    margin-bottom: 16px;
}

#about .cursor-blink {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: rgba(168, 85, 247, 0.8);
    vertical-align: middle;
    margin-left: 2px;
    animation: blinkC 1s step-end infinite;
}

@keyframes blinkC {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#about .about-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    max-width: 440px;
}

#about .about-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

#about .skill-chip {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: default;
}

#about .skill-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(192, 38, 211, 0.08));
    opacity: 0;
    transition: opacity 0.3s;
}

#about .skill-chip:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: rgba(255, 255, 255, 0.7);
}

#about .skill-chip:hover::before {
    opacity: 1;
}

#about .about-divider-sm {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 0.04));
    margin-bottom: 28px;
}

#about .about-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#about .soc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

#about .soc-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(192, 38, 211, 0.06));
    opacity: 0;
    transition: opacity 0.35s;
}

#about .soc-link:hover {
    border-color: rgba(139, 92, 246, 0.45);
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

#about .soc-link:hover::before {
    opacity: 1;
}

#about .soc-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

#about .about-exp-row {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

#about .exp-item {}

#about .exp-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#about .exp-label {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

#about .exp-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
    align-self: stretch;
}

/* */
#clients,
#contact {
    box-sizing: border-box;
}

#clients *,
#contact * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    width: fit-content;
}

.sec-tag-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

.sec-tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
}

.sec-title em {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, transparent);
    margin: 16px 0 0;
}

#clients {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #06040e 50%, #000000 100%);
    font-family: 'Outfit', sans-serif;
}

#clients .cl-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#clients .cl-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#clients .cl-h-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#clients .cl-h-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#clients .cl-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#clients .cl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

#clients .cl-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    align-self: flex-end;
}

#clients .cl-counter span {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-right: 6px;
}

/* ── MARQUEE ── */
#clients .cl-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 0 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#clients .cl-marquee-fade-l,
#clients .cl-marquee-fade-r {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

#clients .cl-marquee-fade-l {
    left: 0;
    background: linear-gradient(to right, #06040e, transparent);
}

#clients .cl-marquee-fade-r {
    right: 0;
    background: linear-gradient(to left, #06040e, transparent);
}

#clients .cl-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clMarquee 30s linear infinite;
}

#clients .cl-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes clMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#clients .cl-marquee-sep {
    font-size: 10px;
    color: rgba(139, 92, 246, 0.2);
    flex-shrink: 0;
    padding: 0 4px;
    user-select: none;
}

/* ── CARD (dipakai di dalam marquee) ── */
#clients .cl-card {
    background: rgba(7, 5, 15, 0.95);
    padding: 32px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s;
    flex-shrink: 0;
    border: none;
}

#clients .cl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(192, 38, 211, 0.04));
    opacity: 0;
    transition: opacity 0.4s;
}

#clients .cl-card:hover {
    background: rgba(20, 10, 35, 0.98);
}

#clients .cl-card:hover::before {
    opacity: 1;
}

#clients .cl-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(168, 85, 247, 0.3);
}

#clients .cl-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    letter-spacing: 0.02em;
    transition: color 0.4s;
    line-height: 1.2;
    white-space: nowrap;
}

#clients .cl-card:hover .cl-card-name {
    color: #fff;
}

#clients .cl-card-type {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.4s;
    white-space: nowrap;
}

#clients .cl-card:hover .cl-card-type {
    color: rgba(168, 85, 247, 0.6);
}

#clients .cl-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

#clients .cl-card:hover .cl-card-bar {
    transform: scaleX(1);
}

/* ── BOTTOM ── */
#clients .cl-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#clients .cl-avatars {
    display: flex;
    align-items: center;
    gap: 16px;
}

#clients .avatar-stack {
    display: flex;
}

#clients .avatar-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(7, 5, 15, 0.8);
    margin-left: -8px;
}

#clients .avatar-item:first-child {
    margin-left: 0;
}

#clients .av1 {
    background: linear-gradient(135deg, #7C3AED, #9333EA);
}

#clients .av2 {
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
}

#clients .av3 {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
}

#clients .av4 {
    background: linear-gradient(135deg, #F59E0B, #F97316);
}

#clients .cl-happy {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#clients .cl-happy strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

#clients .cl-cta-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.25);
}

/* */
#contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #08050f 40%, #060410 80%, #000000 100%);
    font-family: 'Outfit', sans-serif;
}

#contact .ct-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#contact .ct-glow-l {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#contact .ct-glow-r {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

#contact .ct-h-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#contact .ct-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#contact .ct-header {
    text-align: center;
    margin-bottom: 72px;
}

#contact .ct-header .sec-tag {
    margin: 0 auto 16px;
}

#contact .ct-header .h-rule {
    margin: 16px auto 0;
}

#contact .ct-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.35);
    margin-top: 14px;
}

#contact .ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 2px;
}

#contact .ct-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
}

@media(max-width: 800px) {
    #contact .ct-grid {
        grid-template-columns: 1fr;
    }

    #contact .ct-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    #contact .ct-grid-bottom {
        grid-template-columns: 1fr;
    }
}

#contact .ct-panel {
    background: rgba(7, 5, 15, 0.97);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

#contact .ct-panel-sm {
    background: rgba(7, 5, 15, 0.97);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

#contact .ct-panel-sm:hover {
    background: rgba(20, 10, 35, 0.98);
}

#contact .ct-panel-sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

#contact .ct-panel-sm:hover::after {
    transform: scaleX(1);
}

#contact .ct-panel-label {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact .ct-panel-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(168, 85, 247, 0.4);
}

#contact .ct-map {
    width: 100%;
    aspect-ratio: 4/3;
    border: none;
    opacity: 0.8;
    border-radius: 2px;
    filter: grayscale(30%) brightness(0.85);
    transition: opacity 0.3s, filter 0.3s;
}

#contact .ct-map:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

#contact .ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

#contact .ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

#contact .ct-info-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#contact .ct-info-icon svg {
    width: 13px;
    height: 13px;
    color: rgba(168, 85, 247, 0.7);
}

#contact .ct-info-text {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

#contact .ct-info-text a {
    color: rgba(168, 85, 247, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

#contact .ct-info-text a:hover {
    color: #c4b5fd;
}

#contact .ct-info-label {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 3px;
}

#contact .ct-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

#contact .ct-desc em {
    font-style: italic;
    color: rgba(168, 85, 247, 0.8);
}

#contact .ct-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#contact .ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

#contact .ct-btn-primary {
    background: linear-gradient(135deg, #7C3AED, #9333EA, #C026D3);
    color: #fff;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

#contact .ct-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

#contact .ct-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .ct-btn-secondary:hover {
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.05);
}

#contact .ct-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

#contact .svc-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

#contact .ct-panel-sm:hover .svc-icon {
    border-color: rgba(139, 92, 246, 0.35);
}

#contact .svc-icon svg {
    width: 16px;
    height: 16px;
}

#contact .svc-info {}

#contact .svc-name {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
    transition: color 0.3s;
}

#contact .ct-panel-sm:hover .svc-name {
    color: rgba(255, 255, 255, 0.9);
}

#contact .svc-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
}

/* */

#experience *,
#tools * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ex-sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    width: fit-content;
}

.ex-sec-tag-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

.ex-sec-tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
}

.ex-h-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, transparent);
    margin: 16px 0 0;
}

#experience {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #06040c 50%, #000000 100%);
    font-family: 'Outfit', sans-serif;
}

#experience .ex-noise {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#experience .ex-glow-l {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#experience .ex-glow-r {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

#experience .ex-h-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#experience .ex-h-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#experience .ex-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#experience .ex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    flex-wrap: wrap;
    gap: 24px;
}

#experience .ex-timeline {
    position: relative;
}

#experience .ex-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.25) 10%, rgba(139, 92, 246, 0.25) 90%, transparent);
}

#experience .ex-item {
    position: relative;
    padding: 0 0 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

#experience .ex-item:last-child {
    padding-bottom: 0;
}

@media(max-width:760px) {
    #experience .ex-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 36px;
    }
}

#experience .ex-dot {
    position: absolute;
    left: -5px;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.6);
    background: #06040c;
    transition: background 0.3s;
}

#experience .ex-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.5);
}

#experience .ex-item:hover .ex-dot {
    background: rgba(139, 92, 246, 0.15);
}

#experience .ex-left {}

#experience .ex-period {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.6);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#experience .ex-period::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: rgba(168, 85, 247, 0.4);
}

#experience .ex-role {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(22px, 2.5vw, 30px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

#experience .ex-company {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

#experience .ex-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
}

#experience .ex-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.38);
}

#experience .ex-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#experience .ex-tag {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.28);
    border-radius: 1px;
    transition: all 0.3s;
}

#experience .ex-item:hover .ex-tag {
    border-color: rgba(139, 92, 246, 0.25);
    color: rgba(255, 255, 255, 0.45);
}

#experience .ex-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 72px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

#experience .ex-stat-item {
    background: rgba(6, 4, 12, 0.97);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

#experience .ex-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

#experience .ex-stat-item:hover {
    background: rgba(15, 8, 30, 0.98);
}

#experience .ex-stat-item:hover::after {
    transform: scaleX(1);
}

#experience .ex-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    background: linear-gradient(135deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

#experience .ex-stat-label {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 6px;
}

#experience .ex-stat-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}

@media(max-width:600px) {
    #experience .ex-stats {
        grid-template-columns: 1fr;
    }
}

#tools {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #07050f 50%, #000000 100%);
    font-family: 'Outfit', sans-serif;
}

#tools .tl-noise {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#tools .tl-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

#tools .tl-h-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#tools .tl-h-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#tools .tl-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#tools .tl-header {
    text-align: center;
    margin-bottom: 72px;
}

#tools .tl-header .ex-sec-tag {
    margin: 0 auto 16px;
}

#tools .tl-header .ex-h-rule {
    margin: 16px auto 0;
}

#tools .tl-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 1px;
}

@media(max-width:900px) {
    #tools .tl-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:500px) {
    #tools .tl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#tools .tl-card {
    background: rgba(7, 5, 15, 0.97);
    padding: 32px 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
}

#tools .tl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(192, 38, 211, 0.04));
    opacity: 0;
    transition: opacity 0.4s;
}

#tools .tl-card:hover {
    background: rgba(18, 10, 32, 0.98);
}

#tools .tl-card:hover::before {
    opacity: 1;
}

#tools .tl-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

#tools .tl-card:hover::after {
    transform: scaleX(1);
}

#tools .tl-img-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s;
}

#tools .tl-card:hover .tl-img-wrap {
    transform: translateY(-3px);
}

#tools .tl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0));
    transition: filter 0.4s;
}

#tools .tl-card:hover .tl-img-wrap img {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.35));
}

#tools .tl-name {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: color 0.4s;
}

#tools .tl-card:hover .tl-name {
    color: rgba(255, 255, 255, 0.8);
}

#tools .tl-level {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: visible;
    transition: width 0.4s;
}

#tools .tl-level-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 1px;
}

#tools .tl-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
}

@media(max-width:600px) {
    #tools .tl-bottom {
        grid-template-columns: 1fr;
    }
}

#tools .tl-bottom-item {
    background: rgba(7, 5, 15, 0.97);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#tools .tl-bottom-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

#tools .tl-bottom-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

/* */
#gallery,
#gallery * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#gallery {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #07050f 40%, #06040c 80%, #000000 100%);
    font-family: 'Outfit', sans-serif;
}

#gallery .gl-noise {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

#gallery .gl-glow-l {
    position: absolute;
    top: 15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#gallery .gl-glow-r {
    position: absolute;
    bottom: 10%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

#gallery .gl-h-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#gallery .gl-h-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(192, 38, 211, 0.3), transparent);
}

#gallery .gl-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

#gallery .gl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

#gallery .gl-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

#gallery .gl-tag-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

#gallery .gl-tag-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
}

#gallery .gl-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.02em;
    color: #fff;
}

#gallery .gl-title em {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#gallery .gl-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, transparent);
    margin: 16px 0 0;
}

#gallery .gl-count {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    align-self: flex-end;
}

#gallery .gl-count span {
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    color: rgba(255, 255, 255, 0.12);
    margin-right: 4px;
}

#gallery .gl-filters-main {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

#gallery .gl-filter-btn {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    background: rgba(7, 5, 15, 0.97);
    color: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

#gallery .gl-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B5CF6, #EC4899, transparent);
    transform: scaleX(0);
    transition: transform .4s;
}

#gallery .gl-filter-btn:hover {
    background: rgba(18, 10, 32, 0.98);
    color: rgba(255, 255, 255, 0.6);
}

#gallery .gl-filter-btn.active {
    background: rgba(124, 58, 237, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.25);
}

#gallery .gl-filter-btn.active::after {
    transform: scaleX(1);
}

#gallery .gl-subfilters-wrap {
    background: rgba(7, 5, 15, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
    padding: 14px 20px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    transition: opacity .3s, max-height .4s;
}

#gallery .gl-sub-label {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.4);
    margin-right: 4px;
    white-space: nowrap;
}

#gallery .gl-sub-btn {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 12px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1px;
    transition: all .25s;
}

#gallery .gl-sub-btn:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.55);
}

#gallery .gl-sub-btn.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    color: rgba(168, 85, 247, 0.9);
}

#gallery .gl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    min-height: 300px;
}

@media(max-width:900px) {
    #gallery .gl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    #gallery .gl-grid {
        grid-template-columns: 1fr;
    }
}

#gallery .gl-card {
    position: relative;
    overflow: hidden;
    background: rgba(7, 5, 15, 0.97);
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: opacity .3s, transform .3s;
}

#gallery .gl-card.gl-tall {
    aspect-ratio: 4/5;
}

#gallery .gl-card.hidden {
    display: none;
}

#gallery .gl-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .7s, filter .7s;
    filter: grayscale(15%) brightness(.9);
}

#gallery .gl-card:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

#gallery .gl-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 3, 12, .92) 0%, rgba(5, 3, 12, .5) 40%, transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}

#gallery .gl-card:hover .gl-card-overlay {
    opacity: 1;
}

#gallery .gl-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s, opacity .4s;
}

#gallery .gl-card:hover .gl-card-info {
    transform: translateY(0);
    opacity: 1;
}

#gallery .gl-card-cat {
    font-size: 8px;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
    margin-bottom: 5px;
}

#gallery .gl-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

#gallery .gl-card-caption {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

#gallery .gl-see-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: color .3s;
}

#gallery .gl-see-more:hover {
    color: #c4b5fd;
}

#gallery .gl-see-more svg {
    width: 12px;
    height: 12px;
    transition: transform .3s;
}

#gallery .gl-see-more:hover svg {
    transform: translateX(3px);
}

#gallery .gl-card-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(168, 85, 247, 0);
    border-style: solid;
    transition: border-color .3s;
}

#gallery .gl-card-corner.tl {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

#gallery .gl-card-corner.br {
    bottom: 10px;
    right: 10px;
    border-width: 0 1px 1px 0;
}

#gallery .gl-card:hover .gl-card-corner {
    border-color: rgba(168, 85, 247, 0.5);
}

#gallery .gl-empty {
    display: none;
    grid-column: 1/-1;
    padding: 80px 20px;
    text-align: center;
}

#gallery .gl-empty.show {
    display: block;
}

#gallery .gl-empty-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.15);
}

#gallery .gl-load-more-wrap {
    text-align: center;
    margin-top: 48px;
}

#gallery .gl-load-btn {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    padding: 14px 40px;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 1px;
    transition: all .35s;
}

#gallery .gl-load-btn:hover {
    border-color: rgba(139, 92, 246, 0.5);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(124, 58, 237, 0.05);
}

#gallery .gl-load-btn.hidden {
    display: none;
}

#gl-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background .4s;
    padding: 16px;
}

#gl-modal.open {
    background: rgba(0, 0, 0, .88);
    pointer-events: all;
}

#gl-modal .gl-modal-inner {
    background: rgba(7, 5, 15, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 860px;
    width: 100%;
    max-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    opacity: 0;
    transform: translateY(20px) scale(.97);
    transition: opacity .4s, transform .4s;
    position: relative;
    overflow: hidden;
}

#gl-modal.open .gl-modal-inner {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#gl-modal .gl-modal-img {
    position: relative;
    background: #04020a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 92vh;
    align-self: stretch;
}

#gl-modal .gl-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

#gl-modal .gl-modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent);
    pointer-events: none;
}

#gl-modal .gl-modal-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    max-height: 92vh;
}

#gl-modal .gl-modal-cat {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#gl-modal .gl-modal-cat::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: rgba(168, 85, 247, .5);
}

#gl-modal .gl-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

#gl-modal .gl-modal-rule {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    margin-bottom: 20px;
}

#gl-modal .gl-modal-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    flex: 1;
}

#gl-modal .gl-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#gl-modal .gl-meta-tag {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

#gl-modal .gl-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 1px;
    background: rgba(7, 5, 15, .95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: all .3s;
    z-index: 10;
}

#gl-modal .gl-modal-close:hover {
    border-color: rgba(139, 92, 246, .5);
    color: #fff;
}

#gallery .gl-nav-btn {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 1px;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

#gallery .gl-nav-btn:hover {
    border-color: rgba(139, 92, 246, .4);
    color: rgba(255, 255, 255, .7);
}

#gallery .gl-nav-btn svg {
    width: 12px;
    height: 12px;
}

@media(max-width: 640px) {
    #gl-modal .gl-modal-inner {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    #gl-modal .gl-modal-img {
        max-height: 70vw;
        align-self: auto;
    }

    #gl-modal .gl-modal-img img {
        max-height: 70vw;
    }

    #gl-modal .gl-modal-body {
        max-height: unset;
        overflow-y: visible;
        padding: 24px 20px;
    }
}

/* */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .floating-ornament {
        display: none;
    }

    .grid {
        gap: 2rem;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-delayed {
    animation-delay: 0.2s;
}

.section-delayed-2 {
    animation-delay: 0.4s;
}

.section-delayed-3 {
    animation-delay: 0.6s;
}

/* */
#back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 998;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(7, 5, 15, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(139, 92, 246, 0.06);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

#back-to-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#back-to-top:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(139, 92, 246, 0.15);
}

#back-to-top:hover::after {
    opacity: 1;
}

#back-to-top svg {
    width: 16px;
    height: 16px;
    color: rgba(168, 85, 247, 0.65);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

#back-to-top:hover svg {
    color: rgba(196, 181, 253, 0.9);
    transform: translateY(-2px);
}

#back-to-top span {
    font-family: 'Outfit', sans-serif;
    font-size: 7px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 1;
}

#back-to-top:hover span {
    color: rgba(168, 85, 247, 0.5);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }
}