:root {
    --bg-deep: #050d1a;
    --bg-midnight: #0a1628;
    --bg-navy: #142d4d;
    --neon-blue: #5EB3F6;
    --neon-glow: rgba(94, 179, 246, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0d4ff;
    --text-muted: #7a98b8;
    --gradient-hero: linear-gradient(135deg, #050d1a 0%, #142d4d 50%, #0a1628 100%);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.2, 0.9, 0.3, 1.35);
    --transition-smooth: all 0.46s var(--ease-premium);
    --dur-fast: 0.45s;
    --dur-medium: 0.75s;
    --dur-slow: 1.05s;
    --loop-soft: 6s;
    --loop-medium: 10s;
    --loop-slow: 16s;
    --nav-offset-desktop: 128px;
    --nav-offset-mobile: 132px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.6s ease, color 0.6s ease;
}

body.theme-cyan {
    --bg-deep: #040d1a;
    --bg-midnight: #061428;
    --bg-navy: #0d2540;
    --neon-blue: #66BBDD;
    --neon-glow: rgba(102, 187, 221, 0.35);
}

body.theme-sky {
    --bg-deep: #050f1f;
    --bg-midnight: #0a1a35;
    --bg-navy: #112f52;
    --neon-blue: #4DA6FF;
    --neon-glow: rgba(77, 166, 255, 0.32);
}

body.theme-navy {
    --bg-deep: #040d1a;
    --bg-midnight: #081622;
    --bg-navy: #0f2a45;
    --neon-blue: #0052CC;
    --neon-glow: rgba(0, 82, 204, 0.3);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 24%, rgba(94, 179, 246, 0.12), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(0, 82, 204, 0.08), transparent 36%);
    animation: ambientShift var(--loop-slow) ease-in-out infinite;
}

@keyframes ambientShift {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-14px) scale(1.03);
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(94, 179, 246, 0.1);
    z-index: 1000;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #5EB3F6, #0052CC);
    z-index: 1300;
    box-shadow: 0 0 20px rgba(94, 179, 246, 0.7);
    transition: width 0.1s linear;
}

nav.scrolled {
    background: rgba(5, 13, 26, 0.99);
    box-shadow: 0 0 25px rgba(94, 179, 246, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--neon-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    animation: navDrop 0.72s var(--ease-bounce) forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.06s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.12s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.18s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.24s;
}

.nav-links li:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(6) {
    animation-delay: 0.36s;
}

.nav-links li:nth-child(7) {
    animation-delay: 0.42s;
}

@keyframes navDrop {
    0% {
        opacity: 0;
        transform: translateY(-14px) scale(0.97);
    }

    65% {
        opacity: 1;
        transform: translateY(2px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.34s ease, text-shadow 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    display: inline-block;
    padding: 0.08rem 0.02rem;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    will-change: transform;
}

.nav-links a:focus-visible {
    outline: 2px solid rgba(0, 229, 255, 0.8);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: none;
    text-shadow: 0 0 15px rgba(94, 179, 246, 0.6), 0 0 25px rgba(0, 82, 204, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: -0.22rem -0.45rem;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 48%, rgba(94, 179, 246, 0.25), rgba(0, 82, 204, 0.08) 58%, transparent 76%);
    opacity: 0;
    transform: scale(0.84);
    filter: blur(6px);
    transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(94, 179, 246, 0), rgba(94, 179, 246, 0.9) 25%, #5EB3F6 50%, rgba(94, 179, 246, 0.9) 75%, rgba(94, 179, 246, 0));
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0.22);
    transform-origin: center;
    opacity: 0;
    box-shadow: 0 0 12px rgba(94, 179, 246, 0.5);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a.nav-click-pop {
    animation: navTextGlowTap 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a.nav-link-tap {
    animation: navTextGlowTap 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a.nav-scroll-glow {
    color: #dff5ff;
    text-shadow: 0 0 14px rgba(125, 211, 252, 0.72), 0 0 22px rgba(56, 189, 248, 0.2);
    transition: color 0.45s ease, text-shadow 0.45s ease, transform 0.45s ease;
    transform: translateY(-1px);
}

.nav-links a.nav-scroll-glow::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    animation: navFlowLine 0.95s cubic-bezier(0.22, 1, 0.36, 1), navUnderShine 1.3s ease;
}

@keyframes navFlowLine {
    0% {
        opacity: 0;
        transform: translateX(-50%) scaleX(0.3);
    }

    35% {
        opacity: 0.85;
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes navUnderShine {
    0% {
        filter: brightness(1);
    }

    45% {
        filter: brightness(1.35);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes navTextGlowTap {
    0% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
        color: var(--text-secondary);
    }

    45% {
        transform: translateY(-1px) scale(1.04);
        text-shadow: 0 0 15px rgba(125, 211, 252, 0.9), 0 0 22px rgba(56, 189, 248, 0.25);
        color: #eaf8ff;
    }

    100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
        color: inherit;
    }
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.36), rgba(95, 168, 255, 0.4));
    background-size: 160% 160%;
    background-position: 0% 50%;
    border: 1px solid rgba(0, 229, 255, 0.6);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    box-shadow: 0 8px 18px rgba(0, 229, 255, 0.3), inset 0 1px 0 rgba(162, 228, 255, 0.3);
    transition: color 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn .menu-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, filter 0.32s ease;
    will-change: transform;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.7);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.7), rgba(95, 168, 255, 0.3) 55%, transparent 72%);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.mobile-menu-btn:hover {
    color: #e8f4ff;
    border-color: rgba(0, 240, 255, 1);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.42), rgba(95, 168, 255, 0.46));
    background-size: 190% 190%;
    background-position: 100% 50%;
    box-shadow: 0 10px 22px rgba(0, 229, 255, 0.4), inset 0 1px 0 rgba(162, 228, 255, 0.4);
}

