:root {
    --bg: #030818;
    --panel: #060F2A;
    --panel2: #0e1116;
    --text: #e9eef6;
    --muted: rgba(233, 238, 246, .62);
    --muted2: rgba(233, 238, 246, .38);
    --line: rgba(217, 241, 255, .12);
    --accent: #4A90D9;
    --blue: #4A90D9;
    --bloom: #1A3A6E;
    --silver1: #f7f8fb;
    --silver2: #cfd6df;
    --silver3: #8b93a0;
    --silver4: #3b4350;
    --shadow: 0 40px 120px rgba(0, 0, 0, .65);
    --radius: 24px;
    --radius2: 18px;
    --max: 1640px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1400px 600px at 20% -10%, rgba(255, 255, 255, .06), transparent 60%),
        radial-gradient(1200px 700px at 90% 10%, rgba(217, 241, 255, .08), transparent 55%),
        radial-gradient(900px 600px at 40% 110%, rgba(255, 255, 255, .05), transparent 55%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

/* Subtle brushed metal overlay */
.brushed-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .12;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0px, rgba(255, 255, 255, .03) 1px, rgba(0, 0, 0, 0) 7px);
    mix-blend-mode: overlay;
    filter: blur(.2px);
}

.metallic-text {
    background: linear-gradient(110deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .55), rgba(217, 241, 255, .90));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(217, 241, 255, .12);
}

.metallic-border {
    border: 1px solid rgba(217, 241, 255, .12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.glow-stroke {
    box-shadow: 0 0 0 1px rgba(217, 241, 255, .10) inset, 0 0 18px rgba(217, 241, 255, .06);
}

.glow-stroke-hover:hover {
    box-shadow: 0 0 0 1px rgba(217, 241, 255, .16) inset, 0 0 24px rgba(217, 241, 255, .10);
}

/* Navbar */
.nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 7, .55);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(217, 241, 255, .08);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
}

/* ── LOGO GLOW ── */
.brand img {
    filter:
        drop-shadow(0 0 8px rgba(74, 144, 217, 0.8)) drop-shadow(0 0 24px rgba(26, 58, 110, 0.6));
    transition: filter 0.3s ease;
}

.brand:hover img {
    filter:
        drop-shadow(0 0 12px rgba(74, 144, 217, 1.0)) drop-shadow(0 0 32px rgba(26, 58, 110, 0.8));
}

.logo-dot {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(217, 241, 255, .25));
    box-shadow: 0 12px 30px rgba(0, 0, 0, .55);
    position: relative;
    overflow: hidden;
}

.logo-dot:after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .85), transparent 55%),
        radial-gradient(circle at 60% 70%, rgba(217, 241, 255, .55), transparent 60%);
    transform: rotate(20deg);
    opacity: .55;
}

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

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(233, 238, 246, .82);
    background: rgba(11, 13, 16, .72);
    border: 1px solid rgba(217, 241, 255, .10);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
    cursor: pointer;
}

.pill:hover {
    transform: translateY(-1px);
    color: rgba(233, 238, 246, .96);
    background: rgba(11, 13, 16, .88);
    box-shadow: 0 0 0 1px rgba(217, 241, 255, .14) inset, 0 0 18px rgba(217, 241, 255, .06);
}

.pill.active {
    color: #4A90D9;
    border-color: #4A90D9;
    box-shadow: 0 0 0 1px #4A90D9 inset, 0 0 15px rgba(74, 144, 217, 0.6);
    text-shadow: 0 0 8px rgba(74, 144, 217, 0.5);
}

/* Hero */
.hero {
    position: relative;
    padding-top: 110px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 500px at 12% 20%, rgba(255, 255, 255, .09), transparent 60%),
        radial-gradient(900px 600px at 85% 10%, rgba(217, 241, 255, .12), transparent 55%);
    pointer-events: none;
}

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

@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.hero-title {
    font-family: Montserrat, Manrope, system-ui, sans-serif;
    font-size: clamp(44px, 6.2vw, 84px);
    line-height: .92;
    letter-spacing: -0.04em;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

.hero-sub {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.hero-profile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.8), 0 0 80px rgba(0, 195, 255, 0.5);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.hero-profile:hover {
    box-shadow: 0 0 0 2px rgba(0, 195, 255, 1), 0 0 100px rgba(0, 195, 255, 0.7);
    transform: scale(1.02);
}

.hero-profile .img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0%) contrast(1.1) saturate(1.1);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.hero-profile:hover .img {
    transform: scale(1.03);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(11, 13, 16, .72);
    border: 1px solid rgba(217, 241, 255, .10);
    color: rgba(233, 238, 246, .82);
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: 1px solid rgba(217, 241, 255, .14);
    background: rgba(11, 13, 16, .65);
    color: rgba(233, 238, 246, .92);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(217, 241, 255, .12) inset, 0 0 22px rgba(217, 241, 255, .08);
}

.btn.primary {
    background: linear-gradient(135deg, rgba(247, 248, 251, .95), rgba(207, 214, 223, .75));
    color: #050607;
    border: 1px solid rgba(255, 255, 255, .55);
}

