:root {
    --psych-blue: #173e78;
    --psych-blue-light: #6f9fe8;
    --psych-blue-bright: #8bb8ff;
    --psych-midnight: #0d1c38;
    --psych-midnight-deep: #071225;
    --psych-gold: #c6a96b;
    --psych-cream: #f6f1e8;
}

.psychology-page {
    overflow-x: hidden;

    background:
            radial-gradient(
                    circle at 84% 8%,
                    rgba(111, 159, 232, 0.13),
                    transparent 31%
            ),
            radial-gradient(
                    circle at 12% 25%,
                    rgba(198, 169, 107, 0.12),
                    transparent 34%
            ),
            linear-gradient(
                    135deg,
                    #f8f2e7 0%,
                    #eee4d4 100%
            );
}

/* HERO */

.psychology-hero {
    position: relative;
    padding: 78px 0 84px;
}

.psychology-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
            linear-gradient(
                    90deg,
                    transparent,
                    rgba(23, 59, 120, 0.035),
                    transparent
            );
}

.psychology-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 68px;
    align-items: center;
}

.psychology-eyebrow {
    margin-bottom: 17px;

    color: var(--psych-gold);

    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.psychology-hero-copy h1 {
    max-width: 650px;
    margin-bottom: 24px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: clamp(3.6rem, 8vw, 7.2rem);
    font-weight: 400;
    line-height: 0.89;
    letter-spacing: -0.055em;
}

.psychology-lead {
    max-width: 620px;
    margin-bottom: 16px;

    color: #443f39;

    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.65;
}

.psychology-byline {
    max-width: 580px;

    color: var(--muted);

    font-size: 0.92rem;
}

.psychology-actions {
    margin-top: 30px;

    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.psychology-primary-link,
.psychology-secondary-link {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            background 0.3s ease,
            border-color 0.3s ease;
}

.psychology-primary-link {
    padding: 0 22px;
    gap: 14px;

    color: var(--psych-cream);
    background: var(--psych-blue);

    border: 1px solid rgba(198, 169, 107, 0.48);

    box-shadow:
            0 14px 34px rgba(13, 28, 56, 0.18),
            0 0 28px rgba(111, 159, 232, 0.12);
}

.psychology-primary-link:hover {
    transform: translateY(-3px);

    box-shadow:
            0 20px 44px rgba(13, 28, 56, 0.23),
            0 0 40px rgba(111, 159, 232, 0.18);
}

.psychology-secondary-link {
    padding: 0 8px;

    color: var(--psych-blue);

    border-bottom: 1px solid rgba(23, 59, 120, 0.24);
    border-radius: 0;
}

.psychology-secondary-link:hover {
    transform: translateY(-2px);
    border-color: var(--psych-gold);
}

/* BRAIN */




.brain-thoughts{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:4;
}
.brain-thoughts span {
    position: absolute;

    left: var(--x);
    top: var(--y);

    color: rgba(9, 23, 46, 0.92);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;

    opacity: 0;
    filter: blur(3px);

    text-shadow:

            0 1px 0 rgba(255, 250, 240, 0.92),

            0 0 5px rgba(255, 250, 240, 0.78),

            0 0 12px rgba(9, 23, 46, 0.18);

    animation:
            thoughtFloat
            18s
            ease-in-out
            infinite;

    animation-delay: var(--delay);
}@keyframes thoughtFloat {
     0% {
         opacity: 0;
         transform: translateY(8px) translateX(0);
         filter: blur(3px);
     }

     12% {
         opacity: 0.48;
         transform: translateY(4px) translateX(1px);
         filter: blur(1px);
     }

     30% {
         opacity: 0.78;
         transform: translateY(0) translateX(3px);
         filter: blur(0);
     }

     52% {
         opacity: 0.98;
         transform: translateY(-6px) translateX(5px);
         filter: blur(0);
     }

     72% {
         opacity: 0.62;
         transform: translateY(-10px) translateX(7px);
         filter: blur(0.5px);
     }

     88% {
         opacity: 0.22;
         transform: translateY(-13px) translateX(9px);
         filter: blur(2px);
     }

     100% {
         opacity: 0;
         transform: translateY(8px) translateX(0);
         filter: blur(3px);
     }
 }



.brain-stage-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
            radial-gradient(
                    circle,
                    rgba(111, 159, 232, 0.21),
                    rgba(23, 59, 120, 0.09) 46%,
                    transparent 72%
            );

    filter: blur(24px);

    animation: brainStageBreath 10s ease-in-out infinite;
}

.brain-image-wrap {
     position: relative;
     z-index: 2;
     width: min(92%, 690px);

     display: grid;
     place-items: center;

     transform-style: preserve-3d;
     perspective: 900px;

     transition: transform 0.32s ease-out;

     animation:
             brainImageFloat
             16s
             ease-in-out
             infinite;
 }

.brain-image-wrap::before {
    content: "";

    position: absolute;
    inset: -2% -8% -6%;
    z-index: 0;

    pointer-events: none;
    border-radius: 50%;

    background:
            radial-gradient(
                    ellipse at 50% 50%,
                    rgba(200, 167, 106, 0.10) 0%,
                    rgba(110, 168, 255, 0.09) 46%,
                    rgba(23, 59, 120, 0.13) 66%,
                    transparent 88%
            );

    filter: blur(54px);
    transform: scale(1.08);
    opacity: 0.72;
}

.brain-image-wrap::after {
    content: "";

    position: absolute;
    inset: 8% 5% 3%;
    z-index: 2;

    pointer-events: none;
    border-radius: 48%;

    background:
            radial-gradient(
                    ellipse at 50% 48%,
                    rgba(255, 242, 211, 0.18) 0%,
                    rgba(200, 167, 106, 0.10) 34%,
                    transparent 68%
            );

    filter: blur(20px);
    mix-blend-mode: screen;
    opacity: 0.60;
}

.brain-image {
    position: relative;
    z-index: 3;

    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;

    user-select: none;
    pointer-events: none;

    transform: translateZ(0) scale(1);

    transition:
            transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
            filter 0.55s ease;

    will-change: transform, filter;

    filter:
            drop-shadow(0 0 10px rgba(200, 167, 106, 0.34))
            drop-shadow(0 0 24px rgba(200, 167, 106, 0.24))
            drop-shadow(0 0 44px rgba(23, 59, 120, 0.18));
}

.brain-image-wrap:hover .brain-image,
.brain-image-wrap:focus-within .brain-image {
    transform: translateZ(26px) scale(1.025);

    filter:
            drop-shadow(0 0 14px rgba(200, 167, 106, 0.42))
            drop-shadow(0 0 30px rgba(200, 167, 106, 0.28))
            drop-shadow(0 0 56px rgba(23, 59, 120, 0.22));
}

.brain-image-glow {
    position: absolute;
    inset: 5% 0% 0%;
    z-index: 1;

    pointer-events: none;
    border-radius: 46%;

    background:
            radial-gradient(
                    ellipse at 50% 50%,
                    rgba(255, 235, 186, 0.44) 0%,
                    rgba(200, 167, 106, 0.30) 24%,
                    rgba(200, 167, 106, 0.16) 42%,
                    rgba(110, 168, 255, 0.10) 58%,
                    rgba(23, 59, 120, 0.12) 72%,
                    transparent 88%
            );

    filter: blur(42px);
    transform: scale(1.10);
    opacity: 0.82;

    transition:
            opacity 0.55s ease,
            transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
            filter 0.55s ease;

    animation:
            brainImageGlowBreath
            18s
            ease-in-out
            infinite;
}

.brain-image-wrap:hover .brain-image-glow,
.brain-image-wrap:focus-within .brain-image-glow {
    opacity: 0.96;
    transform: scale(1.18);
    filter: blur(46px) brightness(1.08);
}

@keyframes brainImageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes brainImageGlowBreath {
    0%,
    100% {
        opacity: 0.74;
        transform: scale(1.06);
        filter: blur(42px) brightness(0.98);
    }

    50% {
        opacity: 0.90;
        transform: scale(1.14);
        filter: blur(48px) brightness(1.06);
    }
}
.neural-line.is-active {
    stroke: rgba(139, 184, 255, 0.92);
    stroke-width: 1.8;

    opacity: 0.95;

    filter: url("#softGlow");
}

.neural-line.is-fading {
    opacity: 0.08;
}

.neural-node {
    fill: url("#nodeGradient");

    opacity: 0.62;

    filter: url("#softGlow");

    transition:
            opacity 0.5s ease,
            r 0.5s ease,
            filter 0.5s ease;
}

.neural-node.is-gold {
    fill: url("#goldNodeGradient");
}

.neural-node.is-active {
    opacity: 1;

    filter: url("#largeGlow");
}

.neural-pulse {
    fill: #f8f3e6;

    filter: url("#softGlow");

    opacity: 0;
}

.brain-caption {
    position: absolute;
    left: 34px;
    bottom: 28px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(246, 241, 232, 0.58);

    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brain-caption-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--psych-blue-light);

    box-shadow:
            0 0 10px var(--psych-blue-light),
            0 0 20px rgba(111, 159, 232, 0.4);

    animation: captionPulse 2.8s ease-in-out infinite;
}

