/* SYNCODES 2026 - Premium Dark Theme CSS */

/* --- 1. DESIGN TOKENS --- */
:root {
    --bg-primary: #010409;
    --bg-secondary: #0d1117;
    --bg-card: rgba(13, 17, 23, 0.7);
    --bg-glass: rgba(13, 17, 23, 0.45);

    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --amber-400: #fbbf24;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    --border-subtle: rgba(192, 132, 252, 0.15);
    --border-glow: rgba(192, 132, 252, 0.5);
    --border-cyan: rgba(34, 211, 238, 0.4);

    --grad-purple: linear-gradient(135deg, #a855f7, #c084fc);
    --grad-cyan: linear-gradient(135deg, #06b6d4, #22d3ee);
    --grad-hero: linear-gradient(135deg, #a855f7 0%, #f472b6 40%, #22d3ee 80%, #34d399 100%);
    --grad-card: linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(34,211,238,0.1) 100%);
    --grad-border: linear-gradient(135deg, rgba(168,85,247,0.7), rgba(244,114,182,0.5), rgba(34,211,238,0.4));

    --shadow-glow-purple: 0 0 50px rgba(168,85,247,0.4);
    --shadow-glow-cyan: 0 0 50px rgba(34,211,238,0.4);
    --shadow-card: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(192,132,252,0.15);
    --shadow-card-hover: 0 12px 70px rgba(168,85,247,0.45), 0 0 0 1px rgba(192,132,252,0.5);
    --shadow-xl: 0 24px 100px rgba(0,0,0,0.8);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.25, 1.5, 0.5, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body {
    font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% -10%, rgba(124,58,237,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 110%, rgba(6,182,212,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(16,185,129,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
::selection { background: rgba(139,92,246,0.45); color: #fff; }

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight-text {
    background: var(--grad-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- 4. LAYOUT --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 110px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(139,92,246,0.1);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-400);
    margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text-primary); margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* --- 5. GLASS PANEL --- */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(36px) saturate(200%);
    -webkit-backdrop-filter: blur(36px) saturate(200%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--grad-card);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
    z-index: 0;
}
.glass-panel > * { position: relative; z-index: 1; }
.glass-panel:hover::before { opacity: 1; }
.glass-panel:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    transition: all 0.4s var(--ease-out);
}

/* --- 6. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    border: none;
}
.btn-primary {
    background: var(--grad-purple);
    color: #fff;
    box-shadow: 0 6px 24px rgba(168,85,247,0.4);
    transform: translateY(0);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(168,85,247,0.6), 0 0 0 2px rgba(192,132,252,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-glow);
}
.btn-outline:hover {
    background: rgba(139,92,246,0.12);
    border-color: var(--purple-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
}
.btn-shine {
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: btn-shine 3s infinite 1s;
}
@keyframes btn-shine { 0% { left: -75%; } 30% { left: 125%; } 100% { left: 125%; } }
.btn-arrow { transition: transform 0.3s var(--ease-spring); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --- 7. CUSTOM CURSOR --- */
.cursor-glow {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--purple-400);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 10px rgba(139,92,246,0.8);
}
.cursor-trail {
    width: 28px; height: 28px;
    border: 1.5px solid rgba(139,92,246,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s;
}

/* --- 8. AMBIENT ORBS --- */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}
.orb-1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(168,85,247,0.4), transparent 60%);
    top: -250px; left: -250px;
    animation: orb-drift 14s ease-in-out infinite alternate;
}
.orb-2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(6,182,212,0.35), transparent 60%);
    bottom: -200px; right: -200px;
    animation: orb-drift 12s ease-in-out infinite alternate-reverse;
}
.orb-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(244,114,182,0.25), transparent 60%);
    top: 40%; left: 40%;
    animation: orb-drift 18s ease-in-out infinite alternate;
}
@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(60px, -30px) scale(1.1) rotate(45deg); }
    100% { transform: translate(-30px, 60px) scale(1.2) rotate(90deg); }
}