.btn.primary:hover {
    box-shadow: 0 0 28px rgba(255, 255, 255, .12);
}

/* Category grid */
.section {
    padding: 36px 0 56px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px 0;
}

.section-title .line {
    width: 1px;
    height: 34px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(217, 241, 255, .35);
    border-radius: 999px;
    opacity: .85;
}

.section-title h2 {
    margin: 0;
    font-family: Montserrat, Manrope, system-ui, sans-serif;
    letter-spacing: -0.02em;
    font-weight: 900;
    font-size: 22px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .cat-card {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .cat-card h3 {
        font-size: 16px;
        color: #ffffff !important;
        opacity: 1 !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8) !important;
    }

    .cat-card .grad {
        display: none !important;
    }

    .cat-hero-card {
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }

    .cat-hero-card h1 {
        font-size: clamp(24px, 10vw, 40px) !important;
        white-space: nowrap !important;
        padding: 0 10px !important;
    }
}

.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 220px;
    cursor: pointer;
    transform: translateZ(0);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .40);
    border: 1px solid rgba(217, 241, 255, .12);
    background: rgba(11, 13, 16, .55);
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 46px 120px rgba(0, 0, 0, .58), 0 0 0 1px rgba(217, 241, 255, .14) inset;
}

.cat-card .img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.06);
    opacity: .95;
    transform: scale(1.02);
    transition: transform .8s ease;
}

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

.cat-card .grad {
    display: none;
}

.cat-card .content {
    position: relative;
    height: 100%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
}

.cat-card .bar-container {
    width: 44px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 2px;
}

.cat-card .bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cat-card:hover .bar-fill {
    width: 100% !important;
    box-shadow: 0 0 10px 2px currentColor;
}

.cat-card .kicker {
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(233, 238, 246, .74);
}

.cat-card h3 {
    margin: 0;
    font-family: Montserrat, Manrope, system-ui, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8);
}

.cat-card p {
    margin: 0;
    color: rgba(233, 238, 246, .64);
    line-height: 1.5;
    max-width: 44ch;
}

.cat-hero-card {
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 400px;
    background: #000;
}

/* Category page hero */
.cat-hero {
    position: relative;
    height: 62vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 60px 0;
    overflow: hidden;
}

.cat-hero .img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    filter: saturate(1.05) contrast(1.08);
}

.cat-hero .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 7, 0) 0%, rgba(5, 6, 7, 0) 65%, rgba(5, 6, 7, .98) 100%);
}

.cat-hero .inner {
    position: relative;
    z-index: 1;
}

.cat-hero h1 {
    margin: 0 0 12px 0;
    font-family: Montserrat, Manrope, system-ui, sans-serif;
    font-size: clamp(54px, 8vw, 110px);
    line-height: .9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.cat-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 62ch;
}

/* Projects grid */
.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 24px 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(217, 241, 255, .10);
}

.bar .label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(233, 238, 246, .44);
}

.bar .tools {
    display: flex;
    gap: 10px;
}

.bar .tool {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(233, 238, 246, .28);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 999px;
    transition: color .25s ease, background .25s ease;
}

.bar .tool:hover {
    color: rgba(217, 241, 255, .85);
    background: rgba(217, 241, 255, .06);
}

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1100px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .projects {
        grid-template-columns: 1fr;
    }
}

.project {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(11, 13, 16, .62);
    border: 1px solid rgba(217, 241, 255, .10);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    cursor: pointer;
}

.project:hover {
    transform: translateY(-6px);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .58), 0 0 0 1px rgba(217, 241, 255, .10) inset;
    border-color: rgba(217, 241, 255, .14);
}

.project .thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.project .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
    transition: transform .8s ease;
    display: block;
}

.project:hover .thumb img {
    transform: scale(1.08);
}

.project .thumb .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .10), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55));
}

.project .body {
    padding: 14px 14px 16px 14px;
}

.project .title {
    font-family: Montserrat, Manrope, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    font-size: 18px;
}

.project .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chip {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 7px 9px;
    border-radius: 999px;
    border: 1px solid rgba(217, 241, 255, .10);
    background: rgba(11, 13, 16, .60);
    color: rgba(233, 238, 246, .68);
    backdrop-filter: blur(10px);
}

.project .desc {
    margin: 0;
    color: rgba(233, 238, 246, .62);
    line-height: 1.55;
    font-size: 14px;
    min-height: 44px;
}

