* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #000;
    cursor: none;
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.8) 0%, rgba(78, 205, 196, 0.4) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* Unusual Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:visited {
    color: white !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #4ade80 !important;
}

.nav-link:hover::before {
    width: 100%;
}

.dropdown-toggle:hover {
    color: #4ade80 !important;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white !important;
    text-decoration: none;
}

.dropdown-toggle:visited {
    color: white !important;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu .nav-link {
    color: white !important;
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu .nav-link:visited {
    color: white !important;
}

.dropdown-menu .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff !important;
    border-left-color: #00d4ff;
    transform: translateX(5px);
}

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

/* Optional: rotate arrow on open */
.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-left-color: #00d4ff;
    transform: translateX(5px);
}

.dropdown-link::before {
    display: none;
}

/* Infinite Scroll Container - removed as functionality was removed from JavaScript */

/* Hero Section with Advanced WebGL */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.app-icon:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

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

.hero .subtitle {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero .description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 25px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
}

/* Microinteractions */
.micro-interaction {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.micro-interaction:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Features Section with 3D */
.features {
    padding: 200px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    margin-top: 100px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-30px) rotateX(10deg) rotateY(10deg) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 6rem;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
}

.feature-card h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* AI Integration Section */
.ai-section {
    padding: 200px 20px;
    background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #7209b7 100%);
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.ai-section h2 {
    font-size: 5rem;
    margin-bottom: 30px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.ai-section p {
    font-size: 1.8rem;
    margin-bottom: 80px;
    opacity: 0.9;
}

.ai-demo {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 100px;
    margin: 80px 0;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
}

.ai-demo:hover {
    transform: rotateX(10deg) rotateY(10deg) scale(1.02);
}

        .pose-detection {
            width: 100%;
            height: 400px;
            background: rgba(0,0,0,0.3);
            border-radius: 20px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #pose-video {
            width: auto;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            border-radius: 20px;
        }

        .pose-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Start Demo Button */
.start-demo-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-demo-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.start-demo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 3D Transform Section */
.transform-section {
    padding: 200px 20px;
    background: linear-gradient(135deg, #533483 0%, #7209b7 50%, #a8e6cf 100%);
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.transform-section h2 {
    font-size: 5rem;
    margin-bottom: 30px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.transform-section p {
    font-size: 1.8rem;
    margin-bottom: 80px;
    opacity: 0.9;
}

.demo-placeholder {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 100px;
    margin: 80px 0;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
}

.demo-placeholder:hover {
    transform: rotateX(10deg) rotateY(10deg) scale(1.02);
}

/* Stats Section with Filters */
.stats {
    padding: 200px 20px;
    background: #000;
    color: white;
    position: relative;
    min-height: 100vh;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    text-align: center;
}

.stat-item {
    position: relative;
    transition: all 0.6s ease;
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
}

.stat-item:hover {
    filter: drop-shadow(0 0 40px rgba(78, 205, 196, 0.6));
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.stat-item p {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Download Section */
.download-section {
    padding: 200px 20px;
    background: linear-gradient(135deg, #533483 0%, #7209b7 50%, #a8e6cf 100%);
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.download-section h2 {
    font-size: 5rem;
    margin-bottom: 40px;
    color: white;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.download-section p {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 80px;
    opacity: 0.9;
}

.app-store-badge {
    display: inline-block;
    margin: 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.app-store-badge:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.app-store-badge img {
    height: 100px;
    border-radius: 20px;
}

/* Substack Section */
.substack-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    color: white;
    text-align: center;
}

.substack-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.substack-section > .container > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.substack-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.substack-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.substack-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #4ade80;
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
}

.substack-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.substack-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4ade80;
}

.substack-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.substack-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.substack-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h3,
.footer-section h4 {
    color: #4ade80;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: #4ade80;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

.footer p {
    opacity: 0.8;
    font-size: 1.2rem;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    z-index: 1000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 0 10px;
        height: auto;
        min-height: 60px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-logo {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-menu {
        gap: 5px;
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-item {
        position: relative;
    }
    
    .dropdown-toggle {
        padding: 6px 8px;
        font-size: 0.7rem;
        display: block;
        min-width: 80px;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        padding: 10px 0;
        min-width: 150px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu .nav-link {
        padding: 10px 15px;
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        border-radius: 5px;
        margin: 2px 10px;
    }
    
    .dropdown-menu .nav-link:hover {
        background: rgba(74, 222, 128, 0.2);
        color: #4ade80;
    }
    
    .nav-link {
        padding: 6px 8px;
        display: block;
        min-width: auto;
        text-align: center;
        font-size: 0.7rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 0 20px;
        padding-top: 120px;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-icon {
        margin-bottom: 20px;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 15px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero .subtitle {
        font-size: 1.8rem;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .hero .description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .download-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    /* Sections */
    .features, .ai-section, .transform-section, .stats, .download-section {
        padding: 100px 20px;
    }
    
    .section-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 60px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .feature-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .feature-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .feature-card p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* AI Section */
    .ai-section h2 {
        font-size: 3rem;
    }
    
    .ai-section p {
        font-size: 1.4rem;
        margin-bottom: 50px;
    }
    
    .ai-demo {
        padding: 60px 30px;
        margin: 50px 0;
    }
    
    .pose-detection {
        height: 250px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-item h3 {
        font-size: 3.5rem;
    }
    
    .stat-item p {
        font-size: 1.2rem;
    }
    
    /* Download Section */
    .download-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .download-section p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 20px;
    }
    
    .download-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
    }
    
    .download-text {
        font-size: 0.9rem;
    }
    
    .download-label {
        font-size: 0.8rem;
    }
    
    .download-store {
        font-size: 1.1rem;
    }
    
    .app-store-badge {
        margin: 20px;
    }
    
    .app-store-badge img {
        height: 80px;
    }
    
    /* Back to Top Button */
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Custom Cursor - Disable on mobile */
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero .subtitle {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .hero .description {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 2.5rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 15px;
    }
    
    .features, .ai-section, .transform-section, .stats, .download-section {
        padding: 80px 15px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 3.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-menu {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .download-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.4rem;
    }
    
    .hero .description {
        font-size: 1rem;
    }
    
    .features, .ai-section, .transform-section, .stats, .download-section {
        padding: 60px 20px;
    }
}

/* Smooth scrolling behavior - handled by JavaScript for better compatibility */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5252, #26a69a);
}

/* Mantras Section */
.mantras-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.mantras-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.mantras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mantra-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mantra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.mantra-card:hover::before {
    left: 100%;
}

.mantra-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.mantra-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mantra-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.mantra-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.mantra-text {
    color: rgba(255, 255, 255, 0.9);
}

.mantra-text .sanskrit {
    font-family: 'Noto Sans Devanagari', 'Noto Sans Tibetan', serif;
    font-size: 1.2rem;
    color: #4ecdc4;
    margin-bottom: 10px;
    line-height: 1.4;
}

.mantra-text .transliteration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-style: italic;
}

.mantra-text .meaning {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mantra-tech {
    margin-top: 80px;
    text-align: center;
}

.mantra-tech h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.tech-item h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Mantras */
@media (max-width: 768px) {
    .mantras-section {
        padding: 80px 0;
    }
    
    .mantras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .mantra-card {
        padding: 20px;
    }
    
    .mantra-header h3 {
        font-size: 1.3rem;
    }
    
    .mantra-text .sanskrit {
        font-size: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mantra-tech h3 {
        font-size: 1.5rem;
    }
}

/* Prostration Section */
.prostration-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.prostration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="prostration-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="80" cy="80" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="40" cy="60" r="0.5" fill="rgba(78,205,196,0.02)"/><circle cx="60" cy="40" r="0.5" fill="rgba(78,205,196,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23prostration-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.prostration-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.prostration-main h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.prostration-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.detection-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detection-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.detection-stats .stat-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.detection-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.flow-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.flow-step h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.flow-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: #4ecdc4;
    margin: 0 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.prostration-features {
    margin-top: 80px;
}

.prostration-features h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.prostration-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prostration-features .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.prostration-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.prostration-features .feature-item h4 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.prostration-features .feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prostration-features .feature-item li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.prostration-features .feature-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.cloudkit-integration {
    margin-top: 80px;
    text-align: center;
}

.cloudkit-integration h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cloudkit-integration p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cloudkit-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cloudkit-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.cloudkit-step:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cloudkit-step h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cloudkit-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Prostration */
@media (max-width: 768px) {
    .prostration-section {
        padding: 80px 0;
    }
    
    .prostration-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detection-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detection-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .prostration-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cloudkit-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prostration-main h3,
    .prostration-features h3,
    .cloudkit-integration h3 {
        font-size: 1.5rem;
    }
}

/* Browser Section */
.browser-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.browser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="browser-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,107,107,0.03)"/><circle cx="70" cy="70" r="1" fill="rgba(255,107,107,0.03)"/><circle cx="50" cy="20" r="0.5" fill="rgba(255,107,107,0.02)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,107,107,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23browser-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.browser-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.browser-main h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.browser-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.browser-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.browser-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.browser-feature:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-5px);
}

.browser-feature h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.browser-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.browser-tech h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.tech-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.tech-item h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Buddhachat Section */
.buddhachat-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.buddhachat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="buddhachat-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(78,205,196,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23buddhachat-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.buddhachat-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.buddhachat-main h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.buddhachat-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.chat-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.capability {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.capability:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.capability h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.capability p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.buddhachat-tech h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.ai-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ai-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.ai-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.ai-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.ai-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Tree View Transformation Section */
.treeview-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.treeview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="treeview-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="60" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23treeview-grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.transformation-overview {
    margin-top: 60px;
}

.transformation-intro {
    text-align: center;
    margin-bottom: 60px;
}

.transformation-intro h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.transformation-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-flow {
    margin-bottom: 80px;
}

.transformation-flow h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow-x: auto;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.flow-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.flow-step h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.flow-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: #4ecdc4;
    margin: 0 10px;
    animation: pulse 2s infinite;
}

.analysis-components {
    margin-bottom: 80px;
}

.analysis-components h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.analysis-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.analysis-step:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.3));
}

.analysis-step h4 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.analysis-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.integration-features {
    margin-bottom: 80px;
}

.integration-features h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.eightfold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.path-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.path-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.path-item h4 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.path-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.dependent-origination {
    text-align: center;
}

.dependent-origination h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.dependent-origination p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.origination-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.origination-step {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.origination-arrow {
    color: #4ecdc4;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .browser-section,
    .buddhachat-section,
    .treeview-section {
        padding: 80px 0;
    }
    
    .browser-overview,
    .buddhachat-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .browser-features,
    .chat-capabilities,
    .tech-stack,
    .ai-stack {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .eightfold-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .origination-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .origination-arrow {
        transform: rotate(90deg);
    }
    
    .browser-main h3,
    .buddhachat-main h3,
    .transformation-intro h3,
    .transformation-flow h3,
    .analysis-components h3,
    .integration-features h3,
    .dependent-origination h3 {
        font-size: 1.5rem;
    }
}

/* Spiritual Insights Section */
.insights-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="insights-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="80" cy="20" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23insights-grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.insights-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.insights-main h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.insights-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.insights-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.insight-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.insight-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.insight-feature h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.insight-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.insights-tech h3 {
    color: #4ecdc4;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.analytics-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.analytics-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.analytics-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.analytics-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.analytics-item h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.analytics-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Muse EEG Section */
.muse-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.muse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="muse-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="70" cy="70" r="1" fill="rgba(78,205,196,0.03)"/><circle cx="50" cy="20" r="0.5" fill="rgba(78,205,196,0.02)"/><circle cx="20" cy="80" r="0.5" fill="rgba(78,205,196,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23muse-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.muse-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.muse-main h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.muse-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.muse-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.muse-tech h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.eeg-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.eeg-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.eeg-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.eeg-wave {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
    min-width: 40px;
    text-align: center;
}

.eeg-item h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.eeg-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.muse-experiences {
    margin-top: 80px;
}

.muse-experiences h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-10px);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.experience-card h4 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Sleep Tracking Section */
.sleep-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.sleep-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sleep-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,107,107,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,107,107,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,107,107,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23sleep-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.sleep-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.sleep-main h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.sleep-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sleep-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sleep-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.sleep-feature:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-5px);
}

.sleep-feature h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sleep-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.sleep-tech h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.sleep-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sleep-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.sleep-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
}

.sleep-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.sleep-item h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.sleep-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.sleep-quality {
    margin-top: 80px;
}

.sleep-quality h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quality-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.quality-range {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.quality-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.quality-color {
    height: 4px;
    border-radius: 2px;
    margin: 0 auto;
}

.quality-color.orange { background: #ff6b6b; }
.quality-color.green { background: #4ecdc4; }
.quality-color.blue { background: #45b7d1; }
.quality-color.purple { background: #9b59b6; }

/* Karmic Progress Section */
.karmic-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.karmic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="karmic-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="60" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23karmic-grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.karmic-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.karmic-main h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.karmic-main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.karmic-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.karmic-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.karmic-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.karmic-feature h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.karmic-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.karmic-tech h3 {
    color: #4ecdc4;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.analytics-card .analytics-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.analytics-card h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.analytics-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.progress-components {
    margin-top: 80px;
}

.progress-components h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.component-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.component-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.component-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.component-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.component-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.white-stone-inflation {
    margin-top: 80px;
}

.white-stone-inflation h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.white-stone-inflation p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inflation-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.inflation-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.inflation-item:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-5px);
}

.inflation-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.inflation-item h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.inflation-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.enlightenment-explanation {
    margin-top: 80px;
}

.enlightenment-explanation h3 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.enlightenment-explanation p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enlightenment-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.factor-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.factor-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px);
}

.factor-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.factor-item h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.factor-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .insights-section,
    .muse-section,
    .sleep-section,
    .karmic-section {
        padding: 80px 0;
    }
    
    .insights-overview,
    .muse-overview,
    .sleep-overview,
    .karmic-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insights-features,
    .muse-capabilities,
    .sleep-features,
    .karmic-features,
    .analytics-stack,
    .sleep-stack,
    .analytics-grid,
    .inflation-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .eeg-stack {
        grid-template-columns: 1fr;
    }
    
    .experience-grid,
    .components-grid,
    .enlightenment-factors {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .insights-main h3,
    .muse-main h3,
    .sleep-main h3,
    .karmic-main h3,
    .muse-experiences h3,
    .sleep-quality h3,
    .progress-components h3,
    .white-stone-inflation h3,
    .enlightenment-explanation h3 {
        font-size: 1.5rem;
    }
}

/* Karma Leaderboard Section */
.leaderboard-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.leaderboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaderboard-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaderboard-pattern)"/></svg>');
    opacity: 0.3;
}

.leaderboard-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.leaderboard-main h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.leaderboard-main p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.leaderboard-scopes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.scope-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.scope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.scope-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.scope-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.scope-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.karma-stats h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-item h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat-item p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.karma-levels {
    margin-top: 60px;
}

.karma-levels h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.level-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.level-card.enlightened {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.level-card.virtuous {
    border: 2px solid #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.level-card.neutral {
    border: 2px solid #9ca3af;
    background: rgba(156, 163, 175, 0.1);
}

.level-card.challenged {
    border: 2px solid #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.level-card.shadowed {
    border: 2px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.level-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.level-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Karma Map Section */
.karma-map-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.karma-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%234ade80" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    opacity: 0.3;
}

.karma-map-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.map-main h3 {
    color: #4ade80;
    font-size: 2rem;
    margin-bottom: 20px;
}

.map-main p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    text-align: center;
}

.map-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.map-feature {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.map-feature h4 {
    color: #4ade80;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-tech h3 {
    color: #4ade80;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tech-item h4 {
    color: #4ade80;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Languages Section */
.languages-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.languages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="language-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" font-family="Arial" font-size="12" fill="%23a855f7" opacity="0.1">🌍</text></pattern></defs><rect width="100" height="100" fill="url(%23language-pattern)"/></svg>');
    opacity: 0.3;
}

.languages-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.languages-main h3 {
    color: #a855f7;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.language-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.language-category {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.language-category h4 {
    color: #a855f7;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.localization-tech h3 {
    color: #a855f7;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.localization-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.localization-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.localization-feature h4 {
    color: #a855f7;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Meditation Settings Section */
.meditation-settings-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.meditation-settings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="meditation-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="3" fill="%23ec4899" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23meditation-pattern)"/></svg>');
    opacity: 0.3;
}

.meditation-settings-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.settings-main h3 {
    color: #ec4899;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.settings-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.setting-feature {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.setting-feature h4 {
    color: #ec4899;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.audio-settings h3 {
    color: #ec4899;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.audio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audio-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.audio-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.audio-feature h4 {
    color: #ec4899;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.black-stone-meditation {
    margin-top: 60px;
}

.black-stone-meditation h3 {
    color: #ec4899;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.black-stone-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.black-stone-feature {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.black-stone-feature h4 {
    color: #ec4899;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Notification Settings Section */
.notifications-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.notifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="notification-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%2306b6d4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notification-pattern)"/></svg>');
    opacity: 0.3;
}

.notifications-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.notifications-main h3 {
    color: #06b6d4;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.notification-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.notification-feature {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.notification-feature h4 {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.notification-tech h3 {
    color: #06b6d4;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.tech-feature h4 {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.notification-types {
    margin-top: 60px;
}

.notification-types h3 {
    color: #06b6d4;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.type-card h4 {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Privacy & Security Section */
.privacy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="privacy-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="8" y="8" width="4" height="4" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-pattern)"/></svg>');
    opacity: 0.3;
}

.privacy-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.privacy-main h3 {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.security-feature {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.security-feature h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.privacy-tech h3 {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.security-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.security-item h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.privacy-policy {
    margin-top: 60px;
}

.privacy-policy h3 {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-commitments {
    padding: 80px 0;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.commitment-item,
.commitment-card {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.commitment-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.commitment-item h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Ethical Driving Section */
.driving-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.driving-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="driving-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ef4444" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23driving-pattern)"/></svg>');
    opacity: 0.3;
}

.driving-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.driving-main h3 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.driving-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.driving-feature {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.driving-feature h4 {
    color: #ef4444;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.driving-tech h3 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.driving-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.driving-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.driving-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.driving-item h4 {
    color: #ef4444;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.driving-behaviors {
    margin-top: 60px;
}

.driving-behaviors h3 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.behaviors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.behavior-card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.behavior-card.calm {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.behavior-card.speeding {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.behavior-card.aggressive {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.behavior-card.not-driving {
    background: rgba(156, 163, 175, 0.1);
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.behavior-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.behavior-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.behavior-card.calm h4 {
    color: #4ade80;
}

.behavior-card.speeding h4 {
    color: #f59e0b;
}

.behavior-card.aggressive h4 {
    color: #ef4444;
}

.behavior-card.not-driving h4 {
    color: #9ca3af;
}

/* Business Review System Section */
.business-review-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.business-review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="business-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%2310b981" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23business-pattern)"/></svg>');
    opacity: 0.3;
}

.business-review-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.review-main h3 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.review-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.review-feature {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.review-feature h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-tech h3 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.review-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.review-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.review-item h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.business-benefits {
    margin-top: 60px;
}

.business-benefits h3 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-card h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.review-process {
    margin-top: 60px;
}

.review-process h3 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.step-number {
    background: #10b981;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .leaderboard-overview,
    .karma-map-overview,
    .languages-overview,
    .meditation-settings-overview,
    .notifications-overview,
    .privacy-overview,
    .driving-overview,
    .business-review-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leaderboard-scopes,
    .stats-grid,
    .levels-grid,
    .map-features,
    .tech-stack,
    .localization-features,
    .settings-features,
    .audio-features,
    .notification-features,
    .tech-features,
    .security-features,
    .security-stack,
    .driving-features,
    .driving-stack,
    .review-features,
    .review-stack {
        grid-template-columns: 1fr;
    }
    
    .black-stone-features,
    .types-grid,
    .commitments-grid,
    .privacy-commitments,
    .behaviors-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .leaderboard-main h3,
    .karma-stats h3,
    .karma-levels h3,
    .map-main h3,
    .map-tech h3,
    .languages-main h3,
    .localization-tech h3,
    .settings-main h3,
    .audio-settings h3,
    .black-stone-meditation h3,
    .notifications-main h3,
    .notification-tech h3,
    .notification-types h3,
    .privacy-main h3,
    .privacy-tech h3,
    .privacy-policy h3,
    .driving-main h3,
    .driving-tech h3,
    .driving-behaviors h3,
    .review-main h3,
    .review-tech h3,
    .business-benefits h3,
    .review-process h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile dropdown adjustments */
    .nav-menu {
        gap: 20px;
    }
    
    .dropdown-menu {
        min-width: 180px;
        left: -50px;
    }
    
    .dropdown-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Stone Map Section */
.stone-map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    color: white;
}

.stone-map-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-features h3,
.map-tech h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-tech ul {
    list-style: none;
    padding: 0;
}

.map-tech li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.map-tech li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Mobius Meditation Section */
.mobius-meditation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
    color: white;
}

.mobius-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mobius-features h3,
.haptic-system h3,
.mobius-tech h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.haptic-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.phase {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.phase h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.mobius-tech ul {
    list-style: none;
    padding: 0;
}

.mobius-tech li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.mobius-tech li::before {
    content: "♾️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Cave View Section */
.cave-view-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #0f0f23 100%);
    color: white;
}

.cave-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.cave-features h3,
.cave-meditation h3,
.cave-tech h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meditation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.option {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
}

.option h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.option p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cave-tech ul {
    list-style: none;
    padding: 0;
}

.cave-tech li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.cave-tech li::before {
    content: "🏔️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Emptiness Analysis Section */
.emptiness-analysis-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    color: white;
}

.emptiness-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.philosophy-background h3,
.analysis-process h3,
.transformation-results h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.principle {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.principle h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.principle p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.analysis-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.step p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.transformation-results ul {
    list-style: none;
    padding: 0;
}

.transformation-results li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.transformation-results li::before {
    content: "🔍";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Stone Logging Section */
.stone-logging-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
    color: white;
}

.logging-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.manual-logging h3,
.automatic-logging h3,
.stone-generation-rules h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logging-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
}

.method h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.method p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.auto-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.auto-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.auto-method:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.auto-method h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.auto-method p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.rule {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.rule:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.rule h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.rule p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Karmic Algorithm Section */
.karmic-algorithm-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #0f0f23 100%);
    color: white;
}

.algorithm-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.prediction-history h3,
.algorithm-details h3,
.machine-learning h3,
.bayesian-enlightenment h3,
.training-data h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prediction-evolution {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.evolution-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.evolution-step:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.evolution-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.evolution-step p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.formula-section {
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.formula-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.formula {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    font-family: 'Courier New', monospace;
}

.formula p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 8px 0;
}

.formula p strong {
    color: #4ade80;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Fix all remaining unreadable text colors */
.karma-level p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.map-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.language-category p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.localization-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.meditation-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.audio-control p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.black-stone-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.notification-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.notification-tech p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.notification-category p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.security-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.security-tech p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.privacy-commitment p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.driving-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.driving-tech p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.driving-behavior p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.business-feature p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.business-tech p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.formula p {
    margin: 10px 0;
}

.formula strong {
    color: #4ecdc4;
}

.ml-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.ml-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.ml-method:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
}

.ml-method h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.ml-method p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.training-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.training-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.training-method:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.training-method h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.training-method p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234ade80" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4ade80, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Content Styles */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h2 {
    font-size: 2.5rem;
    color: #4ade80;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-highlights {
    display: grid;
    gap: 20px;
}

.highlight {
    padding: 20px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4ade80;
}

.highlight h3 {
    color: #4ade80;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Demo and Interactive Elements */
.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mantra-demo,
.prostration-demo,
.browser-demo,
.transformation-tree,
.karma-dashboard,
.eeg-demo,
.meditation-demo,
.security-demo,
.driving-demo {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    text-align: center;
}

.demo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4ade80, #00d4ff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.mantra-count {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.demo-button {
    background: #4ade80;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    /* Page Header Mobile */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Section Content Mobile */
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .content-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .feature-highlights {
        gap: 15px;
    }
    
    .highlight {
        padding: 15px;
    }
    
    .highlight h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .highlight p {
        font-size: 0.9rem;
    }
    
    /* Demo Elements Mobile */
    .mantra-demo,
    .prostration-demo,
    .browser-demo,
    .transformation-tree,
    .karma-dashboard,
    .eeg-demo,
    .meditation-demo,
    .security-demo,
    .driving-demo {
        padding: 20px;
        margin: 0 10px;
    }
    
    .demo-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .mantra-count {
        font-size: 1.5rem;
    }
    
    .demo-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Interactive Demo Elements Mobile */
    .breathing-circle {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .breath-indicator {
        width: 150px;
        height: 150px;
    }
    
    .breath-text {
        font-size: 1.2rem;
    }
    
    .karma-dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .karma-metric {
        padding: 15px;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    /* Chat Demo Mobile */
    .chat-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .chat-messages {
        height: 300px;
        padding: 15px;
    }
    
    .message {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .chat-input {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .chat-input input {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    
    .send-button {
        width: 100%;
        padding: 12px;
    }
    
    /* Leaderboard Demo Mobile */
    .demo-leaderboard {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .rank-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .rank {
        font-size: 1.1rem;
    }
    
    .name {
        font-size: 0.9rem;
    }
    
    .score {
        font-size: 0.9rem;
    }
    
    /* EEG Demo Mobile */
    #eegCanvas {
        width: 100%;
        height: 150px;
    }
    
    .eeg-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .stat {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Meditation Demo Mobile */
    .breath-circle {
        width: 180px;
        height: 180px;
    }
    
    .breath-center {
        width: 20px;
        height: 20px;
    }
    
    .meditation-settings-demo {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .setting-group {
        margin-bottom: 15px;
    }
    
    .setting-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .setting-group select {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Security Demo Mobile */
    .security-status-display {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .status-item {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .security-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Driving Demo Mobile */
    .driving-dashboard {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .dashboard-item {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .speed-controls {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .speed-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Formula Cards Mobile */
    .formula-section {
        margin: 20px 0;
        padding: 20px;
    }
    
    .formula-card {
        margin: 15px 0;
        padding: 15px;
    }
    
    .formula {
        padding: 15px;
    }
    
    .formula p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Grid Layouts Mobile */
    .stone-map-main,
    .haptic-phases,
    .meditation-options,
    .philosophy-principles,
    .analysis-steps,
    .logging-methods,
    .auto-methods,
    .rules-grid,
    .prediction-evolution,
    .ml-methods,
    .training-details {
        grid-template-columns: 1fr;
    }
    
    /* Substack Section Mobile */
    .substack-section {
        padding: 60px 20px;
    }
    
    .substack-section h2 {
        font-size: 2rem;
    }
    
    .substack-section > .container > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .substack-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .substack-card {
        padding: 30px;
    }
    
    .substack-icon {
        font-size: 3rem;
    }
    
    .substack-card h3 {
        font-size: 1.5rem;
    }
    
    .substack-card p {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul {
        gap: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .stone-map-main h3,
    .mobius-features h3,
    .haptic-system h3,
    .mobius-tech h3,
    .cave-features h3,
    .cave-meditation h3,
    .cave-tech h3,
    .philosophy-background h3,
    .analysis-process h3,
    .transformation-results h3,
    .manual-logging h3,
    .automatic-logging h3,
    .stone-generation-rules h3,
    .prediction-history h3,
    .algorithm-details h3,
    .machine-learning h3,
    .bayesian-enlightenment h3,
    .training-data h3 {
        font-size: 1.5rem;
    }
}
/* Research Page Styles */
.research-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    color: white;
    min-height: 100vh;
}

.research-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.research-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.research-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
}

.research-category {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.research-category h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4ade80;
    border-bottom: 3px solid #4ade80;
    padding-bottom: 10px;
}

.category-description {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.paper-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.paper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.paper-card h4 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
}

.paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.paper-meta .author {
    color: #fbbf24;
    font-weight: 600;
}

.paper-meta .publication {
    color: #a78bfa;
    font-style: italic;
}

.paper-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.paper-connection {
    background: rgba(74, 222, 128, 0.1);
    border-left: 4px solid #4ade80;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.paper-connection strong {
    color: #4ade80;
    display: block;
    margin-bottom: 8px;
}

.research-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 60px;
}

.research-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.research-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.research-cta .download-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.research-cta .download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Mobile Optimization for Research Page */
@media (max-width: 768px) {
    .research-section {
        padding: 40px 15px;
    }
    
    .research-intro h2 {
        font-size: 1.8rem;
    }
    
    .research-intro p {
        font-size: 1rem;
    }
    
    .research-category h3 {
        font-size: 1.5rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
    
    .paper-card {
        padding: 20px;
    }
    
    .paper-card h4 {
        font-size: 1.2rem;
    }
    
    .paper-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .research-cta {
        padding: 30px 20px;
    }
    
    .research-cta h3 {
        font-size: 1.5rem;
    }
    
    .research-cta p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    color: white;
    min-height: 100vh;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px auto;
    animation: fadeInUp 0.8s ease;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-content a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.about-content a:hover {
    border-bottom-color: #00d4ff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: #4ade80;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
}

.about-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.about-cta .download-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-cta .download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Mobile Optimization for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 15px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-card {
        padding: 20px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
}

/* Google Translate Widget Styles */
#google_translate_element {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hide Google Translate branding */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #ffffff !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #667eea !important;
    font-weight: 600 !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Mobile optimization for translate widget */
@media (max-width: 768px) {
    #google_translate_element {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
}