/* --- 9. GRID OVERLAY --- */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* --- 10. NAVBAR --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2,8,23,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.logo-bracket { color: var(--purple-400); }
.logo:hover { opacity: 0.85; filter: drop-shadow(0 0 12px rgba(139,92,246,0.6)); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    position: relative;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--grad-purple);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text-primary); background: rgba(139,92,246,0.1); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link.active { color: var(--text-primary); }
.cta-link {
    background: var(--grad-purple) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
}
.cta-link::after { display: none !important; }
.cta-link:hover { box-shadow: 0 4px 24px rgba(139,92,246,0.5); transform: translateY(-1px); background: linear-gradient(135deg,#8b5cf6,#c4b5fd) !important; }
.cta-pulse {
    position: absolute;
    top: -2px; right: -2px;
    width: 8px; height: 8px;
    background: var(--cyan-400);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s var(--ease-out); }

/* --- 11. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    text-align: center;
}
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,1) 0%, transparent 80%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139,92,246,0.1);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-400);
    margin-bottom: 32px;
    animation: fade-in-down 0.8s var(--ease-out) both;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52,211,153,0.8);
}
@keyframes badge-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.hero-title {
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title-line {
    display: block;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(139,92,246,0.5));
    animation: fade-in-up 0.9s var(--ease-out) 0.1s both;
}
.title-year {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.45em;
    letter-spacing: 0.2em;
    background: none;
    -webkit-text-fill-color: var(--text-secondary);
    color: var(--text-secondary);
    margin-top: 8px;
    filter: none;
    animation: fade-in-up 0.9s var(--ease-out) 0.2s both;
}
.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    animation: fade-in-up 0.9s var(--ease-out) 0.3s both;
}
.tagline-word { display: inline-block; }
.tagline-separator { color: var(--purple-400); margin: 0 10px; }
.hero-powered {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 52px;
    animation: fade-in-up 0.9s var(--ease-out) 0.4s both;
}
.countdown-wrapper {
    margin-bottom: 52px;
    animation: fade-in-up 0.9s var(--ease-out) 0.5s both;
}
.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.label-icon { font-size: 1rem; }
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.time-unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.time-card {
    position: relative;
    width: 88px; height: 88px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-glow-purple), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.3s var(--ease-spring);
}
.time-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.15), transparent 60%);
}
.time-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-purple);
    opacity: 0.5;
}
.time-card:hover { border-color: var(--purple-400); box-shadow: 0 0 35px rgba(139,92,246,0.5); transform: translateY(-3px) scale(1.03); }
.time-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-shadow: 0 0 20px rgba(139,92,246,0.5);
}
.time-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.time-separator { font-size: 2rem; font-weight: 700; color: var(--purple-400); line-height: 1; margin-top: -20px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0.2; } }
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fade-in-up 0.9s var(--ease-out) 0.6s both;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fade-in-up 0.9s var(--ease-out) 0.7s both;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-mouse {
    width: 24px; height: 40px;
    border: 1.5px solid rgba(139,92,246,0.4);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--purple-400);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; } 80% { transform: translateX(-50%) translateY(16px); opacity: 0; } }

/* --- 12. STATS BAR --- */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(2,8,23,0.7);
    backdrop-filter: blur(20px);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
}
.stat-item {
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
}
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-hero);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-item:hover { background: rgba(139,92,246,0.06); }
.stat-divider { width: 1px; background: var(--border-subtle); align-self: stretch; margin: 20px 0; }
.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 800;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-suffix { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; background: var(--grad-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; margin-top: 8px; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }

/* --- 13. SECTION ANIMATIONS --- */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.animate-pop { animation: pop-in 0.6s var(--ease-spring) both; }
@keyframes pop-in { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes fade-in-down { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* --- 14. ABOUT SECTION --- */
.about-section { background: transparent; }
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-main {
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out);
}
.about-main:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); }
.code-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}
.code-dots { display: flex; gap: 7px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; box-shadow: 0 0 6px rgba(255,95,87,0.5); }
.dot.yellow { background: #febc2e; box-shadow: 0 0 6px rgba(254,188,46,0.5); }
.dot.green { background: #28c840; box-shadow: 0 0 6px rgba(40,200,64,0.5); }
.code-filename { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.05em; }
.about-text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.85; }
.about-text:last-child { margin-bottom: 0; }
.about-text strong { color: var(--purple-400); font-weight: 600; }
.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-card {
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.35s var(--ease-out);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.highlight-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); transform: translateX(6px); }
.highlight-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple-400);
    transition: all 0.3s var(--ease-spring);
}
.highlight-icon.icon-purple { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); color: var(--purple-400); }
.highlight-icon.icon-emerald { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: var(--emerald-400); }
.highlight-icon.icon-amber { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.25); color: var(--amber-400); }
.highlight-card:hover .highlight-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 20px rgba(139,92,246,0.3); }
.highlight-card h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: 5px; }
.highlight-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* --- 15. FEATURES SECTION --- */
.features-section { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,92,246,0.07) 0%, transparent 60%); }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.feature-card {
    padding: 38px;
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out);
    cursor: default;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.feature-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap { position: relative; display: inline-block; margin-bottom: 22px; }
