/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', 'Noto Sans SC', 'Noto Sans TC', 'Noto Sans JP', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#canvas-container canvas {
    display: block;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.overlay * {
    pointer-events: auto;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.lang-toggle .chevron {
    transition: transform 0.3s ease;
}

.lang-dropdown.open + .lang-toggle .chevron,
.lang-switcher:has(.lang-dropdown.open) .lang-toggle .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-btn.active {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #22d3ee, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #22d3ee);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover::after {
    width: 60%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-app-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow:
        0 0 30px rgba(46, 204, 113, 0.6),
        0 0 60px rgba(46, 204, 113, 0.4),
        0 0 100px rgba(168, 85, 247, 0.5);
    animation: float-icon 4s ease-in-out infinite, icon-glow 3s ease-in-out infinite;
    border: none;
}

@keyframes icon-glow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(46, 204, 113, 0.6),
            0 0 60px rgba(46, 204, 113, 0.4),
            0 0 100px rgba(168, 85, 247, 0.5);
    }
    50% {
        box-shadow:
            0 0 50px rgba(46, 204, 113, 0.8),
            0 0 100px rgba(46, 204, 113, 0.5),
            0 0 150px rgba(168, 85, 247, 0.6);
    }
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #22d3ee 40%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 10s ease infinite;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.3));
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin-bottom: 2.75rem;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #22d3ee 100%);
    background-size: 200% 100%;
    color: #fff;
    box-shadow:
        0 4px 20px rgba(168, 85, 247, 0.35),
        0 0 40px rgba(168, 85, 247, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    box-shadow:
        0 8px 30px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(34, 211, 238, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Apple Store Button */
.store-btn-apple {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.store-btn-apple:hover {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
}

/* Google Play Button */
.store-btn-google {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 20, 0.9) 100%);
}

.store-btn-google:hover {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 35, 0.95) 100%);
}

/* QR Code Modal */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-modal.open {
    opacity: 1;
    visibility: visible;
}

.qr-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.qr-modal-content {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 100px rgba(168, 85, 247, 0.1);
}

.qr-modal.open .qr-modal-content {
    transform: scale(1) translateY(0);
}

.qr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.qr-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.qr-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow:
        0 0 20px rgba(46, 204, 113, 0.5),
        0 0 40px rgba(168, 85, 247, 0.3);
    border: none;
}

.qr-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.qr-modal-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.qr-codes {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.qr-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.qr-code-wrapper {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
}

.qr-code-wrapper canvas {
    width: 180px !important;
    height: 180px !important;
}

.qr-code-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.qr-code-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.qr-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive for modal */
@media (max-width: 480px) {
    .qr-modal-content {
        padding: 1.5rem;
    }

    .qr-codes {
        flex-direction: column;
        align-items: center;
    }

    .qr-code-wrapper {
        width: 160px;
        height: 160px;
    }
}

/* Curve Indicator */
.curve-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.curve-label {
    color: rgba(255, 255, 255, 0.6);
}

.curve-name {
    color: #22d3ee;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-app-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 0.75rem;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .curve-indicator {
        bottom: 5rem;
    }

    /* QR Modal mobile */
    .qr-modal-content {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .qr-modal-header h3 {
        font-size: 1.25rem;
    }

    .qr-code-wrapper {
        width: 180px;
        height: 180px;
    }

    .qr-code-wrapper canvas {
        width: 160px !important;
        height: 160px !important;
    }
}

/* Scroll Hint Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
}

/* Glow Effects */
.glow {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

/* Loading State */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Features Page Styles
   ======================================== */

.page-features {
    min-height: 100vh;
    background: #000;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Particle canvas is fixed via #canvas-container */
.page-features #canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Page Navigation */
.page-features .navbar {
    justify-content: space-between;
    background: transparent;
    padding: 2rem 0;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0 5rem;
}

.page-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #c084fc 0%, #22d3ee 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding-bottom: 5rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(168, 85, 247, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(34, 211, 238, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: #67e8f9;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(34, 211, 238, 0.25) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.15);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 450;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

.feature-card:hover .feature-list li {
    color: rgba(255, 255, 255, 0.75);
}

/* Image-based Feature Cards */
.features-image-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-card-image {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
}

.feature-card-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(168, 85, 247, 0.12);
}

.feature-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-image:hover .feature-image::before {
    opacity: 1;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 2;
    transition: border-color 0.4s ease;
}

.feature-card-image:hover .feature-image::after {
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.85) saturate(0.9);
}

.feature-card-image:hover .feature-image img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.1);
}

