/* ==========================================================================
   VYXRA About Us
   ========================================================================== */

body{
    padding-top: 0 !important;
}

.vyxra-about-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 24px !important;
    background-color: #030205;
    position: relative;
    box-sizing: border-box;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 65% 1fr;
    align-items: center;
    overflow: hidden;
}

.about-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center top;
}

.about-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(3, 2, 5, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

/* Rainbow starbursts — idle until Feel the Light hover */
.about-starburst-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.about-starburst {
    --hue: calc(var(--i) * 40deg);
    position: absolute;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    color: hsl(var(--hue), 100%, 65%);
    filter: drop-shadow(0 0 6px hsl(var(--hue), 100%, 65%))
            drop-shadow(0 0 14px hsl(var(--hue), 100%, 55%));
}

.about-starburst::before,
.about-starburst::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    border-radius: 1px;
    box-shadow: 0 0 4px currentColor;
}

/* Vertical + horizontal rays */
.about-starburst::before {
    width: 3px;
    height: 100%;
    transform: translate(-50%, -50%);
}

/* Diagonal cross */
.about-starburst::after {
    width: 100%;
    height: 3px;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 4px currentColor,
        14px -14px 0 -10px currentColor,
        -14px 14px 0 -10px currentColor,
        14px 14px 0 -10px currentColor,
        -14px -14px 0 -10px currentColor;
}

/* Scattered positions across the page */
.about-starburst:nth-child(1)  { left: 8%;  top: 12%; }
.about-starburst:nth-child(2)  { left: 22%; top: 28%; }
.about-starburst:nth-child(3)  { left: 38%; top: 8%;  }
.about-starburst:nth-child(4)  { left: 55%; top: 18%; }
.about-starburst:nth-child(5)  { left: 72%; top: 10%; }
.about-starburst:nth-child(6)  { left: 88%; top: 22%; }
.about-starburst:nth-child(7)  { left: 12%; top: 45%; }
.about-starburst:nth-child(8)  { left: 28%; top: 55%; }
.about-starburst:nth-child(9)  { left: 48%; top: 42%; }
.about-starburst:nth-child(10) { left: 65%; top: 50%; }
.about-starburst:nth-child(11) { left: 82%; top: 40%; }
.about-starburst:nth-child(12) { left: 5%;  top: 72%; }
.about-starburst:nth-child(13) { left: 25%; top: 80%; }
.about-starburst:nth-child(14) { left: 42%; top: 68%; }
.about-starburst:nth-child(15) { left: 58%; top: 78%; }
.about-starburst:nth-child(16) { left: 75%; top: 70%; }
.about-starburst:nth-child(17) { left: 92%; top: 85%; }
.about-starburst:nth-child(18) { left: 50%; top: 92%; }

@keyframes starburstTwinkle {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
    }
    35% {
        opacity: 1;
        transform: scale(1.15) rotate(25deg);
    }
    70% {
        opacity: 0.85;
        transform: scale(0.85) rotate(55deg);
    }
    100% {
        opacity: 0.35;
        transform: scale(0.4) rotate(90deg);
    }
}

/* Active via desktop hover or mobile tap (.is-feeling-light) */
.vyxra-about-container.is-feeling-light .about-starburst-layer,
.vyxra-about-container:has(.feel-the-light-glow:hover) .about-starburst-layer {
    opacity: 1;
    visibility: visible;
}

.vyxra-about-container.is-feeling-light .about-starburst,
.vyxra-about-container:has(.feel-the-light-glow:hover) .about-starburst {
    animation: starburstTwinkle 1.4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
}

@media (hover: none) {
    .vyxra-about-container:has(.feel-the-light-glow:hover) .about-starburst-layer,
    .vyxra-about-container:has(.feel-the-light-glow:hover) .about-starburst {
        /* Prefer tap toggle on touch — sticky :hover after tap is unreliable */
        animation: none;
    }

    .vyxra-about-container:has(.feel-the-light-glow:hover):not(.is-feeling-light) .about-starburst-layer {
        opacity: 0;
        visibility: hidden;
    }
}

/* @media (prefers-reduced-motion: reduce) {
    .about-starburst-layer {
        display: none;
    }
} */

.about-content-wrapper {
    grid-column: 2;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.about-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 0 40px 0;
}

.about-title-white {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.about-glitch-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.9;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 50%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    transition: transform 0.5s ease-in-out;
}

.about-glitch-title:hover{
    transform: scale(1.1) translateY(-3px);
}
.about-image-zone {
    position: relative;
    margin-bottom: 40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #9d4edd, #3c096c);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
}

.about-founder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #0c0714;
    display: block;
    position: relative;
    z-index: 3;
}

.about-image-frame-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    filter: blur(12px);
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

.about-section-header {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #9d4edd;
    letter-spacing: 3px;
    margin-top: 56px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(157, 78, 221, 0.7),
        0 0 24px rgba(157, 78, 221, 0.45),
        0 0 40px rgba(157, 78, 221, 0.25);
}

