@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Orbitron:wght@400;500;700;900&display=swap');
/* QUANNEX Website Styles */

/* Base Styles and Variables */
:root {
    --primary-color: #6e00ff;
    --secondary-color: #00b8ff;
    --accent-color: #ff00e6;
    --dark-bg: #050520;
    --darker-bg: #030312;
    --light-text: #ffffff;
    --medium-text: #b8c6db;
    --glow-primary: 0 0 15px rgba(110, 0, 255, 0.7);
    --glow-secondary: 0 0 15px rgba(0, 184, 255, 0.7);
    --glow-accent: 0 0 15px rgba(255, 0, 230, 0.7);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    
    /* Additional Color Variables */
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    --gradient-success: linear-gradient(45deg, #00ff88, #00a1ff);
    --gradient-hover: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    
    /* Shadow Variables */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    /* Border Variables */
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-hover: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Background Variables */
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(255, 255, 255, 0.08);
    
    /* Animation Variables */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-shadow: var(--glow-accent);
}

/* Background Effects */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    background: #000 url('https://i.imgur.com/YKY28eT.png') repeat top center;
}

.twinkling {
    background: transparent url('https://i.imgur.com/XYMF4ca.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 5%;
}

header .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    padding: 0.5rem;
    transition: all 0.3s ease;
    overflow: visible;
    perspective: 1000px;
}

header .logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(110, 0, 255, 0.15) 0%,
        rgba(0, 184, 255, 0.1) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: rotateBackground 8s linear infinite;
}

header .logo-container:hover::before {
    opacity: 1;
    animation: rotateBackground 8s linear infinite;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

header .quantum-symbol {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: radial-gradient(circle at center, 
        rgba(110, 0, 255, 0.3),
        rgba(0, 184, 255, 0.2) 50%,
        transparent 80%);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.4);
    overflow: visible;
    transform-style: preserve-3d;
}

header .quantum-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 2s infinite, rotate 8s linear infinite;
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.4);
}

header .quantum-symbol::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.9;
    animation: glowPulse 3s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 230, 0.6);
}

header .quantum-symbol .quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

header .quantum-symbol .quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s infinite;
}

header .quantum-symbol:hover .quantum-particle {
    opacity: 0.8;
}

header .quantum-symbol:hover {
    box-shadow: 0 0 25px rgba(110, 0, 255, 0.5);
    transform: scale(1.1) rotate(180deg);
    border-color: var(--accent-color);
    animation: quantumPulse 2s infinite;
}

header .logo h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

header .logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

header .logo:hover h1::after {
    transform: scaleX(1);
}

header .logo:hover h1 {
    text-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
    transform: scale(1.02);
    letter-spacing: 1.5px;
}

header .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--secondary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, 
        rgba(0, 184, 255, 0.1) 0%,
        transparent 100%);
    padding: 0.5rem 1rem;
    border-radius: 0 20px 20px 0;
}

header .logo-container:hover .tagline {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
    background: linear-gradient(90deg, 
        rgba(0, 184, 255, 0.2) 0%,
        transparent 100%);
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes quantumPulse {
    0% { box-shadow: 0 0 25px rgba(110, 0, 255, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 0, 230, 0.5); }
    100% { box-shadow: 0 0 25px rgba(110, 0, 255, 0.5); }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty));
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 230, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 230, 0.8);
    }
}

header .logo:hover h1 {
    text-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
    transform: scale(1.02);
}

header .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--secondary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

header .logo-container:hover .tagline {
    opacity: 1;
    color: var(--secondary-color);
}

header nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: #fff;
    background: rgba(0, 255, 136, 0.1);
}

header nav ul li a.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 8%;
    min-height: 90vh;
    position: relative;
    gap: 2rem;
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 45%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--glow-primary);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
}

.cta-button.secondary:hover {
    background-color: rgba(0, 184, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    max-width: 55%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.quantum-visualization-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.quantum-visualization-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quantum-visualization-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
    transition: all 0.5s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.quantum-visualization-container:hover .quantum-visualization-image {
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

.quantum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(110, 0, 255, 0.1),
        rgba(0, 184, 255, 0.1),
        rgba(255, 0, 230, 0.1)
    );
    mix-blend-mode: soft-light;
    pointer-events: none;
    opacity: 0.7;
    border-radius: 30px;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.visualization-note {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: right;
    max-width: 220px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 18px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-image:hover .visualization-note {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes quantumPulse {
    0% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.1) contrast(1.1);
    }
    100% {
        filter: brightness(1) contrast(1);
    }
}

.astral-body {
    position: relative;
    width: 300px;
    height: 400px;
    transition: transform 0.3s ease;
}

.astral-body:hover {
    transform: scale(1.05);
}

.human-silhouette {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,90 C30,90 15,70 15,45 C15,20 30,10 50,10 C70,10 85,20 85,45 C85,70 70,90 50,90 Z"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,90 C30,90 15,70 15,45 C15,20 30,10 50,10 C70,10 85,20 85,45 C85,70 70,90 50,90 Z"/></svg>') center/contain no-repeat;
    animation: glow 2s ease-in-out infinite alternate;
}

.energy-field {
    position: absolute;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.sacred-geometry {
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="white" stroke-width="0.5"/><polygon points="50,5 95,75 5,75" fill="none" stroke="white" stroke-width="0.5"/></svg>');
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

/* Quantum particles effect */
.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-20px);
    }
}

/* Vision Section Enhancements */
.vision-content {
    position: relative;
    overflow: visible;
}

.quantum-visualization {
    position: relative;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, 
        rgba(255, 0, 230, 0.2) 0%,
        rgba(110, 0, 255, 0.15) 30%,
        rgba(0, 184, 255, 0.1) 50%,
        transparent 70%
    );
    filter: blur(20px);
    animation: quantumPulse 8s ease-in-out infinite;
    transform-origin: center;
}

.quantum-visualization::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(110, 0, 255, 0.1),
        rgba(0, 184, 255, 0.1),
        rgba(255, 0, 230, 0.1),
        transparent
    );
    animation: quantumSpin 15s linear infinite;
    filter: blur(15px);
    opacity: 0.7;
}

.quantum-visualization::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center,
        rgba(255, 0, 230, 0.15) 0%,
        rgba(0, 184, 255, 0.1) 30%,
        transparent 60%
    );
    filter: blur(25px);
    animation: quantumExpand 6s ease-in-out infinite;
    opacity: 0.5;
}

/* Add floating orbs */
.quantum-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.quantum-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center,
        rgba(255, 0, 230, 0.3) 0%,
        rgba(110, 0, 255, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(15px);
    animation: orbFloat 10s ease-in-out infinite;
}

.quantum-orb:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.quantum-orb:nth-child(2) {
    top: 60%;
    left: 50%;
    animation-delay: -3s;
}

.quantum-orb:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: -6s;
}

@keyframes quantumPulse {
    0%, 100% { 
        transform: scale(1);
        filter: blur(20px) hue-rotate(0deg);
    }
    50% { 
        transform: scale(1.2);
        filter: blur(25px) hue-rotate(180deg);
    }
}