.feature-card-image .feature-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card-image:hover .feature-title {
    background: linear-gradient(135deg, #c084fc 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Large Image Feature Sections */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-bottom: 5rem;
}

.feature-section {
    position: relative;
}

.feature-image-large {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 24px;
    overflow: visible;
    margin-bottom: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section:hover .feature-image-large {
    z-index: 10;
}

.feature-image-large .img-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Perspective container */
.feature-image-large {
    perspective: 1000px;
}

/* Alternating tilt directions */
.feature-section:nth-child(odd) .feature-image-large .img-wrapper {
    transform: rotateY(-2deg) rotateX(2deg);
}

.feature-section:nth-child(even) .feature-image-large .img-wrapper {
    transform: rotateY(2deg) rotateX(2deg);
}

/* Hover - flatten and lift */
.feature-section:hover .feature-image-large .img-wrapper {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(168, 85, 247, 0.15);
}

/* Image special effects - Mask overlay */
.feature-image-large .img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(34, 211, 238, 0.25) 100%
    );
    z-index: 2;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section:hover .feature-image-large .img-wrapper::before {
    opacity: 0.2;
}

.feature-image-large .img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section:hover .feature-image-large .img-wrapper::after {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.feature-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.85) contrast(1.1);
    opacity: 0.75;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section:hover .feature-image-large img {
    filter: brightness(1.1) saturate(1.3) contrast(1.15);
    opacity: 0.9;
}

/* Animated gradient border effect */
.feature-image-large .gradient-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        #a855f7,
        #22d3ee,
        #10b981,
        #a855f7
    );
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    animation: gradient-rotate 6s ease infinite;
    transition: opacity 0.5s ease;
}

.feature-section:hover .gradient-border {
    opacity: 1;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shine effect on hover */
.feature-image-large .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    z-index: 4;
    transform: skewX(-25deg);
    transition: none;
}

.feature-section:hover .shine {
    animation: shine-sweep 1s ease forwards;
}

@keyframes shine-sweep {
    to { left: 150%; }
}

/* Feature info styling */
.feature-info {
    text-align: center;
    padding: 0 2rem;
}