.about-section-subheader {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text-matrix {
    width: 100%;
    text-align: left;
}

.about-paragraph {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    font-weight: 300;
    line-height: 2.0;
    color: #e2daeb;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.feel-light-container {
    margin: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feel-the-light-glow {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    position: relative;
    cursor: pointer;
    background: linear-gradient(90deg, #9d4edd, #00f5ff, #9d4edd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: letter-spacing 0.45s ease;
    animation:
        gradFlow 3s linear infinite,
        lightBreathing 1.8s ease-in-out infinite alternate;
}

.feel-the-light-glow::before,
.feel-the-light-glow::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.feel-the-light-glow::before {
    color: #00f5ff;
    -webkit-text-fill-color: #00f5ff;
    text-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
}

.feel-the-light-glow::after {
    color: #9d4edd;
    -webkit-text-fill-color: #9d4edd;
    text-shadow: 0 0 12px rgba(157, 78, 221, 0.8);
}

@keyframes gradFlow {
    to { background-position: 200% center; }
}

@keyframes lightBreathing {
    0% {
        transform: scale(0.98);
        filter: drop-shadow(0 0 2px rgba(157, 78, 221, 0.4))
                drop-shadow(0 0 8px rgba(0, 245, 255, 0.3));
    }
    100% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.8))
                drop-shadow(0 0 25px rgba(0, 245, 255, 0.6));
    }
}

@keyframes lightSurge {
    0% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.9))
                drop-shadow(0 0 22px rgba(0, 245, 255, 0.7))
                drop-shadow(0 0 40px rgba(157, 78, 221, 0.45));
    }
    100% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 14px rgba(157, 78, 221, 1))
                drop-shadow(0 0 32px rgba(0, 245, 255, 0.9))
                drop-shadow(0 0 56px rgba(157, 78, 221, 0.55));
    }
}

.vyxra-about-container.is-feeling-light .feel-the-light-glow,
.feel-the-light-glow:hover {
    letter-spacing: 10px;
    animation:
        gradFlow 0.85s linear infinite,
        lightSurge 0.7s ease-in-out infinite alternate;
}

.vyxra-about-container.is-feeling-light .feel-the-light-glow::before,
.feel-the-light-glow:hover::before {
    opacity: 0.55;
    transform: translate(-3px, 1px);
}

.vyxra-about-container.is-feeling-light .feel-the-light-glow::after,
.feel-the-light-glow:hover::after {
    opacity: 0.45;
    transform: translate(3px, -1px);
}

@media (hover: none) {
    .feel-the-light-glow:hover {
        letter-spacing: 4px;
        animation:
            gradFlow 3s linear infinite,
            lightBreathing 1.8s ease-in-out infinite alternate;
    }

    .feel-the-light-glow:hover::before,
    .feel-the-light-glow:hover::after {
        opacity: 0;
        transform: none;
    }

    .vyxra-about-container.is-feeling-light .feel-the-light-glow {
        letter-spacing: 10px;
        animation:
            gradFlow 0.85s linear infinite,
            lightSurge 0.7s ease-in-out infinite alternate;
    }

    .vyxra-about-container.is-feeling-light .feel-the-light-glow::before {
        opacity: 0.55;
        transform: translate(-3px, 1px);
    }

    .vyxra-about-container.is-feeling-light .feel-the-light-glow::after {
        opacity: 0.45;
        transform: translate(3px, -1px);
    }
}

.highlight-motto {
    font-style: italic;
    color: #e2daeb;
    font-weight: 400;
    padding: 8px 0;
    margin-top: 32px;
    margin-bottom: 32px;
}

.neon-purple-text {
    color: #c77dff;
    font-weight: 600;
}

.neon-cyan-text {
    color: #00f5ff;
    font-weight: 600;
}

.about-footer-sig {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #f3effa;
    text-transform: uppercase;
    margin-top: 50px;
    justify-self: center;
}

.welcome {
    cursor: pointer;
    color: rgb(157, 78, 221);
    display: inline-block;
    text-decoration: none;
    animation: welcomePulse 2.5s ease-in-out infinite;
    transition:
        transform 0.5s ease-in-out,
        color 0.5s ease-in-out,
        text-shadow 0.5s ease-in-out;
}

@keyframes welcomePulse {
    0% {
        transform: scale(1);
        color: rgb(157, 78, 221);
        text-shadow: 0 0 0 transparent;
    }
    35% {
        transform: scale(1.15);
        color: rgb(190, 120, 255);
        text-shadow:
            0 0 15px rgb(157, 78, 221),
            0 0 30px rgba(157, 78, 221, 0.5);
    }
    60% {
        transform: scale(1.05);
        color: rgb(170, 90, 230);
        text-shadow: 0 0 8px rgb(157, 78, 221);
    }
    100% {
        transform: scale(1);
        color: rgb(157, 78, 221);
        text-shadow: 0 0 0 transparent;
    }
}

.welcome:hover {
    animation-play-state: paused;
    transform: scale(1.15);
    color: rgb(200, 130, 255);
    text-shadow:
        0 0 15px rgb(157, 78, 221),
        0 0 35px rgba(157, 78, 221, 0.6);
}

.neon-square {
    color: #9d4edd;
    display: inline-block;
    animation: aboutPulse 2s infinite ease-in-out;
}

@keyframes aboutPulse {
    0%, 100% { transform: scale(1); opacity: 1; text-shadow: 0 0 8px #9d4edd; }
    50% { transform: scale(0.95); opacity: 0.6; text-shadow: 0 0 2px #9d4edd; }
}

@media (max-width: 1024px) {
    .vyxra-about-container {
        grid-template-columns: 1fr 80% 1fr;
    }
}

@media (max-width: 768px) {
    .vyxra-about-container {
        grid-template-columns: 100%;
        padding: 60px 16px !important;
    }

    .about-content-wrapper {
        grid-column: 1;
    }

    .about-image-zone {
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }

    .about-paragraph {
        line-height: 1.8;
    }
}

/* About-only: hide navbar until scrolled past 100px */
.navbar {
    transform: translateY(-100%);
    transition: transform 1s ease, backdrop-filter 0.3s, background 0.3s;
}

.navbar.show {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