@keyframes quantumSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes quantumExpand {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.3;
        filter: blur(25px);
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
        filter: blur(20px);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(0, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Animations */
@keyframes glow {
    0% { filter: drop-shadow(0 0 5px var(--accent-color)); }
    100% { filter: drop-shadow(0 0 20px var(--accent-color)); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 0.5; }
}

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

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

/* Interactive hover effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Vision text reveal effect */
.vision-text p {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s ease-out forwards;
}

.vision-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.vision-text p:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Vision Section */
.vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vision-text {
    flex: 1;
}

.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Framework Section */
.framework-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.parameters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.parameter {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.parameter:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.parameter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.parameter-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--glow-primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.parameter-icon:hover::before {
    opacity: 0.8;
    transform: scale(1.1);
}

.coherence::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>') center/contain no-repeat;
    animation: pulse 2s ease-in-out infinite;
}

.entanglement::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6l12 12M6 18l12-12"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6l12 12M6 18l12-12"/></svg>') center/contain no-repeat;
    animation: rotate 4s linear infinite;
}

.superposition::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5"/><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5"/><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/></svg>') center/contain no-repeat;
    animation: quantum-spin 6s linear infinite;
}

.observation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/><path d="M12 4v16M4 12h16"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/><path d="M12 4v16M4 12h16"/></svg>') center/contain no-repeat;
}

.resonance::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12h4l4-8 4 16 4-8h4"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12h4l4-8 4 16 4-8h4"/></svg>') center/contain no-repeat;
}

.consciousness-bands {
    margin-top: 2rem;
}

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

.band {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.band:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.band h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Section Styles */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Vision Section */
.vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vision-text {
    flex: 1;
}

.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Framework Section */
.framework-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.parameters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.parameter {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.parameter:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.parameter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parameter-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.parameter-icon:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    z-index: 1;
}

.parameter-icon.coherence:after {
    background: linear-gradient(45deg, #6e00ff, #9500ff);
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.7);
}

.parameter-icon.entanglement:after {
    background: linear-gradient(45deg, #00b8ff, #00e1ff);
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.7);
}

.parameter-icon.superposition:after {
    background: linear-gradient(45deg, #ff00e6, #ff00aa);
    box-shadow: 0 0 15px rgba(255, 0, 230, 0.7);
}

.parameter-icon.observation:after {
    background: linear-gradient(45deg, #ffcc00, #ff9500);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.parameter-icon.resonance:after {
    background: linear-gradient(45deg, #00ff88, #00ffcc);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

.mastery-paths {
    text-align: center;
}

.mastery-paths h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.paths {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.path {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.path:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.path h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--light-text);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature p {
    color: var(--medium-text);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Collapsible Feature Sections */
.feature-category {
    background-color: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 2rem;
    border: var(--border-light);
    overflow: hidden;
}

.collapsible-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.collapsible-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.collapsible-header:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.collapsible-header:hover {
    background-color: var(--bg-hover);
    transform: translateY(-2px);
}

.collapsible-header h3 {
    color: var(--light-text);
    margin: 0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 1rem;
}

.collapsible-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collapsible-header:hover h3::before {
    opacity: 1;
}

.collapsible-header i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.collapsible-header:hover i {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.collapsible.active .collapsible-header i {
    transform: rotate(180deg) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast);
}

.collapsible.active .collapsible-content {
    max-height: 2000px; /* Adjust based on content */
}

.collapsible-content .features-grid {
    padding: 2rem;
    margin: 0;
}

/* Science Section */
.science-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.consciousness-bands h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.bands {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.band {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.band:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.band h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Roadmap Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    right: -10px;
    top: 15px;
    z-index: 1;
    box-shadow: var(--glow-primary);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style-position: inside;
    color: var(--medium-text);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-primary);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.resource-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.resource-icon i {
    font-size: 1.8rem;
    color: white;
}

.resource-card h3 {
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--medium-text);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 3rem 5%;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quantum-symbol-small {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    box-shadow: var(--glow-primary);
}

.quantum-symbol-small:before, .quantum-symbol-small:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.quantum-symbol-small:before {
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px;
    box-shadow: var(--glow-primary);
}

.quantum-symbol-small:after {
    width: 5px;
    height: 5px;
    bottom: 6px;
    right: 6px;
    box-shadow: var(--glow-primary);
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-primary);
}

/* Staged Learning Section */
.staged-learning {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(5, 5, 32, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.staged-learning h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stages .stage {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stages .stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.stages .stage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stages .stage h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.stages .stage p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .stages {
        grid-template-columns: 1fr;
    }
    
    .staged-learning {
        padding: 1rem;
    }
}

/* Technical Details Section */
.technical-details {
    margin-top: 3rem;
}

.technical-details h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.tech-card {
    background: rgba(5, 5, 32, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.tech-card h4 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-card ul,
.tech-card ol {
    list-style: none;
    padding: 0;
}

.tech-card ul li,
.tech-card ol li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-card ul li:before {
    content: "•";
    color: #00ff88;
    position: absolute;
    left: 0;
}

.tech-card ol li {
    counter-increment: item;
    padding-left: 2rem;
}

.tech-card ol li:before {
    content: counter(item);
    color: #00ff88;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px; /* Move above the floating waitlist CTA (was 30px) */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-secondary);
}

.back-to-top i {
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 110px; /* Increased from 76px for more space above waitlist button */
        right: 16px;
        left: auto;
        max-width: 90vw;
        box-sizing: border-box;
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-left: 0;
    }
}

/* App Section Enhanced Styles */
.app {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(5, 5, 32, 0.95) 0%, rgba(13, 17, 23, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.app-text {
    color: #fff;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    position: relative;
}

.app-visualization::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></svg>') center/contain;
    animation: rotate 60s linear infinite;
    opacity: 0.3;
}

.app-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: all 0.5s ease;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -20px -20px 60px rgba(255, 255, 255, 0.05),
        0 0 100px rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), transparent);
    border-radius: 40px;
    opacity: 0.5;
}

.app-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        30px 30px 80px rgba(0, 0, 0, 0.6),
        -30px -30px 80px rgba(255, 255, 255, 0.07),
        0 0 150px rgba(0, 255, 136, 0.2);
}

.app-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-header {
    height: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.app-status-bar {
    height: 0;
    width: 100%;
}

.quantum-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.quantum-consciousness-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.1);
}

.app-mockup:hover .quantum-consciousness-img {
    transform: scale(1.05);
}

.quantum-silhouette {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px); /* Subtract header height */
    top: 60px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quantum-silhouette-container {
    position: relative;
    width: 80%;
    height: 80%;
}

.human-figure {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,100 C25,100 5,80 5,50 C5,20 25,0 50,0 C75,0 95,20 95,50 C95,80 75,100 50,100 Z"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,100 C25,100 5,80 5,50 C5,20 25,0 50,0 C75,0 95,20 95,50 C95,80 75,100 50,100 Z"/></svg>') center/contain no-repeat;
}

.quantum-circles {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    animation: rotate 60s linear infinite;
    opacity: 0.5;
}

.quantum-circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
}

.quantum-circle-middle {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border: 1px solid rgba(0, 161, 255, 0.3);
    border-radius: 50%;
    animation: rotate-reverse 40s linear infinite;
}

.quantum-circle-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.constellation-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 255, 136, 0.2) 0%, transparent 70%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="20" y1="20" x2="80" y2="80" stroke="rgba(0,255,136,0.2)" stroke-width="0.5"/><line x1="20" y1="80" x2="80" y2="20" stroke="rgba(0,161,255,0.2)" stroke-width="0.5"/></svg>') center/contain no-repeat;
    animation: pulse 4s ease-in-out infinite;
}

.quantum-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 1%);
    background-size: 3px 3px;
    animation: twinkle 2s ease-in-out infinite;
}

.quantum-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.2), transparent 70%);
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Consistent Navigation Styles */
.app-pages-nav {
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 5%;
}