.feature-icon {
    width: 58px; height: 58px;
    border-radius: var(--radius-md);
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    transition: all 0.3s var(--ease-spring);
}
.feature-icon.icon-purple { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); color: var(--purple-400); }
.feature-icon.icon-emerald { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: var(--emerald-400); }
.feature-icon.icon-amber { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.25); color: var(--amber-400); }
.feature-glow { position: absolute; inset: 0; border-radius: inherit; background: rgba(139,92,246,0.3); filter: blur(16px); opacity: 0; transition: opacity 0.3s; z-index: -1; }
.feature-glow.glow-purple { background: rgba(139,92,246,0.3); }
.feature-glow.glow-emerald { background: rgba(16,185,129,0.3); }
.feature-glow.glow-amber { background: rgba(251,191,36,0.3); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 24px rgba(139,92,246,0.4); }
.feature-card:hover .feature-glow { opacity: 1; }
.feature-card h3 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }
.feature-tag { display: inline-block; margin-top: 18px; padding: 5px 14px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25); border-radius: var(--radius-full); font-size: 0.74rem; font-weight: 600; color: var(--cyan-400); letter-spacing: 0.05em; }
.perks-strip { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.perk-pill:hover { border-color: var(--border-glow); color: var(--text-primary); transform: translateY(-2px); box-shadow: var(--shadow-glow-purple); }
.perk-icon { font-size: 1.1rem; }

/* --- 16. EVENT BANNER --- */
.event-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 36px 48px;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}
.banner-gradient-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-hero);
}
.event-detail { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.detail-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: rgba(139,92,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    margin-bottom: 4px;
}
.detail-icon.icon-active { background: rgba(16,185,129,0.1); color: var(--emerald-400); }
.detail-icon.icon-price { background: rgba(251,191,36,0.1); color: var(--amber-400); }
.detail-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.detail-value { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); }
.neon-active { display: flex; align-items: center; gap: 8px; color: var(--emerald-400) !important; }
.active-dot { width: 8px; height: 8px; background: var(--emerald-400); border-radius: 50%; animation: pulse-ring 2s infinite; box-shadow: 0 0 8px rgba(52,211,153,0.8); }
.banner-divider { width: 1px; height: 60px; background: var(--border-subtle); }

/* --- 17. TIMELINE SECTION --- */
.timeline-section { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(6,182,212,0.07) 0%, transparent 60%); }
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline-line {
    position: absolute;
    left: 30px; top: 40px; bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border-subtle), var(--border-subtle));
    border-radius: 2px;
    overflow: hidden;
}
.timeline-line-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--purple-600), var(--cyan-500), var(--emerald-500));
    border-radius: 2px;
    transition: height 0.8s var(--ease-out);
}
.timeline-item {
    display: flex;
    gap: 32px;
    padding: 0 0 40px 0;
    align-items: flex-start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}