/* SECTIONS */

.psychology-topics,
.psychology-observations,
.psychology-about {
    padding: 74px 0;
}

.psychology-section-header {
    margin-bottom: 30px;
    padding-top: 25px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;

    border-top: 1px solid rgba(20, 20, 20, 0.13);
}

.psychology-section-number {
    margin-bottom: 8px;

    color: var(--psych-gold);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.psychology-section-header h2,
.psychology-about-panel h2 {
    max-width: 720px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.psychology-section-header > p {
    max-width: 460px;

    color: var(--muted);
}

/* TOPIC CARDS */

.psychology-topic-list {
    display: grid;
    gap: 16px;
}

.psychology-topic-card {
    position: relative;

    min-height: 150px;
    padding: 25px 28px;

    display: grid;
    grid-template-columns: 70px 1fr 220px;
    align-items: center;
    gap: 24px;

    overflow: hidden;

    background:
            linear-gradient(
                    105deg,
                    rgba(255, 250, 240, 0.9),
                    rgba(247, 244, 238, 0.74)
            );

    border: 1px solid rgba(23, 59, 120, 0.13);
    border-radius: 26px;

    box-shadow:
            0 18px 42px rgba(13, 28, 56, 0.075);

    transition:
            transform 0.35s ease,
            border-color 0.35s ease,
            box-shadow 0.35s ease;
}

.psychology-topic-card:hover {
    transform: translateY(-4px);

    border-color: rgba(198, 169, 107, 0.58);

    box-shadow:
            0 25px 60px rgba(13, 28, 56, 0.12);
}

.topic-index {
    color: rgba(23, 59, 120, 0.38);

    font-family: var(--serif);
    font-size: 2rem;
}

.topic-content h3 {
    margin-bottom: 8px;

    color: var(--psych-blue);

    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.topic-content p {
    max-width: 660px;

    color: #5a554e;
}

.topic-neural {
    position: relative;

    width: 180px;
    height: 70px;

    justify-self: end;
}

.topic-neural::before,
.topic-neural::after {
    content: "";
    position: absolute;

    height: 1px;

    background: linear-gradient(
            90deg,
            transparent,
            rgba(111, 159, 232, 0.74),
            rgba(198, 169, 107, 0.82),
            transparent
    );

    transform-origin: left center;

    transition:
            opacity 0.4s ease,
            transform 0.4s ease;
}

.topic-neural::before {
    width: 130px;

    left: 20px;
    top: 24px;

    transform: rotate(8deg);
}

.topic-neural::after {
    width: 110px;

    left: 35px;
    top: 48px;

    transform: rotate(-7deg);
}

.topic-neural span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--psych-blue-light);

    box-shadow:
            0 0 10px rgba(111, 159, 232, 0.7);
}

.topic-neural span:nth-child(1) {
    left: 20px;
    top: 20px;
}

.topic-neural span:nth-child(2) {
    left: 74px;
    top: 31px;
}

.topic-neural span:nth-child(3) {
    right: 26px;
    top: 42px;

    background: var(--psych-gold);

    box-shadow:
            0 0 10px rgba(198, 169, 107, 0.72);
}

.topic-neural span:nth-child(4) {
    left: 47px;
    bottom: 8px;
}

.psychology-topic-card:hover .topic-neural span {
    animation: topicNodePulse 1.4s ease-in-out infinite alternate;
}

/* OBSERVATIONS */

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

.observation-card {
    min-height: 270px;
    padding: 26px;

    display: flex;
    flex-direction: column;

    background:
            radial-gradient(
                    circle at 84% 10%,
                    rgba(111, 159, 232, 0.16),
                    transparent 34%
            ),
            linear-gradient(
                    145deg,
                    var(--psych-midnight),
                    var(--psych-midnight-deep)
            );

    border: 1px solid rgba(198, 169, 107, 0.26);
    border-radius: 28px;

    box-shadow:
            0 23px 60px rgba(13, 28, 56, 0.16);

    transition:
            transform 0.35s ease,
            border-color 0.35s ease;
}

.observation-card:hover {
    transform: translateY(-5px);

    border-color: rgba(198, 169, 107, 0.62);
}

.observation-label {
    margin-bottom: 34px;

    color: var(--psych-gold);

    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.observation-card h3 {
    margin-bottom: 14px;

    color: var(--psych-cream);

    font-family: var(--serif);
    font-size: 1.62rem;
    font-weight: 400;
    line-height: 1.15;
}

.observation-card p {
    margin-top: auto;

    color: rgba(246, 241, 232, 0.67);

    font-size: 0.92rem;
}

/* ABOUT */

.psychology-about-panel {
    padding: 40px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;

    background:
            linear-gradient(
                    145deg,
                    rgba(255, 250, 240, 0.88),
                    rgba(247, 241, 231, 0.72)
            );

    border: 1px solid rgba(23, 59, 120, 0.14);
    border-radius: 32px;

    box-shadow:
            0 24px 70px rgba(13, 28, 56, 0.09);
}

.psychology-about-panel p {
    color: #514c45;

    font-size: 1.02rem;
}

.psychology-disclaimer {
    margin-top: 20px;
    padding-top: 18px;

    color: var(--muted) !important;

    font-size: 0.76rem !important;

    border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.psychology-footer {
    margin-top: 32px;
}

/* ANIMATIONS */

@keyframes brainStageBreath {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.62;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.94;
    }
}
@keyframes anatomicalBrainFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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


@keyframes topicNodePulse {
    0% {
        opacity: 0.45;
        transform: scale(0.82);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* RESPONSIVE */

@media (max-width: 980px) {

    .psychology-hero-grid {
        grid-template-columns: 1fr;
    }

    .brain-stage {
        min-height: 480px;
    }

    .psychology-topic-card {
        grid-template-columns: 55px 1fr;
    }

    .topic-neural {
        display: none;
    }

    .observation-grid {
        grid-template-columns: 1fr;
    }

    .psychology-about-panel {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {

    .psychology-hero {
        padding: 48px 0 54px;
    }

    .psychology-hero-grid {
        gap: 40px;
    }

    .psychology-hero-copy h1 {
        font-size: clamp(3.4rem, 18vw, 5.2rem);
    }

    .brain-stage {
        min-height: 390px;
        border-radius: 28px;
    }

    .brain-caption {
        left: 24px;
        bottom: 20px;
    }

    /* floating thought labels */



    .brain-stage:hover .brain-thoughts span {
        color: rgba(9, 23, 46, 1);

        text-shadow:
                0 1px 0 rgba(255, 250, 240, 1),
                0 0 7px rgba(255, 250, 240, 0.9),
                0 0 16px rgba(23, 59, 120, 0.22);
    }


    .psychology-section-header {
        display: block;
    }

    .psychology-section-header > p {
        margin-top: 16px;
    }

    .psychology-topic-card {
        min-height: auto;
        padding: 23px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .topic-index {
        font-size: 1.3rem;
    }

    .psychology-about-panel {
        padding: 26px;
        border-radius: 24px;
    }

}

@media (prefers-reduced-motion: reduce){

    .brain-stage-glow,
    .brain-image-wrap,
    .brain-image-glow,
    .brain-thoughts span,
    .brain-caption-dot,
    .topic-neural span{

        animation:none!important;
        transition:none!important;

    }

}
/*======================================================
                    PSYCHOLOGY VAULT
======================================================*/

.psychology-vault {
    position: relative;
    overflow: hidden;

    margin: 34px 18px 60px;
    padding: 140px 0;

    border-radius: 52px;
    border-top: 1px solid rgba(198, 169, 107, 0.22);

    background:
            radial-gradient(
                    circle at 20% 15%,
                    rgba(62, 115, 255, 0.18),
                    transparent 30%
            ),
            radial-gradient(
                    circle at 80% 80%,
                    rgba(0, 170, 255, 0.12),
                    transparent 35%
            ),
            linear-gradient(
                    180deg,
                    #071225 0%,
                    #061124 38%,
                    #081a37 100%
            );

    box-shadow:
            0 -18px 44px rgba(13, 28, 56, 0.10),
            0 -3px 12px rgba(198, 169, 107, 0.07);
}

@media (max-width: 720px) {
    .psychology-vault {
        margin: 22px 8px 44px;
        padding: 80px 0;
        border-radius: 34px;
    }

    .vault-experience {
        min-height: 620px;
        padding: 54px 22px;
        border-radius: 28px;
    }

    .vault-center h3 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .vault-center p {
        font-size: 1rem;
        line-height: 1.75;
    }
}


.vault-experience{

    position:relative;
    overflow:hidden;

    min-height:760px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:42px;

    border:1px solid
    rgba(255,255,255,.05);
    padding:90px;

    background:

            linear-gradient(
                    145deg,
                    rgba(255,255,255,.015),
                    rgba(255,255,255,.02)
            );

    box-shadow:

            inset 0 0 0 1px
            rgba(255,255,255,.03),

            0 40px 120px
            rgba(0,0,0,.45);

}

.vault-background{

    position:absolute;
    inset:0;

    overflow:hidden;

}

.nebula{

    position:absolute;

    border-radius:50%;

    filter:blur(130px);

    animation:
            breathe
            16s
            ease-in-out
            infinite;

}

.nebula-1{

    width:520px;
    height:520px;

    left:-180px;
    top:-120px;

    background:

            rgba(56,132,255,.26);

}

.nebula-2{

    width:430px;
    height:430px;

    right:-100px;
    bottom:-80px;

    background:

            rgba(0,120,255,.20);

    animation-delay:5s;

}

.nebula-3{

    width:300px;
    height:300px;

    left:50%;
    top:45%;

    transform:
            translate(-50%,-50%);

    background:

            rgba(84,161,255,.10);

    animation-delay:10s;

}

@keyframes breathe{

    0%,100%{

        transform:
                scale(1);

        opacity:.35;

    }

    50%{

        transform:
                scale(1.18);

        opacity:.75;

    }

}
.vault-background {
    z-index: 1;
}

#vaultCanvas {
    z-index: 2;
}

.vault-center {
    position: relative;
    z-index: 10;


    }
    .vault-badge{

        display:inline-flex;

        align-items:center;

        justify-content:center;

        padding:

                10px
                18px;

        margin-bottom:28px;

        border-radius:999px;

        color:#84B7FF;

        font-size:.72rem;

        font-weight:700;

        letter-spacing:.25em;

        text-transform:uppercase;

        background:

                rgba(86,146,255,.08);

        border:

                1px solid
                rgba(86,146,255,.25);

    }
    .vault-center h3{

        font-family:var(--serif);

        font-size:

                clamp(3.8rem,6vw,5.7rem);

        line-height:.95;

        font-weight:400;

        color:white;

        margin-bottom:30px;

    }

    .vault-center p{

        width:min(600px,100%);

        margin:0 auto 48px;

        color:

                rgba(255,255,255,.72);

        font-size:1.15rem;

        line-height:1.9;

    }
    .vault-enter{

        display:inline-flex;

        align-items:center;

        gap:18px;

        padding:

                20px
                36px;

        border-radius:999px;

        text-decoration:none;

        color:white;

        font-weight:700;

        letter-spacing:.14em;

        text-transform:uppercase;

        border:

                1px solid
                rgba(111,170,255,.22);

        background:

                linear-gradient(
                        135deg,

                        rgba(50,115,255,.20),

                        rgba(10,35,80,.55)
                );

        transition:

                .45s;

        box-shadow:

                0 0 30px
                rgba(80,140,255,.10);

    }

    .vault-enter:hover{

        transform:

                translateY(-4px)
                scale(1.03);

        box-shadow:

                0 0 70px
                rgba(86,150,255,.38);

    }

    .vault-enter span{

        transition:.4s;

    }

    .vault-enter:hover span{

        transform:

                translateX(8px);

    }
/*=========================================
        FLOATING PARTICLES
=========================================*/

/*=========================================
                LIGHT RAYS
=========================================*/

.vault-experience::before{

    content:"";

    position:absolute;

    inset:-40%;

    background:

            conic-gradient(

                    from 180deg,

                    transparent,

                    rgba(90,150,255,.05),

                    transparent,

                    rgba(90,150,255,.03),

                    transparent

            );

    animation:

            rotateGlow 60s linear infinite;

}

@keyframes rotateGlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}
/*=========================================
              SHIMMER
=========================================*/
.vault-experience::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;
    pointer-events: none;

    border-radius: inherit;

    background:
            linear-gradient(
                    115deg,
                    transparent 18%,
                    rgba(255, 255, 255, 0.08) 46%,
                    transparent 72%
            );

    transform:
            translateX(-150%);
}

.vault-experience:hover::after {
    animation:
            shimmer
            1.8s
            ease;
}

@keyframes shimmer{

    from{

        transform:

                translateX(-150%);

    }

    to{

        transform:

                translateX(170%);

    }

}

#vaultCanvas{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    z-index:2;

    pointer-events:none;

}
.vault-center {
    position: relative;
    z-index: 16;

    width: min(760px, 92%);

    text-align: center;

    padding: 0;

    background: transparent;
    border: none;
    border-radius: 0;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow: none;
}

.vault-center::before {
    content: "";

    position: absolute;
    z-index: -1;

    left: 50%;
    top: 50%;

    width: 125%;
    height: 125%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    background:
            radial-gradient(
                    ellipse at center,
                    rgba(7, 18, 37, 0.78) 0%,
                    rgba(7, 18, 37, 0.52) 38%,
                    rgba(7, 18, 37, 0.20) 66%,
                    rgba(7, 18, 37, 0) 100%
            );

    filter: blur(50px);
}