.app-pages-nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
}

.app-pages-nav .quantum-symbol {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.app-pages-nav .quantum-symbol:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

/* App Pages Styles */
.app-page-content {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(5, 5, 32, 0.98) 0%, rgba(13, 17, 23, 0.98) 100%);
}

.app-hero {
    position: relative;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top right, rgba(0, 255, 136, 0.1), transparent 70%),
        radial-gradient(circle at bottom left, rgba(0, 161, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.app-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.app-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.app-hero .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.app-hero .quantum-visualization {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.5;
}

/* App Pages Navigation */

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* App Pages Navigation */
.app-pages-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-pages-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.app-pages-nav .quantum-core {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--primary-color);
}

.app-pages-nav .quantum-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: rotate 10s linear infinite;
}

.app-pages-nav .quantum-orbit::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--secondary-color);
}

.app-pages-nav .logo:hover .quantum-symbol {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.app-pages-nav .logo h1 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-pages-nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-pages-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.app-pages-nav ul li a:hover {
    color: #fff;
    background: rgba(0, 255, 136, 0.1);
}

.app-pages-nav ul li a.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Content Sections */
.section-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin: 2rem 5%;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: sectionFadeIn 0.8s ease forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.section-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #fff;
}

.section-container p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-container ul {
    list-style: none;
    padding-left: 1.5rem;
}

.section-container ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    position: relative;
}

.section-container ul li::before {
    content: '•';
    color: #00ff88;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

@media (max-width: 768px) {
    .app-pages-nav nav {
        flex-direction: column;
        padding: 1rem;
    }

    .app-pages-nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }

    .app-hero h1 {
        font-size: 2rem;
    }

    .app-hero .subtitle {
        font-size: 1.1rem;
    }

    .section-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

.quantum-silhouette::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 161, 255, 0.1) 0%, transparent 50%);
    filter: blur(20px);
    animation: aurora 10s ease-in-out infinite alternate;
}

.human-figure {
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.8), rgba(0, 161, 255, 0.8));
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
    animation: figure-glow 4s ease-in-out infinite alternate;
}

.quantum-stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 1%);
    background-size: 4px 4px;
    animation: twinkle 3s ease-in-out infinite alternate;
    transform: scale(1.2);
}

.constellation-lines::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,50 80,20 T80,80" fill="none" stroke="rgba(0,255,136,0.2)" stroke-width="0.5"/></svg>') center/contain no-repeat;
    animation: rotate 30s linear infinite;
}

@keyframes aurora {
    0% {
        opacity: 0.5;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.05);
    }
}

@keyframes figure-glow {
    0% {
        filter: brightness(1) blur(0px);
        transform: scale(1);
    }
    100% {
        filter: brightness(1.2) blur(2px);
        transform: scale(1.05);
    }
}

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.8);
    border-radius: 50%;
    filter: blur(1px);
}

.quantum-particle:nth-child(2n) {
    background: rgba(0, 161, 255, 0.8);
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

/* App Screen Inventory Styles */
.screen-section {
    margin-bottom: 3rem;
}

.screen-section h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.screen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
}

.screen-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.screen-card ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.quantum-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.2), transparent 70%);
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite alternate;
}

.screen-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.screen-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.screen-card ul li:before {
    content: "•";
    color: #00ff88;
    position: absolute;
    left: 0;
}

.design-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.design-section h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.design-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.design-section ul li:before {
    content: "•";
    color: #00ff88;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .screen-grid {
        grid-template-columns: 1fr;
    }
    
    .screen-card {
        padding: 1.5rem;
    }
    
    .screen-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .screen-card h4 {
        font-size: 1.2rem;
    }
}

/* Market Analysis Styles */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 15px 0;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-detail {
    color: var(--medium-text);
    font-size: 0.9rem;
}

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

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

.demographic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.demographic-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.demographic-card p {
    color: var(--light-text);
    margin: 5px 0;
}

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

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

.competitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.competitor-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.competitor-card ul {
    list-style: none;
    padding: 0;
}