.marker-ring {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(139,92,246,0.3);
    animation: ring-pulse 3s ease-in-out infinite;
}
.marker-ring.ring-purple { border-color: rgba(139,92,246,0.4); }
@keyframes ring-pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.2; } }
.marker-step {
    position: relative;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--purple-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--purple-400);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(139,92,246,0.1), var(--shadow-glow-purple);
    transition: all 0.3s var(--ease-spring);
}
.timeline-item:hover .marker-step { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(139,92,246,0.2), 0 0 24px rgba(139,92,246,0.5); }
.timeline-card {
    flex: 1;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    transition: all 0.35s var(--ease-out);
}
.timeline-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); transform: translateX(8px); }
.timeline-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.timeline-card h3 { font-size: 1.15rem; color: var(--text-primary); }
.timeline-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.timeline-status {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-400);
}
.timeline-status.status-phase { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.25); color: var(--cyan-400); }
.timeline-status.status-intense { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.25); color: var(--pink-500); }
.timeline-status.status-elite { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: var(--emerald-400); }
.card-final { border-color: rgba(139,92,246,0.25); }

/* --- 18. FAQ SECTION --- */
.faq-section { background: transparent; }
.faq-grid { max-width: 720px; margin: 0 auto; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}
.accordion-item:hover { border-color: var(--border-glow) !important; }
.accordion-item.open { border-color: rgba(139,92,246,0.4) !important; box-shadow: 0 4px 28px rgba(139,92,246,0.18) !important; }
.accordion-trigger {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.accordion-question { font-size: 0.98rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.accordion-icon {
    width: 26px; height: 26px;
    flex-shrink: 0;
    position: relative;
    border: 1.5px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}
.open .accordion-icon { background: var(--grad-purple); border-color: transparent; transform: rotate(45deg); }
.icon-bar {
    position: absolute;
    width: 12px; height: 1.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}
.icon-bar.vertical { transform: rotate(90deg); }
.open .icon-bar { background: #fff; }
.accordion-body {
    height: 0;
    overflow: hidden;
    transition: height 0.35s var(--ease-out);
}
.accordion-content { padding: 0 28px 22px; }
.accordion-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }

/* --- 19. NOTIFY SECTION --- */
.notify-section {
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 70%);
}
.notify-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border-radius: var(--radius-xl) !important;
    position: relative;
    overflow: hidden;
}
.notify-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-hero);
}
.notify-visual { position: relative; margin-bottom: 28px; display: inline-block; }
.notify-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.ring-1 { width: 80px; height: 80px; border-color: rgba(139,92,246,0.3); animation: ring-expand 2.5s ease-out infinite; }
.ring-2 { width: 110px; height: 110px; border-color: rgba(139,92,246,0.2); animation: ring-expand 2.5s ease-out 0.5s infinite; }
.ring-3 { width: 140px; height: 140px; border-color: rgba(139,92,246,0.1); animation: ring-expand 2.5s ease-out 1s infinite; }
@keyframes ring-expand { from { transform: translate(-50%,-50%) scale(0.8); opacity: 1; } to { transform: translate(-50%,-50%) scale(1.2); opacity: 0; } }
.notify-bell {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(139,92,246,0.15);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    position: relative;
    z-index: 1;
    animation: bell-ring 3s ease-in-out infinite;
}
@keyframes bell-ring { 0%,100% { transform: rotate(0); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-10deg); } 30% { transform: rotate(10deg); } 40% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } 60% { transform: rotate(0); } }
.notify-title { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.notify-desc { font-size: 1rem; color: var(--text-secondary); margin-bottom: 36px; line-height: 1.7; }
.notify-form { width: 100%; }
.form-group { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon { position: absolute; left: 16px; color: var(--text-muted); pointer-events: none; }
.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    background: rgba(2,8,23,0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}
.input-wrapper input:focus { border-color: var(--border-glow); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.input-wrapper input::placeholder { color: var(--text-muted); }
.btn-submit { white-space: nowrap; }
.btn-success { display: none; }
.btn-submit.success .btn-text { display: none; }
.btn-submit.success .btn-success { display: inline; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }

/* --- 20. SYNALPY SECTION --- */
.synalpy-section { background: transparent; }
.synalpy-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 52px;
    text-align: center;
    border-radius: var(--radius-xl) !important;
    transition: all 0.4s var(--ease-out);
}
.synalpy-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); }
.synalpy-brand { margin-bottom: 24px; }
.synalpy-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.synalpy-underline {
    width: 60px; height: 3px;
    background: var(--grad-purple);
    border-radius: var(--radius-full);
    margin: 12px auto 0;
}
.synalpy-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }
.synalpy-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.synalpy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(139,92,246,0.08);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
}
.synalpy-link:hover { background: rgba(139,92,246,0.15); border-color: var(--border-glow); color: var(--text-primary); transform: translateY(-2px); }