.mobile-menu-btn.active .menu-icon {
    transform: rotate(180deg) scale(0.92);
    filter: none;
}

.mobile-menu-btn:hover::before,
.mobile-menu-btn.active::before {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-btn:hover::after,
.mobile-menu-btn.active::after {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-btn.menu-btn-tap::before {
    animation: menuBoxTap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-btn.menu-btn-tap::after {
    animation: menuInsetTap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-btn.menu-btn-tap,
.mobile-menu-btn.active {
    animation: menuShimmer 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes menuBoxTap {
    0% {
        opacity: 0.3;
        transform: scale(0.86);
    }

    48% {
        opacity: 1;
        transform: scale(1.03);
    }

    100% {
        opacity: 0.72;
        transform: scale(0.99);
    }
}

@keyframes menuInsetTap {
    0% {
        opacity: 0.24;
        transform: scale(0.93);
    }

    45% {
        opacity: 0.95;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.62;
        transform: scale(1);
    }
}

@keyframes menuShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 80% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Page Sections */
.page {
    display: none;
    animation: fadeIn var(--dur-medium) var(--ease-bounce);
}

.page.active {
    display: block;
    animation: pageEnter var(--dur-slow) var(--ease-bounce) both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageEnter {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.985);
    }

    62% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Keep headings clear below fixed navbar on internal pages */
.page>.section[style*="padding-top: 8rem"] {
    padding-top: var(--nav-offset-desktop) !important;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse var(--loop-soft) ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.45rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn var(--dur-slow) var(--ease-premium);
}

.hero-text h1 span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6em;
    letter-spacing: 0.01em;
    font-weight: 600;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.hero-text .subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.75;
    animation: slideUp var(--dur-slow) ease-out 0.2s both;
}

.hero-text .intro-line {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.72;
    max-width: 62ch;
    animation: slideUp var(--dur-slow) ease-out 0.25s both;
}

.hero-text .intro-last {
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    animation: slideUp var(--dur-slow) ease-out 0.4s both;
}

/* Redesigned Hero Stats */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 480px;
    width: 100%;
    animation: slideUp var(--dur-slow) ease-out 0.5s both;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.hero-stat-card:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(5px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-glow);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Awards Detailed Text */
.hero-awards-desc {
    margin-top: 2.22rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp var(--dur-slow) ease-out 0.6s both;
}

.hero-awards-desc h4 {
    color: var(--neon-blue);
    font-size: 1.15rem;
    margin-bottom: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.hero-awards-desc p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    max-width: 62ch;
}

.awards-summary {
    font-style: italic;
    color: var(--text-primary) !important;
    opacity: 0.9;
    border-left: 3px solid var(--neon-blue);
    padding-left: 1rem;
    margin-bottom: 0 !important;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.25), transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-primary {
    background: #5EB3F6;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(94, 179, 246, 0.4);
}


.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--neon-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    animation: slideUp var(--dur-slow) ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    max-width: 320px;
    /* Smaller Wikipedia size */
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid #a2a9b1;
    background: #f8f9fa;
    padding: 4px;
    transition: var(--transition-smooth);
}

.hero-image:hover img {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 229, 255, 0.25);
}

/* Wikipedia Infobox - Adapted to Dark Theme */
.wikipedia-card {
    width: 100%;
    max-width: 330px;
    background: rgba(15, 35, 53, 0.9);
    /* Blue theme background */
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 8px;
    padding: 0;
    margin-top: 0;
    font-size: 0.82rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.4;
    text-align: left;
    overflow: hidden;
}

.wikipedia-header {
    background: var(--neon-blue);
    /* Modern neon blue header */
    color: var(--bg-deep);
    padding: 0.5rem 0.6rem;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wiki-image-wrapper {
    padding: 10px !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wiki-profile-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.wiki-image-caption {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.3;
    font-style: italic;
}

.wikipedia-table {
    width: 100%;
    border-collapse: collapse;
}

.wikipedia-table th,
.wikipedia-table td {
    padding: 0.5rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.wikipedia-table th {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle label background */
    width: 38%;
    font-weight: 700;
    color: var(--neon-blue);
    text-align: left;
}

.wikipedia-table td {
    color: var(--text-primary);
}

.wikipedia-section-header {
    background: rgba(255, 255, 255, 0.05) !important;
    text-align: center;
    font-weight: 800;
    padding: 0.4rem !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wikipedia-table a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
}

.wikipedia-table a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

.wiki-list {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style-type: none;
}

.wiki-list li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 0.8rem;
    color: var(--text-secondary);
}

.wiki-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.6rem !important;
}

.wiki-social-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: var(--transition-smooth);
}

.wiki-social-icons a:hover .wiki-social-icon {
    fill: var(--neon-blue);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

/* Ensure mobile responsiveness */
@media (max-width: 968px) {
    .wikipedia-card {
        margin: 2rem auto 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .wiki-expandable {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: -1px;
    }

    .wiki-expandable-content {
        overflow: hidden;
    }

    .wikipedia-card.expanded .wiki-expandable {
        grid-template-rows: 1fr;
    }

    .mobile-wiki-btn {
        display: block;
        width: 85%;
        margin: 1.5rem auto;
        padding: 0.95rem 1.5rem;
        background: linear-gradient(135deg, #00d4ff, #0066ff);
        color: #ffffff;
        border: none;
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: 1px;
        cursor: pointer;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        outline: none;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    }

    .mobile-wiki-btn:active {
        background: linear-gradient(135deg, #00b4ff, #0056cc);
        transform: scale(0.95);
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    }
}

@media (min-width: 769px) {
    .mobile-wiki-btn {
        display: none;
    }
}

.wiki-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wiki-list li {
    margin-bottom: 0.2rem;
}

/* Removed background card glow per user request */


.photo-frame {
    position: relative;
}

.photo-fallback {
    display: none;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.35), transparent 50%),
        linear-gradient(160deg, #0f172a, #1e293b);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    color: #e2e8f0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.photo-fallback strong {
    font-size: 2.3rem;
    letter-spacing: 2px;
    color: #fff;
}

.photo-fallback span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.photo-frame.photo-missing img {
    display: none;
}

.photo-frame.photo-missing .photo-fallback {
    display: flex;
}

.about-image .profile-photo {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 20%;
}

.about-image .photo-fallback {
    max-width: 100%;
}

.animate-in {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.88s var(--ease-premium), transform 0.88s var(--ease-bounce);
    transition-delay: var(--stagger-delay, 0s);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.985);
    }

    65% {
        opacity: 1;
        transform: translateY(-2px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--bg-midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stat-item {
    animation: softFloat 7s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: 0.35s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(4) {
    animation-delay: 1.05s;
}

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.visual-journey {
    position: relative;
    padding: 5rem 2rem;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 212, 255, 0.12), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.09), transparent 45%),
        var(--bg-deep);
    overflow: hidden;
}

.visual-journey::before,
.visual-journey::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.visual-journey::before {
    inset: -30% auto auto -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 68%);
    animation: drift var(--loop-medium) ease-in-out infinite;
}

.visual-journey::after {
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 72%);
    animation: drift var(--loop-slow) ease-in-out infinite reverse;
}

@keyframes drift {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-24px) translateX(12px);
    }
}

