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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #f0c0e4;
    color: #f7eef7;
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
    --scroll-progress: 0;
}

body.menu-open {
    overflow: hidden;
}

body.skill-tooltip-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5.5vw;
    z-index: 30;
}

.music-toggle {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 35;
    min-width: 290px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(199, 102, 199, 0.3);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(179, 0, 179, 0.16), transparent 35%),
        rgba(18, 0, 28, 0.78);
    color: #f7eef7;
    font-family: "Outfit", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.music-toggle:hover {
    transform: translateY(-2px);
    background:
        radial-gradient(circle at top left, rgba(199, 102, 199, 0.2), transparent 35%),
        rgba(77, 0, 77, 0.88);
    border-color: rgba(240, 192, 228, 0.45);
}

.music-toggle:focus-visible {
    outline: 2px solid rgba(240, 192, 228, 0.95);
    outline-offset: 4px;
}

.music-toggle:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.music-toggle__cover {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.music-toggle__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.music-toggle.is-playing {
    border-color: rgba(104, 234, 121, 0.42);
    background:
        radial-gradient(circle at top left, rgba(104, 234, 121, 0.18), transparent 35%),
        rgba(10, 28, 16, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.music-toggle.is-unavailable {
    border-color: rgba(255, 255, 255, 0.14);
}

.music-toggle__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
    padding: 0.6rem 0.5rem;
}

.music-toggle__icon span {
    width: 4px;
    height: 30%;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7eef7, #c766c7);
    transform-origin: center bottom;
    opacity: 0.7;
}

.music-toggle__icon span:nth-child(1) {
    height: 32%;
}

.music-toggle__icon span:nth-child(2) {
    height: 62%;
}

.music-toggle__icon span:nth-child(3) {
    height: 48%;
}

.music-toggle__icon span:nth-child(4) {
    height: 76%;
}

.music-toggle.is-playing .music-toggle__icon span {
    opacity: 1;
    animation: musicBars 0.9s ease-in-out infinite alternate;
}

.music-toggle.is-playing .music-toggle__icon span:nth-child(2) {
    animation-duration: 0.75s;
}

.music-toggle.is-playing .music-toggle__icon span:nth-child(3) {
    animation-duration: 1.05s;
}

.music-toggle.is-playing .music-toggle__icon span:nth-child(4) {
    animation-duration: 0.68s;
}

.music-toggle__text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.music-toggle__eyebrow {
    color: rgba(247, 238, 247, 0.66);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.music-toggle__label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.music-toggle__meta {
    color: rgba(247, 238, 247, 0.72);
    font-size: 0.76rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-toggle__status {
    width: 10px;
    height: 10px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.music-toggle.is-playing .music-toggle__status {
    background: #68ea79;
    box-shadow: 0 0 0 7px rgba(104, 234, 121, 0.16);
}

.brand {
    color: #920092;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: rgba(30, 0, 30, 0.38);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 32;
    transition: transform 0.45s ease, background 0.3s ease;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(77, 0, 77, 0.55);
}

.menu-toggle.is-open {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 0, 28, 0.18);
    backdrop-filter: blur(4px);
}

.menu-overlay::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 34%),
        linear-gradient(135deg, rgba(179, 0, 179, 0.34) 0%, rgba(77, 0, 77, 0.48) 55%, rgba(26, 0, 26, 0.58) 100%);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.menu-overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(135deg, rgba(240, 192, 228, 0.16) 0%, rgba(179, 0, 179, 0.22) 52%, rgba(77, 0, 77, 0.34) 100%);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: transform 1.45s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.menu-overlay.is-open::before {
    transform: translate(-50%, -50%) scale(95);
}

.menu-overlay.is-open::after {
    transform: translate(-50%, -50%) scale(72);
}

.menu-panel {
    position: relative;
    z-index: 1;
    width: min(420px, 82vw);
    display: grid;
    gap: 1rem;
    text-align: center;
}

.menu-link {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(26px);
    opacity: 0;
    transition: transform 0.55s ease, opacity 0.45s ease, color 0.25s ease;
}

.menu-link-button {
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.menu-overlay.is-open .menu-link {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.is-open .menu-link:nth-child(1) {
    transition-delay: 0.42s;
}

.menu-overlay.is-open .menu-link:nth-child(2) {
    transition-delay: 0.5s;
}

.menu-overlay.is-open .menu-link:nth-child(3) {
    transition-delay: 0.58s;
}

.menu-overlay.is-open .menu-link:nth-child(4) {
    transition-delay: 0.66s;
}

.menu-link:hover {
    color: #f0c0e4;
}

.music-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.music-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.music-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 0, 12, 0.56);
    backdrop-filter: blur(8px);
}

.music-modal__panel {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100vw - 2rem));
    padding: 1.2rem;
    border: 1px solid rgba(240, 192, 228, 0.16);
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(179, 0, 179, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(29, 0, 35, 0.96), rgba(10, 0, 14, 0.96));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.music-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.music-modal__eyebrow {
    color: rgba(247, 238, 247, 0.64);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.music-modal__title {
    margin-top: 0.2rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    line-height: 1;
}

.music-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.music-modal__list {
    display: grid;
    gap: 0.75rem;
}

.menu-song {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-song:hover,
.menu-song.is-active {
    transform: translateY(-2px);
    border-color: rgba(240, 192, 228, 0.4);
    background: rgba(179, 0, 179, 0.16);
}

.menu-song__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.menu-song__artist {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.84rem;
    color: rgba(247, 238, 247, 0.7);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    align-items: center;
    padding: 6rem 5.5vw 0;
    overflow: visible;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 220px;
    background: linear-gradient(
        180deg,
        rgba(240, 192, 228, 0) 0%,
        rgba(188, 84, 176, 0.14) 42%,
        rgba(76, 0, 76, 0.42) 72%,
        #0b020b 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 520px;
}

.hero-content h1 {
    font-weight: 500;
    font-size: xx-large; 
}

.hero-content h2 {
    font-weight: 500;
    font-size: xx-large;
    display:inline; 
}

.greeting {
    font-size: clamp(2.2rem, 2vw, 3.7rem);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #0c010c;
}

.name {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: #0c010c;
}

.tagline {
    max-width: none;
    min-height: 1.2em;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    font-weight: 500;
    line-height: 1.05;
    color: #920092;
    white-space: nowrap;
    overflow: hidden;
}

.tagline-text {
    display: inline-block;
    min-height: 1.1em;
    padding-right: 0.12em;
    border-right: 3px solid currentColor;
    animation: blinkCursor 0.85s step-end infinite;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 2px solid rgba(179, 0, 179, 0.35);
    background: rgba(26, 0, 26, 0.88);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 12px 24px rgba(25, 18, 10, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(25, 18, 10, 0.16);
}

.social-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.github-btn {
    background: rgba(26, 0, 26, 0);
    border-color: rgb(19, 1, 15);
}

.instagram-btn {
    background: rgba(26, 0, 26, 0);
    border-color: rgb(19, 1, 15);
}

.instagram-btn:hover {
   background: linear-gradient(
        -10deg,
        rgb(252, 175, 69),
        rgb(252, 175, 69),
        rgb(245, 96, 64),
        rgb(225, 48, 108),
        rgb(193, 53, 132),
        rgb(131, 58, 180),
        rgb(88, 81, 219),
        rgb(64, 93, 230)
    );
    border-color: #4a4848;
}

.github-btn:hover {
    background: rgba(230, 230, 230, 0.92);
    border-color: #800080;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}

.resume-btn2:hover {
    background: rgba(233, 233, 233, 0.92);
    border-color: #2b012b;
}

.btn-outline,
.btn-primary {
    min-width: 132px;
    padding: 0.95rem 1.6rem;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-outline {
    border: 2px solid #800080;
    color: #1a001a;
    background: transparent;
}

.resume-btn2 {
    color: #e47ade;
    border-color: #ec04ec;
}

.resume-btn2:hover {
    background: rgba(233, 233, 233, 0.92);
    border-color: #2b012b;
    color: #1a001a;
}

.btn-primary {
    background: #800080;
    border: 2px solid #800080;
    color: #ffffff;
}

.btn-outline:hover,
.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: 14vw;
    bottom: -30px;
    width: min(24vw, 360px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    transform: translateX(-10%) scale(0.92);
    z-index: 4;
}
.hero-image img {
   width: 100%;
   height: auto;
   display: block;
}

.scroll-stage {
    position: relative;
    height: 220vh;
    background: linear-gradient(
        180deg,
        #0b020b 0%,
        #150015 14%,
        #2a002a 28%,
        #0b020b 48%
    );
    --scroll-progress: 0;
    margin-top: -8vh;
    z-index: 1;
}

.scroll-stage::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 220px;
    background: linear-gradient(
        180deg,
        rgba(11, 2, 11, 0) 0%,
        rgba(11, 2, 11, 0.68) 55%,
        rgba(11, 2, 11, 0.96) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.scroll-stage__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.paint-canvas,
.paint-scene {
    position: absolute;
    inset: 0;
}

.paint-canvas {
    pointer-events: none;
    z-index: 3;
}

.paint-stroke {
    position: absolute;
    left: -12vw;
    right: -12vw;
    height: 31vh;
    border-radius: 40% 60% 28% 35% / 44% 36% 58% 42%;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #4d004d 0%, #800080 48%, #b300b3 100%);
    box-shadow: 0 24px 50px rgba(77, 0, 77, 0.28);
    opacity: 0.98;
    transform: translateY(calc(-120% + var(--scroll-progress) * 220%));
}

.paint-stroke::before,
.paint-stroke::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.paint-stroke::before {
    width: 18%;
    height: 110%;
    left: 2%;
    top: -14%;
    filter: blur(1px);
}

.paint-stroke::after {
    width: 12%;
    height: 88%;
    right: 3%;
    top: 6%;
    opacity: 0.95;
}

.paint-stroke-one {
    top: -10vh;
    transform:
        translateY(calc(-135% + var(--scroll-progress) * 250%))
        rotate(-5deg);
}

.paint-stroke-two {
    top: 16vh;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #1a001a 0%, #4d004d 42%, #800080 100%);
    transform:
        translateY(calc(-150% + var(--scroll-progress) * 232%))
        rotate(3deg);
}

.paint-stroke-three {
    top: 42vh;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.07)),
        linear-gradient(135deg, #1a001a 0%, #4d004d 38%, #800080 100%);
    transform:
        translateY(calc(-165% + var(--scroll-progress) * 220%))
        rotate(-2deg);
}

.paint-stroke-four {
    top: 66vh;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 20%, transparent 82%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #4d004d 0%, #800080 38%, #b300b3 100%);
    transform:
        translateY(calc(-175% + var(--scroll-progress) * 205%))
        rotate(4deg);
}

.paint-scene {
    display: grid;
    align-content: end;
    padding: 0 5.5vw 8vh;
    background:
        radial-gradient(circle at top left, rgba(179, 0, 179, 0.18), transparent 28%),
        linear-gradient(180deg, #1a001a 0%, #4d004d 34%, #000000 96%);
    color: #f5e8f5;
    z-index: 1;
}

.paint-scene h3 {
    max-width: 11ch;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    opacity: calc(1 - var(--scroll-progress) * 0.3);
    transform: translateY(calc(var(--scroll-progress) * -2vh));
}

.paint-scene p:last-child {
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: calc(0.82 - var(--scroll-progress) * 0.18);
}

.next-section {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(179, 0, 179, 0.14), transparent 18%),
        linear-gradient(180deg, #100010 0%, #000000 100%);
    color: #f6eef6;
}

.next-section__content {
    width: min(1200px, 100%);
    text-align: left;
}

.skills-intro {
    max-width: 860px;
    margin-bottom: 3rem;
}

.skills-intro p {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.35;
    font-weight: 500;
    color: #f6eef6;
}

.skills-intro span {
    color: #b300b3;
    font-weight: 600;
}

.skills-groups {
    position: relative;
    display: grid;
    gap: 2.2rem;
}

.skills-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
}

.skills-group h3 {
    margin-bottom: 1rem;
    color: #c766c7;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skills-grid-small .skill-card {
    width: 92px;
    min-width: 92px;
}

.skill-card {
    width: 92px;
    height: 92px;
    min-width: 92px;
    padding: 0.9rem;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.skill-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.skill-card:hover,
.skill-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(179, 0, 179, 0.55);
    background: linear-gradient(180deg, rgba(179, 0, 179, 0.18), rgba(255, 255, 255, 0.04));
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.skill-card:focus-visible {
    outline: 2px solid rgba(240, 192, 228, 0.95);
    outline-offset: 4px;
}

.skill-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    width: min(420px, calc(100vw - 3rem));
    padding: 1.35rem 1.4rem 1.5rem;
    border: 1px solid rgba(199, 102, 199, 0.26);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(179, 0, 179, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(22, 0, 22, 0.96), rgba(8, 0, 8, 0.94));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 5;
}

.skill-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-tooltip__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.skill-tooltip__eyebrow {
    color: #c766c7;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.skill-tooltip__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #f7eef7;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.skill-tooltip__close:hover {
    transform: scale(1.05);
    background: rgba(179, 0, 179, 0.2);
    border-color: rgba(199, 102, 199, 0.45);
}

.skill-tooltip__close:focus-visible {
    outline: 2px solid rgba(240, 192, 228, 0.95);
    outline-offset: 3px;
}

.skill-tooltip__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.skill-tooltip__description {
    max-width: 62ch;
    color: rgba(247, 238, 247, 0.9);
    font-size: 1rem;
    line-height: 1.75;
}

.works-fold-section {
    position: relative;
    min-height: 400vh;
    background: #050005;
    color: #f7eef7;
    --works-progress: 0;
}

.works-fold-screen {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.works-fold-3d {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 26vw;
    transform-style: preserve-3d;
}

.works-fold {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    backface-visibility: hidden;
}

.works-fold-top,
.works-fold-bottom {
    height: 37vh;
}

.works-fold-top {
    top: 0;
    transform-origin: bottom center;
    transform: translateY(calc(var(--works-progress) * -18vh)) rotateX(calc(-76deg + var(--works-progress) * 70deg));
}

.works-fold-center {
    top: 31.5vh;
    height: 37vh;
    z-index: 2;
}

.works-fold-bottom {
    bottom: 0;
    transform-origin: top center;
    transform: translateY(calc(var(--works-progress) * 18vh)) rotateX(calc(76deg - var(--works-progress) * 70deg));
}

.works-fold-align,
.works-fold-content {
    width: 100%;
    height: 100%;
}

.works-fold-content {
    background: #050005;
}

.works-marquee {
    border-top: 1px solid rgba(24, 19, 18, 0.16);
    border-bottom: 1px solid rgba(24, 19, 18, 0.16);
    overflow: hidden;
    height: 33.333%;
    display: flex;
    align-items: center;
}

.works-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    min-width: max-content;
    padding: 0 2rem;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: rgba(179, 0, 179, 0.35);
    animation: worksMarquee 18s linear infinite;
}

.works-track-reverse {
    animation-direction: reverse;
}

.works-focus {
    color: #f7eef7;
}

.works-fold-center-content {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.works-label {
    color: #b300b3;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 1rem;
}

.works-fold-center-content h2 {
    font-size: clamp(3.4rem, 10vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.works-description {
    max-width: 840px;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.6;
}

.projects-showcase {
    padding: 7rem 1.25rem 5rem;
    background: #050005;
    color: #f7eef7;
}

.projects-showcase__intro {
    width: min(1100px, 100%);
    margin: 0 auto 2.5rem;
}

.projects-label {
    color: #f3ddf3;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 0.5rem;
}

.projects-showcase__intro h2 {
    color: #b300b3;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 0.9rem;
}

.projects-showcase__intro p {
    max-width: 860px;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.45;
}

.projects-showcase__intro span {
    color: #c766c7;
}

.projects-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: block;
}

.project-card-link {
    display: block;
    perspective: 1400px;
    cursor: pointer;
}

.project-card {
    position: relative;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    --card-glow-x: 50%;
    --card-glow-y: 50%;
    min-height: 520px;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.14);
    transform: rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
    transform-style: preserve-3d;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-card-link:hover .project-card {
    box-shadow: 0 34px 60px rgba(0, 0, 0, 0.2);
}

.project-card__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 18%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.project-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(255, 255, 255, 0.24), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.project-card::before,
.project-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.project-card::before {
    width: 420px;
    height: 220px;
    top: -26px;
    right: -140px;
    border-radius: 999px;
    transform: rotate(10deg);
    background: rgba(255, 255, 255, 0.14);
}

.project-card::after {
    width: 520px;
    height: 210px;
    left: -120px;
    bottom: 90px;
    border-radius: 999px;
    transform: rotate(12deg);
    background: rgba(255, 255, 255, 0.12);
}

.project-card-dark {
    background: linear-gradient(180deg, #169b5c 0%, #178e57 100%);
}

.project-card__stack {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 2;
    pointer-events: none;
}

.project-card__stack img {
    position: absolute;
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 0.45rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    transform: rotate(-20deg);
}

.project-card__stack img:nth-child(1) {
    top: 7.1rem;
    left: 5.6rem;
}

.project-card__stack img:nth-child(2) {
    top: 12.1rem;
    left: 12.8rem;
    transform: rotate(-20deg);
}

.project-card__stack img:nth-child(3) {
    top: 17rem;
    left: 5.7rem;
    transform: rotate(-20deg);
}

.project-card__stack img:nth-child(4) {
    top: 22.4rem;
    left: 15.8rem;
    transform: rotate(-20deg);
}

.project-card__mockup {
    position: absolute;
    right: 1.8rem;
    top: 2.4rem;
    width: 57%;
    height: 74%;
    border-radius: 22px;
    transform: rotate(-12deg);
    box-shadow: 0 24px 28px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.project-card__mockup-image {
    background: rgba(14, 17, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.project-card__body {
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    top: 1rem;
    z-index: 2;
}

.project-card__body h3 {
    max-width: 74%;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.08;
    margin-bottom: 0;
}

.project-card__body p {
    max-width: 72%;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
    position: absolute;
    left: 0;
    bottom: -26.8rem;
}

.collaborate-section {
    position: relative;
    min-height: 170vh;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #1a001a 0%, #0a000a 26%, #000000 100%);
    color: #f7eef7;
    --collaborate-progress: 0;
}

.collaborate-section__sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.collaborate-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    isolation: isolate;
}

.collaborate-blob,
.collaborate-orb {
    position: absolute;
    border-radius: 999px;
}

.collaborate-blob {
    left: 50%;
    transform: translateX(-50%);
    width: 160vw;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.95;
}

.collaborate-blob-one {
    top: 16%;
    height: 70vh;
    background: linear-gradient(180deg, rgba(12, 0, 12, 0.84), rgba(77, 0, 77, 0.84));
    transform: translateX(calc(-50% + (var(--collaborate-progress) * -7vw))) rotate(-10deg);
}

.collaborate-blob-two {
    top: 32%;
    height: 56vh;
    width: 148vw;
    background: linear-gradient(180deg, rgba(128, 0, 128, 0.72), rgba(128, 0, 128, 0.72));
    transform: translateX(calc(-50% + (var(--collaborate-progress) * 6vw))) rotate(-8deg);
}

.collaborate-blob-three {
    bottom: 8%;
    height: 44vh;
    width: 156vw;
    background: linear-gradient(180deg, rgba(179, 0, 179, 0.72), rgba(128, 0, 128, 0.78));
    transform: translateX(calc(-50% + (var(--collaborate-progress) * -5vw))) rotate(9deg);
}

.collaborate-blob-four {
    bottom: -10%;
    height: 34vh;
    width: 130vw;
    background: linear-gradient(180deg, rgba(77, 0, 77, 0.72), rgba(26, 0, 26, 0.9));
    transform: translateX(calc(-50% + (var(--collaborate-progress) * 4vw))) rotate(-6deg);
}

.collaborate-orb-one {
    width: 110px;
    height: 110px;
    right: 7%;
    top: 34%;
    background: radial-gradient(circle at 35% 35%, #f5d5ff 0%, #b300b3 35%, #220022 72%);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.32);
}

.collaborate-orb-two {
    width: 150px;
    height: 150px;
    left: 12%;
    bottom: 10%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), rgba(179, 0, 179, 0.72) 42%, rgba(26, 0, 26, 0.9) 74%);
    opacity: 0.52;
    filter: blur(2px);
}

.collaborate-section__content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    text-align: center;
    padding: 2rem 1rem 3rem;
}

.collaborate-kicker {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(247, 238, 247, 0.72);
}

.collaborate-counter {
    width: fit-content;
    margin: 0 auto 2rem;
    padding: 1.6rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(12, 0, 12, 0.42);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.collaborate-counter strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: #b300b3;
}

.collaborate-counter span {
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 238, 247, 0.78);
}

.collaborate-title {
    white-space: nowrap;
    margin: 0 auto;
    display: inline-flex;
    font-size: clamp(2.4rem, 3vw, 2.2rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.collaborate-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.collaborate-social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collaborate-social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.collaborate-social-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.collaborate-email {
    margin-top: 1.8rem;
    font-size: 1rem;
    color: rgba(247, 238, 247, 0.9);
}

.collaborate-email a {
    color: #ffffff;
}

.collaborate-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.collaborate-note {
    margin-top: 1.5rem;
    font-size: 0.98rem;
    color: rgba(247, 238, 247, 0.72);
}

.collaborate-marquee-section {
    position: relative;
    min-height: 200vh;
    background:
        radial-gradient(circle at 50% 18%, rgba(179, 0, 179, 0.08), transparent 32%),
        linear-gradient(
            180deg,
            #050005 0%,
            #080008 14%,
            #120012 38%,
            #1a001a 64%,
            #120012 100%
        );
    color: #f7eef7;
    --collaborate-marquee-progress: 0;
}

.collaborate-marquee-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 180px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 0;
}

.collaborate-marquee-section__sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.collaborate-marquee-section__bg {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 4rem;
    pointer-events: none;
    opacity: 0.92;
}

.collaborate-row {
    overflow: hidden;
    white-space: nowrap;
}

.collaborate-row__band {
    display: flex;
    width: max-content;
    transform: translateX(calc(var(--collaborate-marquee-progress) * -50%));
}

.collaborate-row--reverse .collaborate-row__band {
    transform: translateX(calc(-50% + (var(--collaborate-marquee-progress) * 50%)));
}

.collaborate-row__track {
    display: flex;
    flex: 0 0 auto;
    gap: 1.15rem;
    white-space: nowrap;
    font-size: clamp(2rem, 6vw, 10rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(179, 0, 179, 0.22);
}

.collaborate-marquee-section__content {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    text-align: center;
    padding: 2rem 1rem;
}

.collaborate-marquee-title {
    position: relative;
    display: inline-block;
    max-width: 100%;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(247, 238, 247, 0.32);
    white-space: nowrap;
}

.collaborate-marquee-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #b300b3;
    white-space: nowrap;
    overflow: hidden;
    width: calc(var(--collaborate-marquee-progress) * 100%);
}

@keyframes blinkCursor {
    0%,
    49% {
        border-right-color: currentColor;
    }

    50%,
    100% {
        border-right-color: transparent;
    }
}

@keyframes musicBars {
    0% {
        transform: scaleY(0.45);
    }

    100% {
        transform: scaleY(1.15);
    }
}

@keyframes worksMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}

@media (max-width: 640px) {
  .hero {
    min-height: 95svh;
    padding: 0.5rem 1rem 10rem;
    align-items: start;
    overflow: hidden;
    display: grid;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 64%;
    padding-top: 1.8rem;
}

.hero-image {
    position: absolute;
    right: -0.5rem;
    bottom: 5.5rem;
    width: min(42vw, 180px);
    margin: 0;
    justify-content: flex-end;
    z-index: 1;
    opacity: 0.98;
}

    .scroll-stage {
        height: 190vh;
        margin-top: 0;
    }

    .paint-scene {
        padding: 0 1.5rem 7vh;
    }

    .paint-scene h3 {
        max-width: 12ch;
        font-size: clamp(2.6rem, 10vw, 4.8rem);
    }

    .skills-row {
        grid-template-columns: 1fr;
    }

    .works-fold-section {
        min-height: 260vh;
    }

    .works-track {
        font-size: clamp(2.8rem, 11vw, 5rem);
    }

    .works-fold-center {
        top: 32vh;
        height: 36vh;
    }

    .project-card {
        min-height: 440px;
    }

    .project-card__mockup {
        width: 54%;
        height: 64%;
    }

    .project-card__body h3,
    .project-card__body p {
        max-width: 60%;
    }

    .project-card__body p {
        bottom: -20rem;
    }

    .collaborate-section {
        min-height: 150vh;
    }

    .collaborate-title {
        font-size: clamp(2.2rem, 6vw, 3.6rem);
    }

    .collaborate-blob-one {
        top: 20%;
    }

    .collaborate-blob-two {
        top: 38%;
    }

    .collaborate-orb-one {
        right: 4%;
        top: 30%;
        width: 92px;
        height: 92px;
    }

    .collaborate-marquee-section {
        min-height: 180vh;
    }

    .collaborate-row__track {
        font-size: clamp(3.2rem, 11vw, 6rem);
    }

    .collaborate-marquee-title {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 1rem 0.9rem;
    }

    .music-toggle {
        left: 0.9rem;
        bottom: 0.9rem;
        min-width: 182px;
        max-width: calc(100vw - 1.8rem);
        padding: 0.5rem 0.62rem;
        gap: 0.48rem;
        border-radius: 18px;
    }

    .music-toggle__cover {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .music-toggle__icon {
        width: 28px;
        height: 28px;
        border-radius: 9px;
        gap: 2px;
        padding: 0.42rem 0.35rem;
    }

    .music-toggle__eyebrow {
        font-size: 0.44rem;
        letter-spacing: 0.12em;
    }

    .music-toggle__label {
        font-size: 0.65rem;
    }

    .music-toggle__meta {
        font-size: 0.5rem;
        max-width: 88px;
    }

    .music-toggle__status {
        width: 7px;
        height: 7px;
    }

    .brand {
        font-size: 1.rem;
        letter-spacing: 0;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        background: rgba(70, 30, 70, 0.34);
    }

    .menu-toggle span {
        width: 16px;
    }

    .menu-panel {
        width: min(320px, 84vw);
    }

    .menu-link {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .menu-song {
        padding: 0.78rem 0.9rem;
        border-radius: 14px;
    }

    .menu-song__title {
        font-size: 0.92rem;
    }

    .menu-song__artist {
        font-size: 0.76rem;
    }

    .music-modal__panel {
        width: min(360px, calc(100vw - 1.4rem));
        padding: 1rem;
        border-radius: 20px;
    }

    .music-modal__title {
        font-size: 1.5rem;
    }

    .music-modal__close {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .hero {
        min-height: 95svh;
        padding: 0.29rem 0.9rem 10rem;
        align-items: start;
        overflow: hidden;
    }

    .greeting {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        line-height: 0.98;
    }

    .name {
        white-space: nowrap;
        font-size: 1.25rem !important;
        line-height: 1.1;
        margin-bottom: 0.65rem;
    }

    .tagline {
        max-width: none;
        font-size: 1.25rem !important;
        min-height: 1.6em;
        max-width: 20ch;
        white-space: normal;
        line-height: 1;
        overflow: visible;
    }

    .hero-content {
        max-width: 72%;
        padding-top: 1.8rem;
    }

    .socials {
        gap: 0.5rem;
        margin-top: 0.7rem;
    }

    .social-btn {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        border-width: 1px;
        box-shadow: none;
    }

    .social-btn img {
        width: 15px;
        height: 15px;
    }

    .buttons {
        gap: 0.45rem;
        margin-top: 0.7rem;
    }

    .btn-outline,
    .btn-primary {
        min-width: 62px;
        padding: 0.38rem 0.65rem;
        font-size: 0.58rem;
        border-radius: 3px;
    }

    .hero-image {
    position: absolute;
    right: -0.5rem;
    bottom: 5.5rem;
    width: min(42vw, 180px);
    margin: 0;
    justify-content: flex-end;
    z-index: 1;
    opacity: 0.98;
}

    .hero::after {
        height: 0;
    }

    .scroll-stage {
        height: 175vh;
        margin-top: 0;
    }

    .paint-stroke {
        left: -18vw;
        right: -18vw;
        height: 28vh;
    }

    .paint-stroke-one {
        top: -6vh;
    }

    .paint-stroke-two {
        top: 18vh;
    }

    .paint-stroke-three {
        top: 40vh;
    }

    .paint-stroke-four {
        top: 62vh;
    }

    .paint-scene h3 {
        font-size: 2.5rem;
    }

    .paint-scene p:last-child {
        font-size: 0.95rem;
    }

    .skills-intro {
        margin-bottom: 2.2rem;
    }

    .skills-intro p {
        font-size: 1.25rem;
    }

    .skill-card {
        width: 50px;
        height: 60px;
        min-width: 60px;
        padding: 1.0rem;
    }

    .skill-tooltip {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        top: auto;
        bottom: 0.75rem;
        width: auto;
        max-width: none;
        max-height: min(54vh, 420px);
        padding: 1rem 1rem 1.1rem;
        border-radius: 20px;
        overflow-y: auto;
        transform: translateY(24px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .skill-tooltip__header {
        margin-bottom: 0.65rem;
    }

    .skill-tooltip__close {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .skill-tooltip__title {
        font-size: 1.2rem;
    }

    .skill-tooltip__description {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .works-fold-section {
        min-height: 180vh;
    }

    .works-fold-top,
    .works-fold-bottom {
        height: 30vh;
    }

    .works-fold-center {
        top: 28vh;
        height: 44vh;
    }

    .works-fold-center-content h2 {
        font-size: 2.8rem;
    }

    .works-description {
        font-size: 1rem;
    }

    .projects-showcase {
        padding: -0.1rem 2rem 4rem;
    }

    .projects-showcase__intro p {
        font-size: 1.2rem;
    }

    .project-card {
        min-height: 420px;
    }

    .project-card__stack {
        inset: 0;
    }

    .project-card__stack img {
        width: 48px;
        height: 48px;
    }

    .project-card__stack img:nth-child(1) {
        top: 5.8rem;
        left: 1.2rem;
    }

    .project-card__stack img:nth-child(2) {
        top: 10.1rem;
        left: 0.9rem;
    }

    .project-card__stack img:nth-child(3) {
        top: 13.8rem;
        left: 3.2rem;
    }

    .project-card__stack img:nth-child(4) {
        top: 17.6rem;
        left: 0.6rem;
    }

    .project-card__mockup {
        position: absolute;
        right: 1rem;
        top: 5.8rem;
        width: 66%;
        height: 46%;
    }

    .project-card__body {
        left: 1.2rem;
        right: 1.2rem;
        top: 1rem;
    }

    .project-card__body h3,
    .project-card__body p {
        max-width: 100%;
    }

    .project-card__body h3 {
        font-size: 1.22rem;
    }

    .project-card__body p {
        font-size: 0.90rem;
        position: static;
        margin-top: 15.8rem;
    }

    .collaborate-section {
        min-height: 100svh;
    }

    .collaborate-section__sticky {
        align-items: end;
    }

    .collaborate-section__bg {
        opacity: 0.9;
    }

    .collaborate-section__content {
        width: min(100%, 340px);
        padding: 1.5rem 1rem 3rem;
    }

    .collaborate-kicker {
        margin-bottom: 0.7rem;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .collaborate-counter {
        width: 100%;
        max-width: 240px;
        padding: 0.95rem 1rem;
        margin-bottom: 1.1rem;
        border-radius: 14px;
    }

    .collaborate-counter strong {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .collaborate-counter span {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .collaborate-title {
        display: block;
        font-size: clamp(1.22rem, 5vw, 2rem);
        line-height: 1.12;
        white-space: nowrap;
        text-wrap: balance;
    }

    .collaborate-social-btn {
        width: 40px;
        height: 40px;
    }

    .collaborate-social-btn img {
        width: 20px;
        height: 20px;
    }

    .collaborate-socials {
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .collaborate-email {
        margin-top: 1.1rem;
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.78rem;
        line-height: 1.5;
        padding: 0;
        overflow-wrap: anywhere;
    }

    .collaborate-actions {
        justify-content: center;
        gap: 0.65rem;
        margin-top: 1.15rem;
    }

    .collaborate-actions .btn-outline,
    .collaborate-actions .btn-primary {
        min-width: 104px;
        padding: 0.65rem 0.9rem;
        font-size: 0.76rem;
    }

    .collaborate-note {
        margin-top: 1rem;
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.72rem;
        line-height: 1.45;
        padding: 0;
    }

    .collaborate-blob {
        width: 210vw;
    }

    .collaborate-blob-one {
        top: 26%;
        height: 50vh;
    }

    .collaborate-blob-two {
        top: 42%;
        height: 40vh;
        width: 195vw;
    }

    .collaborate-blob-three {
        bottom: 10%;
        height: 32vh;
    }

    .collaborate-blob-four {
        height: 24vh;
    }

    .collaborate-orb-one {
        width: 70px;
        height: 70px;
        top: 35%;
        right: 5%;
    }

    .collaborate-orb-two {
        width: 100px;
        height: 100px;
        left: 4%;
        bottom: 12%;
    }

    .collaborate-marquee-section {
        min-height: 155vh;
    }

    .collaborate-marquee-section__bg {
        gap: 1.25rem;
    }

    .collaborate-row__track {
        gap: 0.9rem;
        font-size: clamp(4.5rem, 10vw, 4.6rem);
    }

    .collaborate-marquee-title {
        font-size: clamp(1.7rem, 6.2vw, 2.5rem);
        white-space: nowrap;
        line-height: 1.08;
    }

    .collaborate-marquee-title::after {
        white-space: nowrap;
    }
}

/* Modern palette refresh */
:root {
    color-scheme: dark;
    --font-body: "Manrope", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
    --bg-top: #0d1822;
    --bg-base: #08131c;
    --bg-deep: #02060b;
    --panel: rgba(11, 22, 34, 0.78);
    --panel-strong: rgba(8, 18, 29, 0.92);
    --panel-soft: rgba(15, 28, 41, 0.72);
    --panel-raised: rgba(20, 36, 51, 0.88);
    --line: rgba(153, 176, 197, 0.18);
    --line-strong: rgba(116, 231, 216, 0.34);
    --text-primary: #eef5fb;
    --text-secondary: rgba(216, 228, 239, 0.76);
    --text-muted: rgba(174, 189, 203, 0.6);
    --text-dark: #07111a;
    --accent: #74e7d8;
    --accent-strong: #29c4c7;
    --accent-cool: #8ab5ff;
    --accent-warm: #f0c48a;
    --success: #9ef2ba;
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.34);
}

body {
    background:
        radial-gradient(circle at 12% 0%, rgba(116, 231, 216, 0.18), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(138, 181, 255, 0.16), transparent 26%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-base) 34%, var(--bg-deep) 100%);
    color: var(--text-primary);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

a {
    transition: color 0.2s ease;
}

::selection {
    background: rgba(116, 231, 216, 0.26);
    color: var(--text-primary);
}

h1,
h2,
h3,
h4,
.brand,
.menu-link,
.greeting,
.name,
.tagline,
.music-modal__title,
.paint-scene h3,
.works-fold-center-content h2,
.projects-showcase__intro h2,
.project-card__body h3,
.collaborate-title,
.collaborate-marquee-title {
    font-family: var(--font-display);
}

.site-header {
    background: linear-gradient(180deg, rgba(4, 10, 17, 0.72) 0%, rgba(4, 10, 17, 0) 100%);
    backdrop-filter: blur(14px);
}

.brand {
    color: var(--accent-warm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.menu-toggle {
    border: 1px solid var(--line);
    background: rgba(10, 20, 31, 0.62);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.menu-toggle span {
    background: var(--text-primary);
}

.menu-toggle:hover {
    background: rgba(26, 48, 68, 0.82);
    border-color: var(--line-strong);
}

.menu-toggle.is-open {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.music-toggle {
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(116, 231, 216, 0.14), transparent 35%),
        var(--panel-strong);
    color: var(--text-primary);
    font-family: var(--font-body);
    box-shadow: var(--shadow-lg);
}

.music-toggle:hover {
    background:
        radial-gradient(circle at top left, rgba(138, 181, 255, 0.18), transparent 35%),
        var(--panel-raised);
    border-color: var(--line-strong);
}

.music-toggle:focus-visible {
    outline: 2px solid rgba(116, 231, 216, 0.85);
}

.music-toggle.is-playing {
    border-color: rgba(158, 242, 186, 0.42);
    background:
        radial-gradient(circle at top left, rgba(158, 242, 186, 0.16), transparent 35%),
        linear-gradient(180deg, rgba(10, 24, 18, 0.96), rgba(8, 18, 14, 0.96));
}

.music-toggle__icon {
    background: rgba(255, 255, 255, 0.06);
}

.music-toggle__icon span {
    background: linear-gradient(180deg, var(--text-primary), var(--accent));
}

.music-toggle__eyebrow {
    color: var(--text-muted);
}

.music-toggle__label {
    color: var(--text-primary);
}

.music-toggle__meta {
    color: var(--text-secondary);
}

.music-toggle__status {
    background: rgba(255, 255, 255, 0.24);
}

.music-toggle.is-playing .music-toggle__status {
    background: var(--success);
    box-shadow: 0 0 0 7px rgba(158, 242, 186, 0.16);
}

.menu-overlay__backdrop {
    background: rgba(2, 6, 11, 0.38);
    backdrop-filter: blur(8px);
}

.menu-overlay::before {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(41, 196, 199, 0.42) 0%, rgba(15, 59, 87, 0.58) 58%, rgba(3, 7, 13, 0.66) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.menu-overlay::after {
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(135deg, rgba(138, 181, 255, 0.18) 0%, rgba(41, 196, 199, 0.18) 48%, rgba(8, 18, 29, 0.36) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.menu-link {
    color: rgba(238, 245, 251, 0.92);
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.menu-link:hover {
    color: var(--accent);
}

.music-modal__backdrop {
    background: rgba(2, 6, 11, 0.62);
}

.music-modal__panel {
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(116, 231, 216, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(10, 22, 34, 0.98), rgba(4, 10, 17, 0.98));
    box-shadow: var(--shadow-lg);
}

.music-modal__eyebrow {
    color: var(--text-muted);
}

.music-modal__title {
    color: var(--text-primary);
}

.music-modal__close,
.menu-song {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.music-modal__close:hover,
.menu-song:hover,
.menu-song.is-active {
    background: rgba(116, 231, 216, 0.12);
    border-color: var(--line-strong);
}

.menu-song__artist {
    color: var(--text-secondary);
}

.hero {
    background: radial-gradient(circle at 76% 24%, rgba(138, 181, 255, 0.12), transparent 22%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 26vw;
    height: 26vw;
    max-width: 320px;
    max-height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116, 231, 216, 0.18) 0%, rgba(138, 181, 255, 0.08) 35%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    background: linear-gradient(180deg, rgba(8, 19, 28, 0) 0%, rgba(7, 16, 24, 0.48) 48%, var(--bg-deep) 100%);
}

.greeting {
    color: var(--accent-warm);
}

.name {
    color: var(--text-primary);
    font-weight: 700;
}

.tagline {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.hero-image img {
    filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.34));
}

.social-btn {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(248, 251, 255, 0.94);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.social-btn:hover {
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.2);
}

.instagram-btn:hover {
    background: linear-gradient(-12deg, #ffd16d, #ff8d66, #ee5a92, #6a7cff);
    border-color: rgba(255, 255, 255, 0.18);
}

.github-btn:hover {
    background: linear-gradient(135deg, #f8fbff 0%, #dbeafe 100%);
    border-color: rgba(116, 231, 216, 0.58);
}

.btn-outline,
.btn-primary {
    border-radius: 999px;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline {
    border: 1px solid var(--line-strong);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.resume-btn2 {
    color: var(--text-primary);
    border-color: var(--line-strong);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-cool) 100%);
    border: 1px solid transparent;
    color: var(--text-dark);
    box-shadow: 0 14px 30px rgba(13, 65, 88, 0.22);
}

.btn-outline:hover,
.resume-btn2:hover {
    background: rgba(116, 231, 216, 0.12);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #99f5e6 0%, #a7c9ff 100%);
    color: var(--text-dark);
    box-shadow: 0 18px 32px rgba(13, 65, 88, 0.26);
}

.scroll-stage {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #07131d 20%, #04101a 40%, var(--bg-deep) 100%);
}

.scroll-stage::before {
    background: linear-gradient(180deg, rgba(2, 6, 11, 0) 0%, rgba(2, 6, 11, 0.74) 55%, rgba(2, 6, 11, 0.98) 100%);
}

.paint-stroke {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #0e4f5d 0%, #1e8c82 48%, #8ab5ff 100%);
    box-shadow: 0 24px 50px rgba(5, 18, 29, 0.38);
}

.paint-stroke-two {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #082032 0%, #0d5369 42%, #39b8d0 100%);
}

.paint-stroke-three {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.07)),
        linear-gradient(135deg, #09131c 0%, #0d4d57 40%, #6ae3d7 100%);
}

.paint-stroke-four {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 20%, transparent 82%, rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #0f344d 0%, #1693a2 42%, #8ab5ff 100%);
}

.paint-scene {
    background:
        radial-gradient(circle at top left, rgba(138, 181, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #08111a 0%, #06111a 36%, var(--bg-deep) 100%);
    color: var(--text-primary);
}

.paint-scene p:last-child {
    color: var(--text-secondary);
}

.next-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(116, 231, 216, 0.12), transparent 18%),
        linear-gradient(180deg, #06111a 0%, var(--bg-deep) 100%);
    color: var(--text-primary);
}

.skills-intro p {
    color: var(--text-primary);
}

.skills-intro span {
    color: var(--accent);
}

.skills-group h3 {
    color: var(--accent-warm);
}

.skill-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.skill-card:hover,
.skill-card.is-active {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(116, 231, 216, 0.16), rgba(255, 255, 255, 0.04));
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.skill-card:focus-visible,
.skill-tooltip__close:focus-visible {
    outline: 2px solid rgba(116, 231, 216, 0.85);
}

.skill-tooltip {
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(138, 181, 255, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(8, 18, 29, 0.98), rgba(3, 7, 13, 0.96));
    box-shadow: var(--shadow-lg);
}

.skill-tooltip__eyebrow {
    color: var(--accent-warm);
}

.skill-tooltip__close {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.skill-tooltip__close:hover {
    background: rgba(116, 231, 216, 0.12);
    border-color: var(--line-strong);
}

.skill-tooltip__title {
    color: var(--text-primary);
}

.skill-tooltip__description {
    color: var(--text-secondary);
}

.works-fold-section,
.works-fold-content,
.projects-showcase {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.works-marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.works-track {
    color: rgba(116, 231, 216, 0.24);
}

.works-focus {
    color: var(--text-primary);
}

.works-label,
.projects-label,
.collaborate-kicker {
    color: var(--accent-warm);
}

.works-description,
.projects-showcase__intro p {
    color: var(--text-secondary);
}

.projects-showcase__intro h2 {
    color: var(--accent);
}

.projects-showcase__intro span {
    color: var(--accent);
}

.project-card {
    color: var(--text-primary);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.projects-showcase {
    overflow: hidden;
}

.projects-grid {
    position: relative;
    width: min(1400px, 100%);
    margin: 0 auto;
    overflow: visible;
}

.projects-grid--slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 900px);
    gap: clamp(1rem, 2vw, 1.8rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 1rem clamp(1rem, 3vw, 2rem) 2.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.projects-grid--slider::-webkit-scrollbar {
    display: none;
}

.projects-grid--slider:focus-visible {
    outline: 2px solid rgba(116, 231, 216, 0.7);
    outline-offset: 6px;
    border-radius: 24px;
}

.projects-grid--slider .project-card-link {
    scroll-snap-align: center;
    width: 100%;
}

.project-card-link:hover .project-card {
    box-shadow: 0 38px 76px rgba(0, 0, 0, 0.32);
}

.project-card__bg {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18%),
        radial-gradient(circle at bottom left, rgba(116, 231, 216, 0.12), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.project-card__glow {
    background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(255, 255, 255, 0.22), transparent 22%);
}

.project-card::before {
    background: rgba(255, 255, 255, 0.12);
}

.project-card::after {
    background: rgba(255, 255, 255, 0.08);
}

.project-card-dark {
    background: linear-gradient(160deg, #0f766e 0%, #0b4b65 48%, #162344 100%);
}

.project-card__stack img {
    background: rgba(6, 16, 27, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-card__mockup-image {
    background: rgba(7, 13, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-card__body p {
    color: var(--text-primary);
    opacity: 0.92;
}

.collaborate-section {
    background:
        radial-gradient(circle at top center, rgba(138, 181, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #06111a 0%, #04101a 30%, var(--bg-deep) 100%);
    color: var(--text-primary);
}

.collaborate-blob {
    border-color: rgba(255, 255, 255, 0.06);
}

.collaborate-blob-one {
    background: linear-gradient(180deg, rgba(10, 22, 34, 0.84), rgba(14, 53, 72, 0.84));
}

.collaborate-blob-two {
    background: linear-gradient(180deg, rgba(20, 105, 115, 0.68), rgba(18, 82, 106, 0.7));
}

.collaborate-blob-three {
    background: linear-gradient(180deg, rgba(41, 196, 199, 0.46), rgba(16, 96, 111, 0.68));
}

.collaborate-blob-four {
    background: linear-gradient(180deg, rgba(13, 46, 67, 0.7), rgba(5, 14, 22, 0.92));
}

.collaborate-orb-one {
    background: radial-gradient(circle at 35% 35%, #e8fff8 0%, var(--accent) 35%, #0b2031 72%);
}

.collaborate-orb-two {
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), rgba(138, 181, 255, 0.5) 42%, rgba(4, 10, 17, 0.9) 74%);
}

.collaborate-counter {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 18, 29, 0.56);
}

.collaborate-counter strong {
    color: var(--accent);
}

.collaborate-counter span,
.collaborate-note,
.collaborate-email {
    color: var(--text-secondary);
}

.collaborate-title {
    color: var(--text-primary);
}

.collaborate-social-btn {
    background: rgba(248, 251, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.collaborate-email a {
    color: var(--accent);
}

.collaborate-email a:hover {
    color: var(--accent-warm);
}

.collaborate-marquee-section {
    background:
        radial-gradient(circle at 50% 18%, rgba(116, 231, 216, 0.08), transparent 32%),
        linear-gradient(180deg, var(--bg-deep) 0%, #04101a 18%, #07131d 42%, #08111a 64%, var(--bg-deep) 100%);
    color: var(--text-primary);
}

.collaborate-marquee-section::before {
    background: linear-gradient(180deg, rgba(2, 6, 11, 0.96), rgba(2, 6, 11, 0));
}

.collaborate-row__track {
    color: rgba(116, 231, 216, 0.18);
}

.collaborate-marquee-title {
    color: rgba(238, 245, 251, 0.3);
}

.collaborate-marquee-title::after {
    color: var(--accent);
}

.visitor-card {
    position: relative;
    z-index: 2;
    min-width: 320px;
    padding: 1.15rem 2rem 1.1rem;
    margin: 0 auto 1.5rem;
    border-radius: 28px;
    text-align: center;
    background: rgba(17, 24, 39, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: visitorCardReveal 0.9s ease both;
}

.visitor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06),
        rgba(217, 70, 239, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    opacity: 0.6;
}

.visitor-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(217, 70, 239, 0.14), transparent 70%);
    filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

.visitor-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(217, 70, 239, 0.08);
    border-color: rgba(217, 70, 239, 0.18);
}

.visitor-label {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0.7rem;
}

.visitor-number {
    position: relative;
    z-index: 1;
    font-size: clamp(3rem, 7vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #d946ef;
    text-shadow:
        0 0 8px rgba(217, 70, 239, 0.22),
        0 0 18px rgba(217, 70, 239, 0.12);
    margin-bottom: 0.45rem;
}

.visitor-text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.collaborate-section__content {
    position: relative;
    z-index: 3;
}

.collaborate-title,
.collaborate-socials,
.collaborate-email,
.collaborate-actions,
.collaborate-note {
    position: relative;
    z-index: 3;
}