.competitor-card li {
    color: var(--light-text);
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.competitor-card li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Enhanced Pricing Table Styles */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-tier:hover::before {
    opacity: 1;
}

.tier-name {
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 15px;
    text-align: center;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    color: var(--light-text);
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.tier-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Partnership Page Styles */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

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

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.partnership-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.partnership-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.partnership-card p {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.partnership-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.partnership-card li {
    color: var(--light-text);
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.partnership-card li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.enterprise-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.enterprise-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.enterprise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.enterprise-card h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-info {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-info .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.pricing-info .period {
    color: var(--medium-text);
    font-size: 0.9rem;
}

.enterprise-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.enterprise-card .features li {
    color: var(--light-text);
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.enterprise-card .features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ubisoft-collaboration {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.collaboration-details,
.collaboration-benefits {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-details h3,
.collaboration-benefits h3 {
    color: var(--light-text);
    margin-bottom: 20px;
}

.collaboration-details ul,
.collaboration-benefits ul {
    list-style: none;
    padding: 0;
}

.collaboration-details li,
.collaboration-benefits li {
    color: var(--light-text);
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.collaboration-details li::before,
.collaboration-benefits li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(5, 5, 32, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.1);
}

.contact-form p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group .required {
    color: var(--accent-color);
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(110, 0, 255, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(110, 0, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184, 198, 219, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8c6db' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--medium-text);
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-container a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-container a:hover {
    color: var(--primary-color);
}

.submit-button {
    position: relative;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.button-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-button.loading .button-text {
    visibility: hidden;
}

.submit-button.loading .button-loading {
    display: block;
}

.hidden {
    display: none;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: rgba(255, 0, 0, 0.3);
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus,
.form-group select:invalid:focus {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

/* Success Message Styles */
.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.form-success i {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--medium-text);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.625rem 0.875rem;
    }
    
    .submit-button {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Market Analysis Page Styles */
.market-growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.growth-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.growth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.growth-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(0, 184, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-content {
    flex: 1;
}

.growth-content h3 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.growth-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.growth-stats .stat {
    text-align: center;
}

.growth-stats .value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.growth-stats .label {
    color: var(--medium-text);
    font-size: 0.9rem;
}

.growth-rate {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-align: center;
}

.demographic-details {
    margin-top: 15px;
}

.age-range {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.interests {
    color: var(--medium-text);
    margin-bottom: 15px;
}

.demographic-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.demographic-stats .stat {
    text-align: center;
}

.demographic-stats .value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.demographic-stats .label {
    color: var(--medium-text);
    font-size: 0.8rem;
}

.competitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.competitor-rating {
    color: #ffd700;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item .label {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-right: 10px;
}

.detail-item .value {
    color: var(--light-text);
    font-weight: bold;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.detail-item ul li {
    color: var(--light-text);
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
}

.detail-item ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

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

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

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.opportunity-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.opportunity-card p {
    color: var(--medium-text);
}

/* Implementation Framework Styles */
.implementation-framework {
    margin: 2rem 0;
}

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

.framework-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.framework-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.framework-card ul {
    list-style-type: none;
    padding: 0;
}

.framework-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.framework-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Risk Assessment Styles */
.risk-assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.risk-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.risk-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.risk-card ul {
    list-style-type: none;
    padding: 0;
}

.risk-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.risk-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.risk-card ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

/* Financial Projections Styles */
.financial-projections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.financial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.financial-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.financial-card ul {
    list-style-type: none;
    padding: 0;
}

.financial-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.financial-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Academic Timeline Styles */
.academic-timeline {
    margin: 2rem 0;
}

.academic-phase {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.academic-phase:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.academic-phase h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.academic-phase ul {
    list-style-type: none;
    padding: 0;
}

.academic-phase ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.academic-phase ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Enhanced Phase Styles */
.phase {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 0;
}

.phase-duration {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.phase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.phase-objectives h4,
.phase-deliverables h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phase-objectives ul,
.phase-deliverables ul {
    list-style-type: none;
    padding: 0;
}

.phase-objectives ul li,
.phase-deliverables ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.phase-objectives ul li::before,
.phase-deliverables ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.phase-objectives ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.phase-objectives strong {
    color: var(--accent-color);
}

/* Card Component Styles */
.card {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    border: var(--border-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background-color: var(--bg-hover);
}

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

.card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-title {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content {
    color: var(--medium-text);
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list-item {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.card-list-item::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

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

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

.grid-auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Animation System */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px var(--accent-color));
    }
    100% {
        filter: drop-shadow(0 0 20px var(--accent-color));
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn var(--transition-normal);
}

.animate-scale-in {
    animation: scaleIn var(--transition-normal);
}

.animate-slide-in {
    animation: slideIn var(--transition-normal);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform var(--transition-fast);
}

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

.hover-glow {
    transition: box-shadow var(--transition-fast);
}

.hover-glow:hover {
    box-shadow: var(--shadow-hover);
}

/* Button Component System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.2em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 184, 255, 0.1);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--light-text);
    box-shadow: var(--glow-accent);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Vision Text Animations */
.vision-text {
    position: relative;
    overflow: hidden;
}

.vision-text p {
    position: relative;
    transition: all 0.3s ease;
}

.vision-text p:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}

.vision-text strong {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.vision-text strong:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.vision-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.vision-text strong:hover::after {
    width: 100%;
}

/* Quantum Particle Cursor Effect */
.quantum-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 9999;
}

.quantum-cursor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    filter: blur(10px);
    animation: pulse 2s infinite;
}

.quantum-cursor::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    background: radial-gradient(circle, transparent 0%, var(--accent-color) 20%, transparent 70%);
    border-radius: 50%;
    animation: expand 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes expand {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0; }
}

/* Quantum Trail Effect */
.quantum-trail {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.quantum-trail-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(1px);
    animation: trailFade 1s forwards;
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Enhanced Quantum Particle Effects */
.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(1px);
    animation: quantumFloat 2s ease-in-out infinite;
    z-index: 1;
}

.quantum-particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    filter: blur(2px);
    animation: particlePulse 1.5s ease-in-out infinite;
}

.quantum-particle::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    background: radial-gradient(circle, transparent 0%, var(--accent-color) 20%, transparent 70%);
    border-radius: 50%;
    animation: particleExpand 2s infinite;
}

@keyframes quantumFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(10px, -10px) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes particlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

@keyframes particleExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Quantum Wave Effect */
.quantum-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.quantum-wave-circle {
    position: absolute;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    animation: waveExpand 2s ease-out forwards;
    opacity: 0;
}

@keyframes waveExpand {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced Text Interaction */
.vision-text p {
    position: relative;
    transition: all 0.3s ease;
    cursor: none;
}

.vision-text p:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}

.vision-text p::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vision-text p:hover::before {
    opacity: 0.1;
}

/* Quantum Orb Enhancement */
.quantum-orb {
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
}

.quantum-orb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-orb:hover::before {
    opacity: 0.5;
}

.quantum-orb:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
    box-shadow: 0 0 20px var(--accent-color);
}

.quantum-orb:active {
    transform: scale(0.9);
    filter: brightness(0.8);
}

.parameter-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.parameter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.parameter-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.parameter-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.parameter-card:hover .parameter-details {
    opacity: 1;
    max-height: none;
}

.parameter-details h4 {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1rem;
}

.parameter-details h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.2em;
    background: var(--accent-color);
    border-radius: 2px;
}

.parameter-details ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.parameter-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.parameter-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.parameter-card:hover .parameter-details li {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.parameter-card:hover .parameter-details li::before {
    color: var(--accent-color);
    transform: scale(1.2);
}

.parameter-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.parameter-card:hover .parameter-details p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

/* Add smooth scroll behavior for parameter details */
.parameter-details {
    scroll-behavior: smooth;
}

/* Add a subtle gradient background to parameter cards */
.parameter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.parameter-card:hover::before {
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
}

/* Add a subtle glow effect on hover */
.parameter-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-color) 0%,
        transparent 50%,
        var(--accent-color) 100%);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 17px;
}

.parameter-card:hover::after {
    opacity: 0.1;
}

/* Add a subtle animation for the parameter title */
.parameter-card h3 {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.parameter-card:hover h3 {
    color: var(--accent-color);
    transform: translateX(5px);
}

.parameter-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.parameter-card:hover h3::after {
    width: 100%;
}

/* Enhanced Quantum Parameter Interactions */
.parameter {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parameter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.parameter:hover::after {
    opacity: 1;
}

.parameter-icon {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parameter:hover .parameter-icon {
    transform: scale(1.2) rotate(15deg);
}

.parameter-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.parameter:hover .parameter-icon::before {
    opacity: 1;
}

/* Quantum Particle Effects */
.parameter:hover .quantum-particles {
    opacity: 1;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: quantumFloat 3s infinite ease-in-out;
}

/* Parameter Card Enhancements */
.parameter-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.parameter-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.parameter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.parameter-card:hover::before {
    transform: translateX(100%);
}

/* Interactive Details Panel */
.parameter-details {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parameter-card:hover .parameter-details {
    transform: translateY(0);
    opacity: 1;
}

.parameter-details li {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: calc(var(--index) * 0.1s);
}

.parameter-card:hover .parameter-details li {
    transform: translateX(0);
    opacity: 1;
}

/* Quantum Wave Effect */
.parameter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.parameter-card:hover::after {
    transform: scaleX(1);
}

/* Enhanced Text Interactions */
.parameter h3 {
    position: relative;
    display: inline-block;
}

.parameter h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-color), 
        transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.parameter:hover h3::after {
    transform: scaleX(1);
}

/* Mouse Tracking Effect */
.parameter {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.parameter:hover {
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
}

/* Add this JavaScript to your scripts.js file:
document.querySelectorAll('.parameter').forEach(parameter => {
    parameter.addEventListener('mousemove', (e) => {
        const rect = parameter.getBoundingClientRect();
        const x = ((e.clientX - rect.left) / rect.width) * 100;
        const y = ((e.clientY - rect.top) / rect.height) * 100;
        parameter.style.setProperty('--mouse-x', `${x}%`);
        parameter.style.setProperty('--mouse-y', `${y}%`);
    });
});
*/

/* Intersection Observer Effects */
.parameter-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.parameter-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Quantum Particle Animations */
@keyframes quantumFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0;
    }
}

/* Enhanced Parameter Card Transitions */
.parameter-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parameter Icon Enhancements */
.parameter-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parameter:hover .parameter-icon {
    transform: scale(1.2) rotate(15deg);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Parameter Text Enhancements */
.parameter h3 {
    transition: all 0.3s ease;
}

.parameter:hover h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.parameter p {
    transition: all 0.3s ease;
}

.parameter:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Parameter Details Enhancements */
.parameter-details {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parameter-card:hover .parameter-details {
    transform: translateY(0) scale(1.02);
}

.parameter-details h4 {
    transition: all 0.3s ease;
}

.parameter-card:hover .parameter-details h4 {
    color: var(--accent-color);
}

.parameter-details li {
    transition: all 0.3s ease;
}

.parameter-card:hover .parameter-details li {
    transform: translateX(0);
    opacity: 1;
}

/* Quantum Wave Effect Enhancement */
.parameter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-color), 
        transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.parameter-card:hover::after {
    transform: scaleX(1);
}

/* Mouse Tracking Enhancement */
.parameter {
    --mouse-x: 50%;
    --mouse-y: 50%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    transition: background 0.3s ease;
}

.parameter:hover {
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
}

/* Enhanced Science Section Styles */
.science {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.science-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.science-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(5, 5, 32, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.science-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--medium-text);
    transition: color 0.3s ease;
}

.science-text p:hover {
    color: var(--light-text);
}

.science-text strong {
    color: var(--accent-color);
    position: relative;
    transition: all 0.3s ease;
}

.science-text strong:hover {
    text-shadow: var(--glow-accent);
}

.science-cta {
    margin-top: 2rem;
    text-align: center;
}

.science-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.science-cta .cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.science-cta .cta-button:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Quantum Particles Background */
.science::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .science {
        padding: 4rem 1rem;
    }
    
    .science-text {
        padding: 1.5rem;
    }
    
    .science-text p {
        font-size: 1.1rem;
    }
    
    .science-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Consciousness Bands Styles */
.consciousness-bands {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.consciousness-bands h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.consciousness-bands > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.band {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.band:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.band h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.band > p {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.band ul {
    list-style-type: none;
    padding: 0;
}

.band ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.band ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .consciousness-bands {
        padding: 1rem;
    }
    
    .consciousness-bands h2 {
        font-size: 2rem;
    }
    
    .bands {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Hero Styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-visualization {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin-top: 2rem;
}

/* Enhanced Band Styles */
.band {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.band-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.band:hover .band-icon {
    transform: scale(1.2);
}

.band-progress {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Enhanced Tech Card Styles */
.tech-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tech-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2);
}

.tech-progress {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-progress .progress-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.tech-progress span {
    color: var(--medium-text);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-visualization {
        height: 200px;
    }
    
    .band, .tech-card {
        padding: 1.5rem;
    }
    
    .band-icon, .tech-icon {
        font-size: 1.5rem;
    }
}

/* Resource Navigation Styles */
.resource-navigation-container {
    background: var(--darker-bg);
    padding: 1rem 0;
    border-bottom: var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.resource-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.resource-navigation::-webkit-scrollbar {
    display: none;
}

.resource-nav-item {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
    white-space: nowrap;
}

.resource-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-secondary);
    color: white;
}

.resource-nav-item.current {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    pointer-events: none;
}

/* App Pages Navigation */
.app-pages-nav {
    background: var(--darker-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.app-pages-nav nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-pages-nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.app-pages-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.app-pages-nav a {
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.app-pages-nav a:hover,
.app-pages-nav a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Enhanced Roadmap Styles */
.roadmap-progress {
    display: none; /* Remove the general progress bar */
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phase-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.phase-progress {
    display: none; /* Remove phase progress bars */
}

.expand-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.expand-button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-secondary);
}

.expand-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.expand-button.active i {
    transform: rotate(180deg);
}

.phase-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-details.active {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.timeline-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--glow-primary);
}

.progress-container {
  background: rgba(18, 18, 24, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  margin: 2rem 0;
  max-width: 600px;
}

.progress-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.progress-header .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  color: white;
}

.progress-title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-label {
  color: #e2e8f0;
  font-weight: 500;
}

.progress-percentage {
  color: #94a3b8;
  font-weight: 600;
}

.progress-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
  width: 0;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

/* Mastery Paths Section */
.mastery-paths {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.paths-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.path {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.path:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.path-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.path-icon.mind {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.path-icon.energy {
    background: linear-gradient(45deg, #ff9900, #ff00ff);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5);
}

.path-icon.dimensional {
    background: linear-gradient(45deg, #00ff00, #00ffff);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.path-icon.manifestation {
    background: linear-gradient(45deg, #ff0000, #ff9900);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.path-icon.earth {
    background: linear-gradient(45deg, #00ff88, #00ffcc);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.path h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.path p {
    color: var(--medium-text);
    margin-bottom: 1rem;
}

.path ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.path ul li {
    color: var(--medium-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.path ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.stage-progression {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.stage-progression h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stage-progression ul {
    margin: 0;
}

.stage-progression ul li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.stage-progression strong {
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .paths-container {
        grid-template-columns: 1fr;
    }
    
    .path {
        padding: 1.5rem;
    }
}

/* Enhanced Mastery Paths Styles */
.path {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.path-hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.path-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.3s ease-in-out;
}

.path-details h4 {
    color: var(--secondary-color);
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.path-details ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.path-details li {
    color: var(--medium-text);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.toggle-details {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.toggle-details:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .path-details {
        padding: 0.8rem;
    }
    
    .path-details h4 {
        font-size: 1rem;
    }
    
    .path-details li {
        font-size: 0.8rem;
    }
    
    .toggle-details {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.framework-cta {
    text-align: center;
    margin-top: 2rem;
}

.framework-cta .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
}

.back-link i {
    font-size: 0.9rem;
}

/* Visual Preview Section Styles */
.visual-preview-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(13, 12, 34, 0.95) 0%, rgba(28, 27, 60, 0.95) 100%);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.visual-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(77, 201, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.visual-preview-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #8a2be2, #4dc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.visual-preview-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, #4dc9ff, transparent);
}

.visual-preview-section .section-description {
    text-align: center;
    color: #a8b2d1;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.interface-preview-grid {
    display: grid;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.preview-card {
    background: rgba(20, 20, 45, 0.8);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 2px 8px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3rem;
    position: relative;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.3), rgba(77, 201, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(31, 38, 135, 0.25),
        0 4px 12px rgba(138, 43, 226, 0.15);
}

.preview-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(77, 201, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-card:hover .preview-image::after {
    opacity: 1;
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover .preview-image img {
    transform: scale(1.03);
}

.preview-description {
    padding: 0;
}

.preview-description h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #8a2be2, #4dc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.preview-description p {
    color: #a8b2d1;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

.preview-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.preview-features li {
    color: #a8b2d1;
    display: flex;
    align-items: center;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.preview-features li:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateX(5px);
}

.preview-features li i {
    color: #8a2be2;
    margin-right: 1rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.preview-features li:hover i {
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .interface-preview-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .preview-card {
        padding: 3.5rem;
    }
    
    .preview-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (min-width: 1024px) {
    .preview-card {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
        padding: 4rem;
    }

    .preview-image {
        margin-bottom: 0;
    }

    .preview-description {
        padding-left: 1rem;
    }
}

@media (min-width: 1440px) {
    .preview-card {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
        padding: 4.5rem;
    }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Stagger children animations */
.tech-grid .tech-card,
.features-grid .feature {
    opacity: 0;
    transform: translateY(20px);
    animation: itemFadeIn 0.6s ease forwards;
}

.tech-grid .tech-card:nth-child(1) { animation-delay: 0.2s; }
.tech-grid .tech-card:nth-child(2) { animation-delay: 0.4s; }
.tech-grid .tech-card:nth-child(3) { animation-delay: 0.6s; }

.features-grid .feature:nth-child(1) { animation-delay: 0.2s; }
.features-grid .feature:nth-child(2) { animation-delay: 0.3s; }
.features-grid .feature:nth-child(3) { animation-delay: 0.4s; }
.features-grid .feature:nth-child(4) { animation-delay: 0.5s; }
.features-grid .feature:nth-child(5) { animation-delay: 0.6s; }
.features-grid .feature:nth-child(6) { animation-delay: 0.7s; }

@keyframes itemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover interactions */
.tech-card ul li,
.feature ul li {
    position: relative;
    z-index: 1;
}

.tech-card ul li::before,
.feature ul li::before {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tech-card:hover ul li,
.feature:hover ul li {
    color: #fff;
}

/* Quantum particle effects */
.tech-card::after,
.feature::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover::after,
.feature:hover::after {
    opacity: 1;
    animation: quantumFloat 4s ease-in-out infinite;
}

@keyframes quantumFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* MVP Section Styles */
.mvp-section {
    position: relative;
    padding: 6rem 0;
}

.mvp-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.quantum-card {
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 45, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantum-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(138, 43, 226, 0.1) 0%, 
        rgba(77, 201, 255, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-card:hover .quantum-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-progress {
    margin: 1rem 0;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8a2be2, #4dc9ff);
    border-radius: 3px;
    transition: width 1s ease;
}

.feature-progress span {
    display: block;
    font-size: 0.9rem;
    color: #a8b2d1;
    margin-top: 0.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #a8b2d1;
    transition: all 0.3s ease;
}

.quantum-card:hover .tag {
    background: rgba(138, 43, 226, 0.3);
    color: #fff;
}

/* Future Vision Section Styles */
.future-vision-section {
    position: relative;
    padding: 6rem 0;
}

.vision-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-phase {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 4rem;
}

.phase-marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.phase-icon i {
    font-size: 1.5rem;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.phase-date {
    font-size: 0.9rem;
    color: #a8b2d1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-top: 1rem;
}

.future-grid {
    display: grid;
    gap: 2rem;
}

.feature-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(77, 201, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4dc9ff;
    margin-bottom: 1rem;
}

/* Integration Section Styles */
.integration-section {
    position: relative;
    padding: 6rem 0;
}

.integration-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.integration-card {
    background: rgba(20, 20, 45, 0.8);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.3), rgba(77, 201, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.integration-icon {
    width: 70px;
    height: 70px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(138, 43, 226, 0.3);
}

.integration-icon i {
    font-size: 2rem;
    background: linear-gradient(90deg, #8a2be2, #4dc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.integration-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.integration-list li i {
    font-size: 1.2rem;
    color: #8a2be2;
}

.integration-list li span {
    flex: 1;
    color: #a8b2d1;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.ready {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.status-badge.in-progress {
    background: rgba(255, 171, 0, 0.2);
    color: #ffab00;
}

.status-badge.planned {
    background: rgba(77, 201, 255, 0.2);
    color: #4dc9ff;
}

.status-badge.implemented {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.status-badge.verified {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .mvp-grid,
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .mvp-grid,
    .future-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-features-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(13, 13, 35, 0.95) 0%, rgba(20, 20, 45, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.advanced-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/sacred-geometry-bg.png') center/cover no-repeat;
    opacity: 0.1;
    animation: rotateBackground 60s linear infinite;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advanced-feature {
    background: rgba(25, 25, 55, 0.7);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.advanced-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a6c 0%, #15154d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.advanced-feature .feature-icon i {
    font-size: 24px;
    color: #fff;
    animation: pulseIcon 2s infinite;
}

.advanced-feature:hover .feature-icon i {
    animation: pulseIconHover 1s infinite;
}

.advanced-feature h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advanced-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.advanced-feature .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 2;
}

.advanced-feature .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.advanced-feature .feature-list li i {
    color: #4a90e2;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.advanced-feature:hover .feature-list li {
    transform: translateX(5px);
}

.advanced-feature:hover .feature-list li i {
    color: #64ffda;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes pulseIconHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .advanced-features-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-feature {
        padding: 1.5rem;
    }
}

.footer-section {
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

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

.footer-section ul li {
    position: relative;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 161, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-section ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-section ul li a::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-section {
        flex: 1;
        margin-bottom: 0;
        padding: 0 1rem;
    }

    .footer-section:first-child {
        flex: 2;
    }
}

.social-links {
    display: flex;
    gap: 2.1rem;
    margin-top: 2.1rem;
    margin-bottom: 2.1rem;
    justify-content: left;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color) 60%, var(--accent-color) 100%);
    border-radius: 50%;
    box-shadow: 0 0 16px 2px var(--primary-color), 0 2px 16px 0 var(--accent-color);
    padding: 0.1rem;
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    outline: none;
}

.social-links a:focus-visible {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-color), 0 0 16px 2px var(--primary-color);
}

.social-links a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color) 60%, var(--primary-color) 100%);
    box-shadow: 0 0 24px 4px var(--accent-color), 0 4px 24px 0 var(--primary-color);
    transform: translateY(-4px) scale(1.12);
    z-index: 2;
}

.social-links a:active {
    transform: scale(0.97);
}

.social-links a i {
    font-size: 1.5em;
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover i {
    color: #fff;
    transform: scale(1.18);
}

/* Enhanced Contact Us Button */
.contact-info {
    width: 70%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2.5rem;
    padding: 0.3rem 2.1rem;
    text-decoration: none;
    box-shadow: 0 0 18px 2px var(--primary-color), 0 2px 18px 0 var(--accent-color);
    border: 2px solid transparent;
    outline: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 0.5rem;
}

.contact-info a:focus-visible {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-color), 0 0 18px 2px var(--primary-color);
}

.contact-info a:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 28px 6px var(--accent-color), 0 4px 28px 0 var(--primary-color);
    transform: translateY(-2px) scale(1.06);
    z-index: 2;
}

.contact-info a:active {
    transform: scale(0.97);
}

.contact-info a i {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}

.contact-info a:hover i {
    color: var(--accent-color);
    transform: scale(1.22);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .social-links {
        gap: 1.1rem;
        margin-top: 1.1rem;
        margin-bottom: 1.1rem;
        justify-content: center;
    }
    .social-links a {
        font-size: 1.5rem;
        width: 2.7rem;
        height: 2.7rem;
        padding: 0.6rem;
    }
    .contact-info {
        width: 100%;
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    .contact-info a {
        font-size: 1.08rem;
        padding: 0.6rem 1.5rem;
        border-radius: 2rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.7rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    .social-links a {
        font-size: 1.1rem;
        width: 2.1rem;
        height: 2.1rem;
        padding: 0.4rem;
    }
    .contact-info a {
        font-size: 0.98rem;
        padding: 0.5rem 1.1rem;
        border-radius: 1.5rem;
    }
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Quantum Particles System */
.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: translate(0, 0);
    animation: particleFloat 3s infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Enhanced Background Effects */
header .logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(110, 0, 255, 0.15) 0%,
        rgba(0, 184, 255, 0.1) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: rotateBackground 8s linear infinite;
}

/* New Animations */
@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty));
    }
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Quantum States Grid */
.quantum-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.quantum-state-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.quantum-state-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
                               rgba(79, 195, 247, 0.1) 0%,
                               transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantum-state-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(79, 195, 247, 0.1);
}

.quantum-state-card:hover::before {
    opacity: 1;
    animation: quantum-pulse 2s infinite;
}

.quantum-state-icon {
    position: relative;
    font-size: 2rem;
    margin-bottom: 0.875rem;
    color: #4fc3f7;
    text-align: center;
    transition: transform 0.4s ease;
}

.quantum-state-card:hover .quantum-state-icon {
    transform: scale(1.1);
}

.quantum-state-card h3 {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.quantum-state-card p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.quantum-state-hover {
    position: relative;
    width: 100%;
    padding: 0.75rem 0 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.quantum-state-card:hover .quantum-state-hover {
    opacity: 1;
    transform: translateY(0);
}

.quantum-state-hover span {
    color: #4fc3f7;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

@keyframes quantum-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .quantum-states-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .quantum-states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .quantum-states-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .quantum-state-card {
        padding: 1.25rem;
    }
}

/* Highlight effect for parameter sections */
.parameter-card.highlight {
    animation: highlight-pulse 2s ease-in-out;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

/* Staged Disclosure Protocol Styles */
.stage-progress {
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transition: width 0.3s ease;
}

.progress-text {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.stage-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.stage-details.active {
    opacity: 1;
    max-height: none;
}

.toggle-details {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.toggle-details::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.toggle-details.active::after {
    transform: rotate(180deg);
}

.toggle-details:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.interactive-elements {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.interactive-elements button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--quantum-blue), var(--quantum-purple));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.interactive-elements button span {
    position: relative;
    z-index: 1;
}

.coming-soon {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.learning-metrics,
.practical-exercises,
.scientific-background {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.learning-metrics h4,
.practical-exercises h4,
.scientific-background h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learning-metrics h4::before {
    content: '\f51c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.practical-exercises h4::before {
    content: '\f5b3';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.scientific-background h4::before {
    content: '\f0c3';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.learning-metrics ul,
.practical-exercises ul,
.scientific-background ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.learning-metrics li,
.practical-exercises li,
.scientific-background li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learning-metrics li:hover,
.practical-exercises li:hover,
.scientific-background li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .learning-metrics ul,
    .practical-exercises ul,
    .scientific-background ul {
        grid-template-columns: 1fr;
    }
}

/* Staged Learning System Styles */
.stages-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stages-container .stage {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stages-container .stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.stages-container .stage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ff88, #00a1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stages-container .stage h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-align: center;
}

.stages-container .stage p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .stages-container .stage {
        padding: 1rem;
    }
    
    .stages-container .stage h3 {
        font-size: 1.1rem;
    }
    
    .stages-container .stage p {
        font-size: 0.85rem;
    }
    
    .stage-details {
        padding: 0.8rem;
    }
}

/* App Sidebar Styles */
.app-sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 250px;
    height: calc(100vh - 80px);
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 900;
    transition: all var(--transition-normal);
    overflow-y: auto;
    overflow-x: hidden;
}

.app-sidebar.collapsed {
    width: 70px;
    padding: 1.5rem 0.5rem;
}

.app-sidebar.collapsed .app-sidebar-section h3,
.app-sidebar.collapsed .app-sidebar-nav span {
    display: none;
}

.app-sidebar.collapsed .app-sidebar-nav a {
    justify-content: center;
    padding: 0.75rem;
}

.app-sidebar.collapsed .app-sidebar-nav i {
    margin-right: 0;
    font-size: 1.2rem;
}

.app-sidebar-toggle {
    position: absolute;
    right: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 901;
    box-shadow: var(--shadow-md);
}

.app-sidebar-toggle:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.app-sidebar-toggle i {
    color: white;
    transition: transform var(--transition-fast);
}

.app-sidebar.collapsed .app-sidebar-toggle i {
    transform: rotate(180deg);
}

.app-sidebar-section {
    padding: 2rem 1rem;
    padding-top: 4rem; /* Added extra padding to move buttons lower */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-sidebar-section h3 {
    color: var(--medium-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.app-sidebar-nav {
    list-style: none;
}

.app-sidebar-nav li {
    margin-bottom: 0.5rem;
}

.app-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--medium-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.app-sidebar-nav a span {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.app-sidebar-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.app-sidebar-nav a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1rem;
    background: var(--darker-bg);
    color: var(--light-text);
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.app-sidebar-nav a:hover {
    color: var(--light-text);
    transform: translateX(5px);
    text-shadow: var(--glow-primary);
}

.app-sidebar-nav a:hover span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.app-sidebar-nav a:hover::before {
    opacity: 0.1;
}

.app-sidebar-nav a:hover::after {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 10px);
}

.app-sidebar-nav a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

.app-sidebar-nav i {
    transition: all 0.3s ease;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.app-sidebar-nav a.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.app-page-content {
    margin-left: 250px;
    transition: margin-left var(--transition-normal);
    padding: 2rem;
}

.app-page-content.sidebar-collapsed {
    margin-left: 70px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .app-sidebar {
        transform: translateX(-100%);
        width: 250px;
    }
    
    .app-sidebar.active {
        transform: translateX(0);
    }
    
    .app-page-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .app-page-content.sidebar-collapsed {
        margin-left: 0;
    }
    
    .app-sidebar-toggle {
        display: none;
    }
}

.app-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* Account for fixed header */
}

.app-sidebar {
    position: sticky;
    top: 80px; /* Align with the header */
    width: 250px;
    height: calc(100vh - 80px); /* Full viewport height minus header */
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
    flex-shrink: 0;
    overflow-y: auto; /* Enable scrolling if content is too long */
}

.app-page-content {
    flex: 1;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

footer {
    position: relative;
    width: 100%;
    background: rgba(5, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

@media (max-width: 768px) {
  .timeline {
    max-width: 100vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .timeline:before {
    left: 18px;
    margin-left: 0;
    width: 3px;
  }
  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding: 10px 0 10px 40px !important;
    min-width: 0;
    box-sizing: border-box;
  }
  .timeline-dot {
    left: 0 !important;
    right: auto !important;
  }
  .timeline-content {
    padding: 16px 16px 16px 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .resources-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .resource-card {
    min-width: 80vw;
    max-width: 90vw;
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: box-shadow 0.3s;
  }
  .resources-grid::-webkit-scrollbar {
    display: none;
  }
  .resources-grid::after {
    content: '';
    flex: 0 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .resources-indicator {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .resources-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
  }
  .resources-indicator .dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
    border-color: var(--accent-color);
  }
}

@media (max-width: 768px) {
  .app-content {
    display: block;
    padding: 0.5rem;
  }
  .app-text {
    padding: 1rem 0.5rem;
    font-size: 1.08rem;
  }
  .app-features {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .app-feature {
    min-width: 80vw;
    max-width: 90vw;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
  }
  .app-visualization {
    max-width: 100vw;
    margin: 1.5rem auto 1rem auto;
    height: 260px;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .app-mockup {
    width: 180px;
    height: 260px;
    padding: 6px;
    border-radius: 24px;
  }
  .cta-buttons {
    position: sticky;
    bottom: 0.5rem;
    background: rgba(5,5,32,0.92);
    z-index: 10;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    margin-bottom: 0.5rem;
    gap: 0.7rem;
    display: flex;
    flex-direction: column;
  }
  .cta-button {
    font-size: 1.08rem;
    padding: 0.9rem 1.2rem;
  }
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--medium-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.partnership-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0;
}

.partnership-description {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.partnership-benefits,
.partnership-features {
    text-align: left;
    margin: 20px 0;
}

.partnership-benefits h4,
.partnership-features h4 {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.partnership-benefits ul,
.partnership-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-benefits li,
.partnership-features li {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.partnership-benefits li::before,
.partnership-features li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.partnership-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.partnership-card:hover .quantum-state-hover {
    opacity: 1;
    transform: translateY(0);
}

.quantum-state-hover {
    margin-top: auto;
    padding-top: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.quantum-state-hover span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--dark-background);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantum-state-hover:hover span {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
}

.partnership-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-cta p {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.partnership-cta .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partnership-card {
        padding: 20px;
    }

    .partnership-subtitle {
        font-size: 1rem;
    }

    .partnership-description {
        font-size: 0.9rem;
    }

    .partnership-cta {
        padding: 20px;
        margin-top: 30px;
    }

    .partnership-cta p {
        font-size: 1.1rem;
    }
}

.partnership-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

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

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

.metric-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.metric-card h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.metric-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.metric-details li {
    color: var(--medium-text);
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.metric-details li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.partnership-metrics-preview {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.partnership-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(110, 0, 255, 0.1), rgba(0, 184, 255, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 992px) {
    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partnership-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-card {
        padding: 20px;
    }

    .partnership-metrics-preview {
        flex-direction: column;
        gap: 15px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .partnership-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* Partnership Form Dropdown Fix */
.form-group select,
.form-group select option {
    background-color: #181836;
    color: #fff;
}

.form-group select:focus,
.form-group select option:focus {
    background-color: #23234a;
    color: #fff;
}

/* Hide resource navigation on mobile (handled by hamburger menu) */
@media (max-width: 767px) {
  .resource-navigation-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  header .logo h1 {
    font-size: 2rem;
    line-height: 0.75;
  }
  header .quantum-symbol {
    width: 50px;
    height: 50px;
  }
  header .logo {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .quantum-symbol {
    width: 40px;
    height: 40px;
  }
  .logo h1 {
    font-size: 2.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    transform: translateY(8px); /* Added for perfect optical centering */
  }
  .mobile-menu-button {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1rem;
    min-height: unset;
    margin-top: 60px;
  }
  .hero-content, .hero-image {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Modern QUANNEX desktop logo text styles */
header .logo-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(110, 0, 255, 0.3), 0 2px 8px rgba(0,184,255,0.15);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  outline: none;
  user-select: none;
  display: inline-block;
}
header .logo-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
header .logo-text:hover,
header .logo-text:focus {
  text-shadow: 0 0 30px rgba(110,0,255,0.5), 0 4px 16px rgba(0,184,255,0.25);
  transform: scale(1.04);
  letter-spacing: 2.5px;
}
header .logo-text:hover::after,
header .logo-text:focus::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  header .logo-text {
    font-size: 2rem;
    letter-spacing: 1.2px;
  }
}

/* === Entanglement Log Button (Quantum Effect) === */
.entanglement-log-container {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  z-index: 1302;
  display: flex;
  justify-content: flex-end;
  width: auto;
  pointer-events: auto;
  margin: 0;
  backdrop-filter: blur(8px) saturate(1.5);
  background: rgba(30, 0, 60, 0.18);
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(110,0,255,0.12), 0 1.5px 8px 0 rgba(0,184,255,0.10);
}
.entanglement-log-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2.8rem 0.85rem 2.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, rgba(110,0,255,0.45) 0%, rgba(0,184,255,0.38) 50%, rgba(0,255,208,0.32) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 2.5rem;
  box-shadow: 0 4px 32px 0 rgba(110,0,255,0.18), 0 1.5px 8px 0 rgba(0,184,255,0.12);
  cursor: pointer;
  overflow: hidden;
  z-index: 1303;
  outline: none;
  opacity: 0;
  transform: translateY(-120%);
  animation: entangleCurtainIn 1.1s cubic-bezier(.4,2,.3,1) 0.2s forwards;
  transition: box-shadow 0.25s, background 0.5s, transform 0.18s cubic-bezier(.4,2,.3,1);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
}
.entanglement-log-btn .quantum-icon {
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
  filter: drop-shadow(0 0 8px #00B8FF88);
  transition: filter 0.3s;
}
.entanglement-log-btn:focus-visible {
  outline: 2.5px solid #00FFD0;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #00FFD055, 0 4px 32px 0 rgba(110,0,255,0.18);
}
.entanglement-log-btn:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px 0 #00B8FF55, 0 1.5px 8px 0 #6E00FF33;
  transform: scale(1.045) translateY(-2px);
}
.entanglement-log-btn:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 2px 12px 0 #6E00FF33;
}
.entanglement-log-btn .entanglement-log-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 60% 40%, #00B8FF55 0%, #6E00FF33 100%);
  opacity: 0.8;
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s, filter 0.3s;
  animation: quantumGlowPulse 2.5s infinite alternate;
}
.entanglement-log-btn:hover .entanglement-log-glow {
  opacity: 1;
  filter: blur(24px);
}
.entanglement-log-btn .entanglement-log-text {
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px #6E00FF44, 0 1px 2px #00B8FF33;
  font-family: var(--font-heading, 'Orbitron', 'Montserrat', sans-serif);
}
@keyframes entangleCurtainIn {
  0% { opacity: 0; transform: translateY(-120%); }
  60% { opacity: 1; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes quantumGlowPulse {
  0% { opacity: 0.7; filter: blur(18px); }
  50% { opacity: 1; filter: blur(28px); }
  100% { opacity: 0.7; filter: blur(18px); }
}
@keyframes quantumGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.entanglement-log-btn {
  animation: entangleCurtainIn 1.1s cubic-bezier(.4,2,.3,1) 0.2s forwards, quantumGradient 4.5s ease-in-out infinite;
}
/* Ripple effect */
.entanglement-log-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animate 0.6s linear;
  background: rgba(0,255,255,0.25);
  pointer-events: none;
  z-index: 2;
}
@keyframes ripple-animate {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .entanglement-log-container { display: none !important; }
}
/* === End Entanglement Log Button === */