.visual-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.visual-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem 1rem;
    justify-items: center;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: min(300px, 100%);
    aspect-ratio: auto;
    padding: 4px;
    background: conic-gradient(from 90deg, rgba(0, 212, 255, 0.4), rgba(56, 189, 248, 0.1), rgba(0, 212, 255, 0.4));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-bounce), box-shadow 0.5s var(--ease-premium);
}

.visual-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.28);
    z-index: 2;
    pointer-events: none;
    animation: ringPulse 3.4s ease-in-out infinite;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transform: scale(1.06);
    transition: transform 1.1s ease;
    animation: kenBurns 18s ease-in-out infinite alternate;
}

.visual-card:hover img {
    transform: scale(1.12);
}

@keyframes kenBurns {
    from {
        transform: scale(1.05) translateY(0);
    }

    to {
        transform: scale(1.12) translateY(-6px);
    }
}

.visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 45%);
}

.visual-caption {
    position: absolute;
    left: 50%;
    bottom: -1.65rem;
    transform: translateX(-50%);
    color: #f8fafc;
    z-index: 2;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.visual-card:nth-child(1) {
    animation-delay: 0.05s;
}

.visual-card:nth-child(2) {
    animation-delay: 0.12s;
}

.visual-card:nth-child(3) {
    animation-delay: 0.2s;
}

.visual-card:nth-child(4) {
    animation-delay: 0.28s;
}

.visual-card:nth-child(5) {
    animation-delay: 0.36s;
}

.visual-card:nth-child(6) {
    animation-delay: 0.44s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }

    50% {
        box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
    }
}