.feature-title-large {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature-section:hover .feature-title-large {
    background: linear-gradient(135deg, #c084fc 0%, #22d3ee 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc-small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

/* Section spacing for pop-out effect */
.feature-section {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features-list {
        gap: 4rem;
    }

    .feature-image-large {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
        perspective: none;
    }

    .feature-image-large .img-wrapper {
        border-radius: 16px;
        box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
    }

    .feature-section:nth-child(odd) .feature-image-large .img-wrapper,
    .feature-section:nth-child(even) .feature-image-large .img-wrapper {
        transform: none;
    }

    .feature-section:hover .feature-image-large {
        transform: scale(1.02);
    }

    .feature-section:hover .feature-image-large .img-wrapper {
        transform: none;
    }

    .feature-info {
        padding: 0 1rem;
    }

    .feature-desc-small {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4.5rem 3rem;
    margin: 2rem 0;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
    position: relative;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.25rem;
    font-weight: 400;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* Features Page Footer */
.page-features .footer {
    background: transparent;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive for Features Page */
@media (max-width: 768px) {
    .page-container {
        padding: 0 1.25rem;
    }

    .page-features .navbar {
        padding: 1.25rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .page-header {
        padding: 2.5rem 0 3.5rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        margin: 1rem 0;
    }

    .nav-back {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem 0.4rem 0.5rem;
    }

    .features-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-image {
        border-radius: 16px;
        margin-bottom: 0.75rem;
    }

    .feature-card-image .feature-title {
        font-size: 1.1rem;
        padding: 0.25rem 0.5rem 0.75rem;
    }
}

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

/* ========== Support Page Styles ========== */

.support-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-section {
    margin-bottom: 4rem;
}

.support-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-section-title svg {
    color: #a855f7;
}

/* Quick Start Cards */
.support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.support-card-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.2));
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a855f7;
}

.support-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.support-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: #a855f7;
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.contact-card svg {
    color: #22d3ee;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Support Page Responsive */
@media (max-width: 768px) {
    .support-content {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }

    .support-section {
        margin-bottom: 3rem;
    }

    .support-section-title {
        font-size: 1.25rem;
    }

    .support-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-card {
        padding: 1.5rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========== Quant Trading Guide Styles ========== */

/* Mode Tabs */
.mode-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.375rem;
    border-radius: 12px;
    width: fit-content;
}

.mode-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-tab:hover {
    color: rgba(255, 255, 255, 0.85);
}

.mode-tab.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(34, 211, 238, 0.2));
    color: #fff;
}

/* Mode Content */
.mode-content {
    display: none;
}

.mode-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mode Intro */
.mode-intro {
    margin-bottom: 2rem;
}

.mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mode-badge.smart {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.mode-badge.pro {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.mode-badge svg {
    width: 16px;
    height: 16px;
}

.mode-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Guide Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.guide-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guide-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.guide-step .step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(34, 211, 238, 0.25));
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.guide-step .step-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.guide-step .step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mode Tips */
.mode-tips {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.mode-tips h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.mode-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mode-tips li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.mode-tips li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.mode-tips li strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Quant Warning */
.quant-warning {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 12px;
    margin-top: 2rem;
}

.quant-warning svg {
    flex-shrink: 0;
    color: #fbbf24;
    margin-top: 2px;
}

.quant-warning p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Quant Guide Responsive */
@media (max-width: 768px) {
    .mode-tabs {
        width: 100%;
    }

    .mode-tab {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .guide-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .guide-step .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .guide-step .step-content h4 {
        font-size: 1rem;
    }

    .mode-tips {
        padding: 1.25rem;
    }

    .quant-warning {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

.page-about {
    min-height: 100vh;
    background: #000;
    overflow-x: clip;
    overflow-y: auto;
}

.page-about #canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-about .navbar {
    justify-content: space-between;
    background: transparent;
    padding: 2rem 0;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.about-section {
    margin-bottom: 4rem;
}

/* Company Intro */
.about-intro {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.2));
    border-radius: 20px;
    color: #67e8f9;
}

.about-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-section-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission & Vision Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(34, 211, 238, 0.15));
    border-radius: 14px;
    color: #a855f7;
}

.about-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.about-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Company Info Grid */
.about-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
}

.about-info .about-section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

/* Contact Section */
.about-contact {
    text-align: center;
}

.about-contact .about-section-title {
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 12px;
    color: #22d3ee;
}

.contact-text {
    text-align: left;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

/* Milestones Timeline */
.about-milestones {
    text-align: center;
}

.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: 0;
    background: linear-gradient(to bottom,
        rgba(168, 85, 247, 0.8) 0%,
        rgba(34, 211, 238, 0.8) 50%,
        rgba(168, 85, 247, 0.3) 100%);
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline.animate-line::before {
    height: 100%;
    animation: line-pulse 3s ease-in-out infinite;
}

.timeline.animate-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 20px #22d3ee, 0 0 40px #a855f7;
    animation: travel-dot 4s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 30px rgba(34, 211, 238, 0.5));
    }
}

@keyframes travel-dot {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.timeline-item.animate-in .timeline-content {
    transform: translateX(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(even) {
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.timeline-item.animate-in .timeline-marker {
    transform: translateX(-50%) scale(1);
    animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-item.animate-in .timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
    animation: pulse-ring 2s ease-out infinite;
}

.timeline-item.animate-in .timeline-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
    animation: pulse-ring 2s ease-out infinite 1s;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.9), 0 0 50px rgba(34, 211, 238, 0.4);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.timeline-item.timeline-future .timeline-marker {
    background: rgba(168, 85, 247, 0.3);
    border: 2px dashed rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item.animate-in .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(168, 85, 247, 0.1),
        rgba(34, 211, 238, 0.1),
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.timeline-item.animate-in .timeline-content {
    animation: border-pulse 4s ease-in-out infinite;
}

.timeline-item.animate-in .timeline-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
    animation: none;
}

@keyframes border-pulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
    }
    50% {
        border-color: rgba(168, 85, 247, 0.3);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.5s;
}

.timeline-item.animate-in .timeline-date {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.timeline-future .timeline-date {
    background: rgba(168, 85, 247, 0.1);
    color: rgba(168, 85, 247, 0.6);
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-item.timeline-future .timeline-title {
    color: rgba(255, 255, 255, 0.5);
}

.timeline-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.timeline-item.timeline-future .timeline-desc {
    color: rgba(255, 255, 255, 0.4);
}

/* Credentials Section */
.about-credentials {
    text-align: center;
}

.about-section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.credentials-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.credential-item {
    cursor: pointer;
    text-align: center;
}

.credential-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1rem;
    aspect-ratio: 3/4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.credential-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.credential-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.credential-item:hover .credential-image {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    transform: translateY(-4px);
}

.credential-item:hover .credential-image img {
    transform: scale(1.05);
}

.credential-item:hover .credential-overlay {
    opacity: 1;
}

.credential-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.credential-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lightbox-image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-image-container img {
    max-width: 80vw;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: rgba(168, 85, 247, 0.4);
}

/* Globe Container */
.globe-container {
    margin-top: 5rem;
    position: relative;
    height: 700px;
    overflow: visible;
    background: transparent;
}

.about-contact {
    overflow: visible !important;
}

#globeCanvas {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: visible;
}

#globeCanvas > div,
#globeCanvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.globe-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.globe-marker {
    width: 10px;
    height: 10px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee, 0 0 20px rgba(34, 211, 238, 0.5);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* About Page Footer */
.about-footer {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22d3ee;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.footer-legal {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 0 0.5rem 3rem;
    }

    .about-section {
        margin-bottom: 2.5rem;
    }

    .about-intro {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .about-icon {
        width: 64px;
        height: 64px;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-section-desc {
        font-size: 0.95rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .about-info {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .credentials-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .credential-image {
        aspect-ratio: 4/5;
        max-width: 300px;
        margin: 0 auto 1rem;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-item.animate-in .timeline-marker {
        transform: translateX(-50%) scale(1);
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 50px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        transform: translateX(30px);
    }

    .timeline-item.animate-in .timeline-content {
        transform: translateX(0);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
    }

    .lightbox-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-image-container img {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        position: fixed;
    }

    .globe-container {
        margin-top: 2rem;
        height: 350px;
    }

    .globe-label {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-legal p {
        font-size: 0.75rem;
    }
}

/* Footer H5 Responsive */
@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-main {
        margin-bottom: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-links a {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-links a:hover {
        background: rgba(168, 85, 247, 0.1);
        border-color: rgba(168, 85, 247, 0.3);
    }

    .footer-legal {
        padding-top: 0.75rem;
    }

    .footer-legal p {
        font-size: 0.7rem;
        line-height: 1.7;
    }

    /* About page footer specific */
    .about-footer {
        padding: 2rem 1rem;
    }

    .about-footer .footer-content {
        padding: 0;
    }

    /* Timeline H5 */
    .timeline {
        padding: 1.5rem 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: 15px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        width: calc(100% - 45px);
        margin-left: 40px !important;
        padding: 1rem;
    }

    .timeline-date {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .timeline-title {
        font-size: 0.95rem;
    }

    .timeline-desc {
        font-size: 0.8rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    /* Globe H5 */
    .globe-container {
        height: 300px;
        margin-top: 2rem;
    }

    #globeCanvas {
        height: 300px;
    }

    .globe-label {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        bottom: 1rem;
    }

    .globe-marker {
        width: 6px;
        height: 6px;
    }

    /* About sections H5 */
    .about-section-title {
        font-size: 1.25rem;
    }

    .about-section-subtitle {
        font-size: 0.85rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-card-title {
        font-size: 1rem;
    }

    .about-card-desc {
        font-size: 0.85rem;
    }

    .info-item {
        padding: 0.75rem;
    }

    .info-label {
        font-size: 0.75rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    /* Contact H5 */
    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    /* Credentials H5 */
    .credential-image {
        max-width: 250px;
    }

    .credential-title {
        font-size: 0.9rem;
    }

    .credential-desc {
        font-size: 0.75rem;
    }
}