/* Category Page - Pill Projects */
.pill-project {
    aspect-ratio: 1;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(74, 144, 217, 0.6);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.4), inset 0 0 10px rgba(74, 144, 217, 0.2), 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.pill-project:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 144, 217, 1);
    box-shadow: 0 0 40px rgba(74, 144, 217, 0.8), inset 0 0 30px rgba(74, 144, 217, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.pill-project .bg-img {
    transition: all 0.5s ease;
    transform: scale(1);
}

.pill-project:hover .bg-img {
    transform: scale(1.05);
}

.hover-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    transform: translateX(101%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.pill-project:hover .hover-panel {
    transform: translateX(0);
}

/* Mobile Optimization */
@media (max-width: 920px) {

    .hero {
        padding-top: 240px;
    }

    .cat-page-container {
        padding-top: 240px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

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

    .hero-inner h1 {
        word-break: break-word;
        /* Prevents long names from spilling off the screen horizontally */
    }

    .resume-container {
        flex-direction: column !important;
    }

    .resume-left {
        max-width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(74, 144, 217, 0.2);
    }

    .resume-right {
        padding: 40px 20px !important;
    }
}

@media (max-width: 600px) {
    .resume-page {
        padding: 160px 16px 40px 16px !important;
    }
}

/* Force color and size active state on mobile to bypass hover requirement */
@media (max-width: 920px) {
    .pill-project .bg-img {
        transform: scale(1.05) !important;
    }

    .hero-profile .img {
        filter: grayscale(0%) contrast(1.1) saturate(1.1) !important;
        -webkit-filter: grayscale(0%) contrast(1.1) saturate(1.1) !important;
        transform: scale(1.03) !important;
        -webkit-transform: scale(1.03) !important;
    }
}

/* Also force full color for standard project grid thumbs on mobile */
@media (max-width: 920px) {
    .project .thumb img {
        filter: contrast(1.05) saturate(1.05) !important;
        transform: scale(1.08) !important;
    }
}

/* Force Webkit filters for iOS Safari compatibility and handle hover panel text */
@media (max-width: 920px) {
    .pill-project .bg-img {
        -webkit-transform: scale(1.05) !important;
        transform: scale(1.05) !important;
    }

    .project .thumb img {
        -webkit-filter: contrast(1.05) saturate(1.05) !important;
        filter: contrast(1.05) saturate(1.05) !important;
        -webkit-transform: scale(1.08) !important;
        transform: scale(1.08) !important;
    }

    .hover-panel {
        width: 100% !important;
        padding: 20px !important;
        text-align: center;
        background: rgba(0, 0, 0, 0.8) !important;
        align-items: center;
    }

    .hover-panel ul {
        align-items: center;
    }

    /* Keep AI Reel hover panel right-aligned and statically visible on mobile */
    .pill-project .hover-panel {
        width: 55% !important;
        left: 45% !important;
        text-align: left !important;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.95)) !important;
        align-items: flex-start !important;
        padding: 30px 20px !important;
        transform: translateX(0) !important;
    }

    .pill-project .hover-panel ul {
        align-items: flex-start !important;
    }
}

/* Function Nodes */
.func-node-row {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.func-node-row.even {
    justify-content: flex-start;
}

.func-node-row.odd {
    justify-content: flex-end;
}

.func-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #4A90D9;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #4A90D9;
}

.func-line {
    position: absolute;
    top: 50%;
    width: 50%;
    height: 2px;
    background: rgba(74, 144, 217, 0.2);
    z-index: -1;
}

.func-node-row.even .func-line {
    left: 0;
}

.func-node-row.odd .func-line {
    right: 0;
}

.func-card {
    width: calc(85% - 40px);
    background: linear-gradient(135deg, rgba(20, 22, 25, 0.9) 100%, rgba(10, 12, 14, 0.9) 100%);
    border: 1px solid rgba(74, 144, 217, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 920px) {
    .func-card {
        width: 100%;
        margin-bottom: 24px;
    }

    .func-dot,
    .func-line,
    .func-node-row::before {
        display: none !important;
    }

    .func-node-row {
        margin-bottom: 0;
    }
}

@media (max-width: 920px) {
    body {
        padding-top: 64px;
    }

    .nav-inner {
        height: 64px;
    }
}

/* ── Name Logo Shine Effect ── */
.name-logo-wrap {
    position: relative;
    display: inline-flex;
    -webkit-mask-image: url('images/logo.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center left;
    mask-image: url('images/logo.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center left;
}

.name-logo-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(74, 144, 217, 0.4) 20%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(74, 144, 217, 0.4) 80%,
            transparent);
    transform: skewX(-20deg);
    animation: nameShineSweep 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes nameShineSweep {
    0% {
        left: -100%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    35% {
        left: 200%;
        opacity: 1;
    }

    40% {
        left: 200%;
        opacity: 0;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

/* ── SOUNDWAVE SEPARATOR LINE ── */
.wave-sep {
    width: 100%;
    height: 40px;
    overflow: visible;
    margin: 40px auto;
    max-width: calc(var(--max) - 80px);
}

.wave-sep svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* ── UTILITIES ── */
@media (max-width: 600px) {
    .hide-on-mobile {
        display: none !important;
    }

    .mobile-badge-br {
        top: auto !important;
        bottom: 10px !important;
        left: auto !important;
        right: 10px !important;
    }

    .mobile-obj-right {
        object-position: right center !important;
    }

    .mobile-serenity-title {
        font-size: 26px !important;
        gap: 12px !important;
    }
}