@keyframes cardPop {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.95);
    }

    65% {
        opacity: 1;
        transform: translateY(-3px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Content Sections */
.section {
    padding: 3.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Remove excessive space between hero/spotlight and Who Is section */
.spotlight-section {
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
}

.who-is-section {
    padding-top: 0 !important;
}

.who-is-section .section-header {
    margin-bottom: 2rem;
}

/* Core Areas */
.core-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.core-card {
    background: rgba(20, 45, 77, 0.4);
    padding: 3rem 2.2rem;
    border-radius: 24px;
    border: 1px solid rgba(94, 179, 246, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(94, 179, 246, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--neon-blue);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-icon-wrap .section-icon {
    width: 32px;
    height: 32px;
    margin: 0;
}

.core-card:hover {
    transform: translateY(-12px);
    background: rgba(94, 179, 246, 0.08);
    border-color: rgba(94, 179, 246, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(94, 179, 246, 0.1);
}

.core-card:hover .card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 25px var(--neon-glow);
}

.core-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.45rem;
    font-weight: 700;
}

.btn,
.platform-btn,
.social-link,
.core-card,
.blog-card,
.video-card,
.timeline-content,
.vocal-stat,
.about-quick-card,
.about-hobby-card,
.contact-form,
.mobile-menu-btn {
    transition-timing-function: var(--ease-bounce);
}

.core-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.marketing-journey .section-header {
    margin-bottom: 2rem;
}

.journey-list-wrap {
    background: var(--bg-navy);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.journey-list-wrap p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.journey-list {
    margin: 1rem 0 1.2rem;
    padding-left: 1.25rem;
    color: var(--text-primary);
}

.journey-list li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

/* Quote Section */
.quote-section {
    padding: 3.5rem 2rem;
    background: var(--bg-midnight);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(0, 212, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.quote-author {
    color: var(--neon-blue);
    font-weight: 600;
}

/* About Page Specific */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    border: 4px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45), 0 0 45px rgba(0, 212, 255, 0.24);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(0, 212, 255, 0.45), rgba(56, 189, 248, 0.1), rgba(0, 212, 255, 0.45));
    filter: blur(1px);
    z-index: 1;
    animation: spinGlow 10s linear infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.28), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-orbit {
    position: absolute;
    inset: -26px;
    pointer-events: none;
    z-index: 3;
}

.about-orbit-item {
    position: absolute;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #e2f8ff;
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: rgba(13, 24, 41, 0.75);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    animation: floatTag 5.5s ease-in-out infinite;
}

.about-orbit-item:nth-child(1) {
    top: 12%;
    left: -10%;
}

.about-orbit-item:nth-child(2) {
    top: -6%;
    right: 12%;
    animation-delay: 0.5s;
}

.about-orbit-item:nth-child(3) {
    bottom: 6%;
    right: -10%;
    animation-delay: 1s;
}

@keyframes spinGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-panel {
    background: linear-gradient(160deg, rgba(26, 58, 82, 0.85), rgba(15, 35, 53, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 22px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.about-panel::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent 70%);
    pointer-events: none;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.about-badge {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #a0e7ff;
    background: rgba(13, 217, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.about-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin: 1.4rem 0 1.8rem;
}

.about-quick-card {
    background: rgba(15, 35, 53, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 14px;
    padding: 0.9rem;
    text-align: center;
}

.about-quick-card strong {
    display: block;
    color: var(--neon-blue);
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
}

.about-quick-card span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.highlight-box {
    background: var(--bg-navy);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--neon-blue);
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.about-panel .highlight-box {
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-left: 3px solid var(--neon-blue);
    margin: 1.3rem 0;
    padding: 1.4rem;
    border-radius: 14px;
}

.about-hobby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.about-hobby-card {
    background: rgba(15, 35, 53, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
}

.about-hobby-card h5 {
    margin-bottom: 0.45rem;
    color: #e2e8f0;
    font-size: 0.96rem;
}

.about-hobby-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Enhanced About Page Classes */
.info-section {
    margin-top: 5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(15, 35, 53, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.feature-card h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.experience-company {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.experience-role {
    color: var(--neon-blue);
    font-weight: 600;
}

.experience-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-quote {
    font-size: 1.5rem;
    text-align: center;
    padding: 3rem;
    background: var(--bg-navy);
    border-radius: 30px;
    margin-top: 4rem;
    border: 1px dashed rgba(0, 212, 255, 0.3);
    font-style: italic;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-blue), transparent);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: var(--bg-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.2);
}

.timeline-date {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content h4 {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border-radius: 50%;
    top: 2rem;
    box-shadow: 0 0 20px var(--neon-glow);
    animation: timelinePulse 2.8s ease-in-out infinite;
}

@keyframes timelinePulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0), 0 0 20px var(--neon-glow);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0.08), 0 0 24px var(--neon-glow);
    }
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

/* Vocal Page */
.vocal-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.vocal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vocal-stat {
    background: var(--bg-navy);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vocal-stat h3 {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.platform-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.platform-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(0, 212, 255, 0.18), transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.9s ease;
}

.platform-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-2px);
}

.platform-btn:hover::after {
    transform: translateX(120%);
}

.social-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    flex-shrink: 0;
    fill: currentColor;
    color: currentColor;
    animation: iconFloat 4s ease-in-out infinite;
}

.social-icon-lg {
    width: 1.4rem;
    height: 1.4rem;
}

.inline-icon {
    width: 1.1rem;
    height: 1.1rem;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
}

.menu-icon {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}

.section-icon {
    width: 1.15rem;
    height: 1.15rem;
    margin-right: 0.5rem;
    vertical-align: -2px;
    fill: currentColor;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

#blog .section {
    position: relative;
    overflow: hidden;
}

#blog .section::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.14), transparent 65%);
    filter: blur(6px);
    animation: blogGlowShift 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes blogGlowShift {

    0%,
    100% {
        transform: translateX(-6%) translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateX(6%) translateY(14px);
        opacity: 1;
    }
}

.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-navy);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: blogCardDrift 6s ease-in-out infinite;
    position: relative;
    will-change: transform;
}

.blog-card:nth-child(2n) {
    animation-delay: 0.6s;
}

.blog-card:nth-child(3n) {
    animation-delay: 1.2s;
}

@keyframes blogCardDrift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.blog-card.sky-pop {
    transform: translateY(-10px) scale(1.03) !important;
    border-color: #00f0ff !important;
    background: linear-gradient(160deg, rgba(0, 240, 255, 0.15), rgba(26, 58, 82, 0.85)) !important;
    box-shadow: 0 14px 38px rgba(0, 240, 255, 0.25), 0 6px 22px rgba(0, 0, 0, 0.25) !important;
}

.blog-card.sky-pop .blog-content h3,
.blog-card.sky-pop .blog-content p,
.blog-card.sky-pop .blog-meta {
    color: #e0f2fe !important;
}

.blog-card.sky-pop .read-more {
    color: #7dd3fc !important;
}

.card-scroll-pop {
    animation: cardScrollPop 0.76s var(--ease-bounce);
}

@keyframes cardScrollPop {
    0% {
        transform: translateY(18px) scale(0.95);
        filter: brightness(0.88);
    }

    62% {
        transform: translateY(-2px) scale(1.02);
        filter: brightness(1.1);
    }

    100% {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

.blog-card.interact-active {
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 34px rgba(56, 189, 248, 0.22) !important;
}

.interactive-flash {
    animation: tapTextGlow 0.24s ease;
}

.click-pop-flash {
    animation: premiumClickPop 0.56s var(--ease-bounce);
}

.click-text-flash {
    animation: premiumTextGlow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link.click-pop-flash,
.platform-btn.click-pop-flash {
    animation: socialBounceFlash 0.62s var(--ease-bounce);
}

.social-link.click-pop-flash .icon-wrap {
    animation: socialIconPulse 0.62s var(--ease-bounce);
}

.click-pop-flash,
.click-text-flash {
    -webkit-tap-highlight-color: transparent;
}

@keyframes premiumClickPop {
    0% {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }

    42% {
        transform: translateY(-3px) scale(1.05);
        filter: brightness(1.16);
    }

    70% {
        transform: translateY(1px) scale(0.98);
    }

    100% {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

@keyframes socialBounceFlash {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        background: var(--bg-navy);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 0 0 rgba(56, 189, 248, 0);
    }

    45% {
        transform: translateX(8px) translateY(-1px) scale(1.03);
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.18));
        border-color: rgba(125, 211, 252, 0.7);
        box-shadow: 0 14px 32px rgba(56, 189, 248, 0.28);
    }

    70% {
        transform: translateX(4px) translateY(0) scale(0.99);
    }

    100% {
        transform: translateX(0) translateY(0) scale(1);
        background: var(--bg-navy);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 0 0 rgba(56, 189, 248, 0);
    }
}

@keyframes socialIconPulse {
    0% {
        transform: scale(1);
        background: rgba(0, 212, 255, 0.08);
    }

    45% {
        transform: scale(1.14);
        background: rgba(125, 211, 252, 0.28);
    }

    100% {
        transform: scale(1);
        background: rgba(0, 212, 255, 0.08);
    }
}

@keyframes premiumTextGlow {
    0% {
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
        filter: brightness(1);
    }

    45% {
        text-shadow: 0 0 14px rgba(125, 211, 252, 0.88), 0 0 24px rgba(56, 189, 248, 0.28);
        filter: brightness(1.14);
    }

    100% {
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
        filter: brightness(1);
    }
}

@keyframes tapTextGlow {
    0% {
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
    }

    50% {
        text-shadow: 0 0 12px rgba(125, 211, 252, 0.85);
    }

    100% {
        text-shadow: 0 0 0 rgba(125, 211, 252, 0);
    }
}

.nav-links a.nav-scroll-pop {
    border-radius: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    animation: navPillPop 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navPillPop {
    0% {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }

    40% {
        transform: translateY(-2px) scale(1.08);
        filter: brightness(1.18);
    }

    70% {
        transform: translateY(1px) scale(0.985);
        filter: brightness(1.06);
    }

    100% {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-navy), var(--bg-midnight));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 8%;
    display: block;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--neon-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-article {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(165deg, rgba(26, 58, 82, 0.82), rgba(15, 35, 53, 0.9));
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 22px;
    padding: 2rem 2rem 2.2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.blog-article .blog-meta {
    display: inline-flex;
    margin-bottom: 1rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.blog-article h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.blog-article p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.blog-article-media {
    margin: 0.3rem auto 1.2rem;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    background: rgba(10, 14, 26, 0.75);
}

.blog-article-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 8%;
}

.blog-article ul {
    color: var(--text-secondary);
    margin: 0.8rem 0 1.3rem 1.2rem;
    line-height: 1.8;
}

.blog-article .back-link {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 0.92rem 0.52rem 0.52rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    background: linear-gradient(160deg, rgba(26, 58, 82, 0.88), rgba(15, 35, 53, 0.95));
    text-decoration: none;
    color: #a0e7ff;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-article .back-link::before {
    content: "\21D0";
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: 1px solid rgba(186, 230, 253, 0.8);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
}

.blog-article .back-link:hover {
    transform: translateY(-1px) scale(1.01);
    border-color: rgba(186, 230, 253, 0.68);
    box-shadow: 0 10px 24px rgba(56, 189, 248, 0.28);
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-navy);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform;
}

.social-link:hover {
    border-color: var(--neon-blue);
    transform: translateX(10px) translateY(-1px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.14);
}

.social-link .icon-wrap {
    color: var(--neon-blue);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    transition: var(--transition-smooth);
}

.social-link:hover .icon-wrap {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.08);
}

.contact-form {
    background: var(--bg-navy);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Scroll Reveal Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.85s var(--ease-bounce), transform 0.85s var(--ease-bounce);
    transition-delay: var(--stagger-delay, 0ms);
    will-change: opacity, transform;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Footer */
footer {
    background: var(--bg-midnight);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-headline {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: linear-gradient(90deg, #a0e7ff, #00f0ff, #a0e7ff);
    background-size: 180% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headlineShine 8s linear infinite;
}

@keyframes headlineShine {
    to {
        background-position: 180% center;
    }
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: socialPulse 3.8s ease-in-out infinite;
}

.footer-socials a:hover {
    background: var(--neon-blue);
    color: var(--bg-deep);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--neon-glow);
}

.footer-socials a:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-socials a:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes socialPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }

    50% {
        box-shadow: 0 0 22px rgba(0, 212, 255, 0.2);
    }
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(8, 18, 40, 0.98), rgba(6, 12, 30, 0.98));
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(186, 230, 253, 0.18);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.985);
        box-shadow: 0 22px 42px rgba(2, 6, 23, 0.55);
        transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease;
        will-change: transform, opacity;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(-10px);
        animation: none;
    }

    .nav-links.active li {
        animation: mobileNavReveal 0.62s var(--ease-bounce) forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.09s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.13s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.17s;
    }

    .nav-links.active li:nth-child(5) {
        animation-delay: 0.21s;
    }

    .nav-links.active li:nth-child(6) {
        animation-delay: 0.25s;
    }

    .nav-links.active li:nth-child(7) {
        animation-delay: 0.29s;
    }

    .nav-links.active a {
        text-shadow: 0 0 10px rgba(125, 211, 252, 0.22);
    }

    @keyframes mobileNavReveal {
        0% {
            opacity: 0;
            transform: translateY(-12px) scale(0.97);
        }

        65% {
            opacity: 1;
            transform: translateY(2px) scale(1.02);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content,
    .about-grid,
    .vocal-hero,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats-grid {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-awards-desc {
        text-align: center;
    }

    .awards-summary {
        border-left: none;
        padding-left: 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-areas,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-quick-stats,
    .about-hobby-grid {
        grid-template-columns: 1fr;
    }

    .about-orbit-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.58rem;
    }

    .about-orbit-item:nth-child(1) {
        left: -6%;
    }

    .about-orbit-item:nth-child(3) {
        right: -6%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .hero {
        padding-top: 10rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .page>.section[style*="padding-top: 8rem"] {
        padding-top: var(--nav-offset-mobile) !important;
    }

    .contact-form {
        padding: 1.6rem;
    }

    .footer-socials {
        gap: 1.1rem;
        flex-wrap: wrap;
    }

    .footer-headline {
        font-size: 1.6rem;
    }

}

@media (max-width: 480px) {
    .nav-links {
        padding: 1.2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.65rem;
    }

    .hero-text .subtitle,
    .hero-text .intro-line {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .page>.section[style*="padding-top: 8rem"] {
        padding-top: calc(var(--nav-offset-mobile) + 8px) !important;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--neon-blue), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px var(--neon-glow);
}

/* Videos Page */
.videos-shell {
    position: relative;
    overflow: hidden;
}

.videos-shell::before,
.videos-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.videos-shell::before {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 70%);
    animation: drift var(--loop-medium) ease-in-out infinite;
}

.videos-shell::after {
    width: 320px;
    height: 320px;
    right: -90px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.14), transparent 72%);
    animation: drift var(--loop-slow) ease-in-out infinite reverse;
}

.videos-intro {
    max-width: 860px;
    margin: 0 auto 2.2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.videos-intro h2 {
    margin-bottom: 1rem;
}

.videos-intro-card {
    max-width: 700px;
    margin: 0.8rem auto 0;
    padding: 1.4rem 1.5rem;
    text-align: left;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(26, 58, 82, 0.8), rgba(15, 35, 53, 0.92));
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.videos-lead,
.videos-closing {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
}

.videos-points {
    list-style: none;
    margin: 0.9rem 0 1rem;
    padding: 0;
}

.videos-points li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.52rem;
    color: #e2e8f0;
    line-height: 1.65;
}

.videos-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #00f0ff;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.video-card {
    text-decoration: none;
    color: inherit;
    background: linear-gradient(165deg, rgba(26, 58, 82, 0.88), rgba(15, 35, 53, 0.92));
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    animation: cardPop 0.9s ease both;
}

.video-card:nth-child(1) {
    animation-delay: 0.05s;
}

.video-card:nth-child(2) {
    animation-delay: 0.12s;
}

.video-card:nth-child(3) {
    animation-delay: 0.2s;
}

.video-card:nth-child(4) {
    animation-delay: 0.28s;
}

.video-card:nth-child(5) {
    animation-delay: 0.36s;
}

.video-card:nth-child(6) {
    animation-delay: 0.44s;
}

.video-card:hover {
    transform: translateY(-9px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 18px 50px rgba(56, 189, 248, 0.26), 0 10px 28px rgba(0, 0, 0, 0.3);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.short-card {
    width: 140px;
    justify-self: center;
    margin: 0 auto;
}

.short-card .video-thumb {
    width: 100%;
    margin: 0;
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.short-card .video-thumb img {
    object-fit: cover;
    border-radius: 0;
}

.short-card .video-body {
    padding: 0.75rem 0.5rem;
}

.short-card .video-body h3 {
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.short-card .video-meta {
    font-size: 0.7rem;
    margin-top: 0.3rem;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(125, 211, 252, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
}

.play-badge svg {
    width: 24px;
    height: 24px;
    fill: #7dd3fc;
    margin-left: 2px;
}

.video-body {
    padding: 1rem 1rem 1.1rem;
}

.video-body h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
    color: #e2e8f0;
}

.video-subtitle {
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 0.45rem;
}

.video-meta {
    color: #7dd3fc;
    font-size: 0.83rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .videos-intro-card {
        padding: 1.05rem 1rem;
    }

    .videos-lead,
    .videos-closing,
    .videos-points li {
        font-size: 0.95rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(26, 58, 82, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.25);
    background: rgba(26, 58, 82, 0.6);
}

.faq-item.active {
    background: rgba(26, 58, 82, 0.8);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--neon-blue);
}

.faq-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: transform 0.4s var(--ease-premium);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    fill: var(--neon-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-premium);
    opacity: 0;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.02rem;
}

/* Vocal & Creative Enhancements */
.vocal-bridge-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
}

.bridge-panel {
    background: rgba(15, 35, 53, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.08);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    text-align: left;
}

.bridge-panel:hover {
    background: rgba(26, 58, 82, 0.6);
    border-color: var(--neon-blue);
    transform: translateY(-5px);
}

.bridge-panel h4 {
    color: var(--neon-blue);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bridge-connector {
    width: 64px;
    height: 64px;
    background: var(--bg-deep);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px var(--neon-glow);
    position: relative;
    z-index: 2;
}

.bridge-icon {
    width: 32px;
    height: 32px;
    fill: var(--neon-blue);
}

.vocal-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.roadmap-card {
    background: rgba(20, 45, 77, 0.4);
    padding: 3rem 2.2rem;
    border-radius: 24px;
    border: 1px solid rgba(94, 179, 246, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.roadmap-card:hover {
    transform: translateY(-12px);
    background: rgba(94, 179, 246, 0.08);
    border-color: rgba(94, 179, 246, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(94, 179, 246, 0.1);
}

.roadmap-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.roadmap-card p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.roadmap-card:hover .card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 25px var(--neon-glow);
}


.accent-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 30px;
    color: var(--neon-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .vocal-bridge-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bridge-connector {
        margin: 0 auto;
        transform: rotate(90deg);
    }
}

/* --- Missing Animation Classes --- */
.animate-in {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.7s ease var(--stagger-delay, 0s), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger-delay, 0s);
    will-change: opacity, transform;
}
.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.sky-pop {
    animation: skyPopAnim 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes skyPopAnim {
    0% { transform: scale(1); box-shadow: none; }
    50% { transform: scale(1.03); box-shadow: 0 10px 40px rgba(94, 179, 246, 0.4); }
    100% { transform: scale(1); box-shadow: inherit; }
}
.click-text-flash {
    animation: clickTextFlash 0.36s ease;
}
.click-pop-flash {
    animation: clickPopFlash 0.36s ease;
}
@keyframes clickTextFlash {
    0% { opacity: 1; text-shadow: none; }
    50% { opacity: 0.8; text-shadow: 0 0 15px var(--neon-blue); }
    100% { opacity: 1; text-shadow: inherit; }
}
@keyframes clickPopFlash {
    0% { transform: scale(1); filter: brightness(1); }
    40% { transform: scale(0.95); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}
/* Upgrade Expandable Bio Section Styles */
.bio-expand-wrap {
    margin-top: 4rem;
    position: relative;
    border-radius: 32px;
    background: rgba(10, 22, 40, 0.4);
    border: 1px solid rgba(94, 179, 246, 0.2);
    overflow: hidden;
    transition: all 0.8s var(--ease-premium);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}

.bio-expand-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(94, 179, 246, 0.08), transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(0, 82, 204, 0.05), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.bio-expand-wrap.active {
    border-color: rgba(94, 179, 246, 0.4);
    box-shadow: 0 40px 120px rgba(94, 179, 246, 0.15);
}

.bio-expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s var(--ease-premium), padding 1s ease, opacity 0.8s ease;
    padding: 0 4rem;
    opacity: 0;
}

.bio-expand-wrap.active .bio-expand-content {
    max-height: 4500px;
    padding: 4rem;
    opacity: 1;
}

.bio-toggle-btn {
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--neon-blue);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: all 0.5s var(--ease-premium);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.bio-toggle-btn:hover {
    background: rgba(94, 179, 246, 0.12);
    color: #fff;
    letter-spacing: 0.2rem;
}

.bio-toggle-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.6s var(--ease-bounce);
}

.bio-expand-wrap.active .bio-toggle-btn {
    border-bottom: 1px solid rgba(94, 179, 246, 0.1);
}

.bio-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.bio-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.5s var(--ease-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bio-card-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(94, 179, 246, 0.3);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bio-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--neon-blue);
    transition: height 0.5s var(--ease-premium);
}

.bio-card-modern:hover::after {
    height: 100%;
}

.bio-icon-float {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--neon-blue);
    opacity: 0.03;
    filter: blur(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.bio-card-modern:hover .bio-icon-float {
    opacity: 0.08;
    transform: scale(1.4);
}

.bio-card-modern h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
}

.bio-card-modern p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.bio-journey-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px dashed rgba(94, 179, 246, 0.3);
    margin: 1.5rem 0;
}

.timeline-point {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-point::before {
    content: '';
    position: absolute;
    left: -2.7rem;
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--bg-deep);
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-glow);
}

.timeline-point h5 {
    color: var(--neon-blue);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.bio-divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
}

.div-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 179, 246, 0.3), transparent);
}

.div-diamond {
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    transform: rotate(45deg);
    box-shadow: 0 0 15px var(--neon-glow);
}

.insights-box-premium {
    padding: 3.5rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(94, 179, 246, 0.05));
    border: 1px solid rgba(94, 179, 246, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights-box-premium h4 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
}

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.premium-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.4s var(--ease-premium);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.premium-tag:hover {
    background: rgba(94, 179, 246, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tag-title {
    font-weight: 800;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.tag-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bio-list-modern {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bio-list-modern li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.bio-list-modern li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .bio-feature-grid {
        grid-template-columns: 1fr;
    }
    .bio-expand-content {
        padding: 0 2.5rem;
    }
    .bio-expand-wrap.active .bio-expand-content {
        padding: 3.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .bio-expand-content {
        padding: 0 1.5rem;
    }
    .bio-expand-wrap.active .bio-expand-content {
        padding: 2.5rem 1.5rem;
    }
    .bio-card-modern {
        padding: 2rem 1.5rem;
    }
    .insights-box-premium {
        padding: 2.5rem 1.5rem;
    }
    .premium-tag {
        width: 100%;
        max-width: 100%;
    }
    .bio-toggle-btn {
        padding: 1.5rem 1rem;
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
}

/* Spotlight Section & Card Styles */
.spotlight-section {
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.who-is-section {
    padding-top: 0;
}

.spotlight-card {
    background: linear-gradient(135deg, rgba(13, 37, 64, 0.7) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(94, 179, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    will-change: transform, border-color, box-shadow;
}

.spotlight-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(94, 179, 246, 0.25);
    transform: translateY(-5px);
}

.spotlight-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.spotlight-badge {
    background: rgba(94, 179, 246, 0.1);
    border: 1px solid rgba(94, 179, 246, 0.3);
    color: var(--neon-blue);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 10px rgba(94, 179, 246, 0.05);
}

.spotlight-heading {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-text {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.spotlight-text strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.spotlight-subtext {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.spotlight-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    z-index: 2;
}

.wave-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 120px;
    width: 100%;
    position: relative;
}

.wave-visualizer .bar {
    width: 5px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--neon-blue) 0%, #0052CC 100%);
    box-shadow: 0 0 15px var(--neon-glow);
    animation: bounceWave 1.2s ease-in-out infinite alternate;
    transform-origin: bottom;
    will-change: transform;
}

.wave-visualizer .bar-1 { height: 35px; animation-delay: 0.1s; }
.wave-visualizer .bar-2 { height: 75px; animation-delay: 0.35s; }
.wave-visualizer .bar-3 { height: 110px; animation-delay: 0.6s; }
.wave-visualizer .bar-4 { height: 55px; animation-delay: 0.2s; }
.wave-visualizer .bar-5 { height: 85px; animation-delay: 0.45s; }

.spotlight-sphere {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--neon-glow) 0%, rgba(94, 179, 246, 0.05) 50%, transparent 70%);
    filter: blur(15px);
    border-radius: 50%;
    z-index: -1;
    animation: sphereFloat 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes bounceWave {
    0% {
        transform: scaleY(0.35);
    }
    100% {
        transform: scaleY(1.05);
    }
}

@keyframes sphereFloat {
    0% {
        transform: translate(-10px, -10px) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: translate(15px, 15px) scale(1.15);
        opacity: 0.95;
    }
}

@media (max-width: 968px) {
    .spotlight-card {
        padding: 3rem;
        gap: 2.5rem;
    }
    .spotlight-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .spotlight-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem;
        gap: 2rem;
        text-align: center;
    }
    .spotlight-content {
        text-align: center;
    }
    .spotlight-badge {
        margin-inline: auto;
    }
    .spotlight-visual {
        margin-top: 0.5rem;
    }
    .wave-visualizer {
        height: 90px;
    }
    .wave-visualizer .bar-1 { height: 25px; }
    .wave-visualizer .bar-2 { height: 55px; }
    .wave-visualizer .bar-3 { height: 80px; }
    .wave-visualizer .bar-4 { height: 40px; }
    .wave-visualizer .bar-5 { height: 65px; }
}

/* NEW PREMIUM ANIMATIONS */

/* Staggered Fade Up */
.fade-up-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-up-stagger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale In on Scroll */
.scale-in-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scale-in-scroll.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Glass Glow Hover */
.glass-glow-hover {
    transition: all 0.4s ease;
}
.glass-glow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94, 179, 246, 0.25), 0 0 20px var(--neon-glow);
    border-color: rgba(94, 179, 246, 0.4) !important;
    background: linear-gradient(145deg, rgba(94, 179, 246, 0.12) 0%, rgba(0,0,0,0.3) 100%) !important;
}

/* Image wrappers for beautiful entry */
.img-reveal-wrapper {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.img-reveal-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--neon-glow);
    mix-blend-mode: overlay;
    opacity: 0.2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.img-reveal-wrapper:hover::after {
    opacity: 0;
}
.img-reveal-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.img-reveal-wrapper:hover img {
    transform: scale(1.05);
}