/* --- 21. FOOTER --- */
.site-footer {
    background: rgba(2,8,23,0.95);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 32px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-hero);
    opacity: 0.4;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: start; }
.footer-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-year { color: var(--text-muted); font-size: 0.9em; margin-left: 6px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.footer-nav a:hover { color: var(--text-primary); transform: translateX(4px); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
}
.footer-link:hover { color: var(--purple-400); transform: translateX(4px); }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid var(--border-subtle); font-size: 0.82rem; color: var(--text-muted); }

/* --- 22. RESPONSIVE --- */
/* --- 18. MENTORS SECTION --- */
.mentors-section { background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.06) 0%, transparent 60%); }
.mentors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-bottom: 40px; }
.mentor-card {
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.mentor-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-card-hover); transform: translateY(-8px); }
.mentor-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-hero);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}
.mentor-card:hover::after { transform: scaleX(1); }
.mentor-avatar-wrap { position: relative; width: 90px; height: 90px; margin-bottom: 12px; }
.mentor-avatar {
    width: 100%; height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease-spring);
}
.avatar-purple { background: var(--grad-purple); }
.avatar-cyan { background: var(--grad-cyan); }
.mentor-card:hover .mentor-avatar { transform: scale(1.1) rotate(5deg); }
.mentor-glow {
    position: absolute; inset: -10px;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.5;
    z-index: 0;
    transition: opacity 0.4s;
}
.mentor-card:hover .mentor-glow { opacity: 0.8; }
.mentor-info h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 6px; }
.mentor-role { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-400); display: block; margin-bottom: 18px; }
.mentor-info p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.mentor-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.m-stat { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.m-stat-val { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); background: var(--grad-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(2,8,23,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--border-subtle);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .hero-title { font-size: clamp(3rem,12vw,5rem); }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-divider { display: none; }
    .event-banner { flex-direction: column; padding: 32px; }
    .banner-divider { width: 60px; height: 1px; }
    .notify-card { padding: 36px 24px; }
    .form-group { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .synalpy-card { padding: 36px 24px; }
    body { cursor: auto; }
    .cursor-dot, .cursor-trail, .cursor-glow { display: none; }
}
@media (max-width: 480px) {
    .section { padding: 72px 0; }
    .hero-title { font-size: clamp(2.5rem,10vw,4rem); }
    .time-card { width: 68px; height: 68px; }
    .time-value { font-size: 1.6rem; }
    .about-main { padding: 28px 20px; }
    .feature-card { padding: 28px 24px; }
}

/* --- 20. MENTOR MODAL --- */
.mentor-card.interactive-card {
    cursor: pointer;
    position: relative;
    padding-bottom: 50px;
}
.mentor-click-hint {
    position: absolute;
    bottom: 24px;
    left: 40px;
    font-size: 0.8rem;
    color: var(--purple-400);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out);
}
.mentor-card.interactive-card:hover .mentor-click-hint {
    opacity: 1;
    transform: translateY(0);
}

.mentor-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}
.mentor-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mentor-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s var(--ease-spring);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid var(--border-glow);
}
.mentor-modal-overlay.active .mentor-modal {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}
.modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}
.modal-avatar-wrap {
    position: relative;
}
.modal-title-area h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}
.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.modal-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple-400);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.modal-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.modal-socials {
    display: flex;
    gap: 16px;
}
.modal-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}
.modal-social-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--text-primary);
    transform: translateY(-3px);
}
@media (max-width: 600px) {
    .modal-header { flex-direction: column; text-align: center; }
    .mentor-modal { padding: 32px 24px; }
}
