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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-cyan: #00ffff;
    --primary-magenta: #ff00ff;
    --primary-blue: #0080ff;
    --accent-purple: #8000ff;
    --dark-bg: #000000;
    --dark-surface: #111111;
    --dark-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --glow-cyan: rgba(0, 255, 255, 0.5);
    --glow-magenta: rgba(255, 0, 255, 0.5);
    --glow-blue: rgba(0, 128, 255, 0.5);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0.8;
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: var(--dark-elevated);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    width: 0%;
    animation: loading 3s ease-in-out forwards;
}

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

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.brand-tagline {
    font-size: 1.2rem;
    color: var(--primary-magenta);
    text-shadow: 0 0 10px var(--glow-magenta);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--glow-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--glow-cyan);
}

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

.nav-cta {
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-magenta));
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--dark-bg) !important;
    font-weight: 600;
    text-shadow: none !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    color: var(--dark-bg) !important;
}

.sound-toggle {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
}

.sound-icon {
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--primary-cyan);
    opacity: 0.7;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--primary-cyan);
    font-weight: 500;
    z-index: 2;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: badge-pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-magenta), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-cyan);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 100px;
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-cyan);
    color: var(--dark-bg);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--primary-cyan);
    margin: 0 auto 10px;
    animation: scroll-bounce 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-cyan);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Organic Section */
.organic {
    background: linear-gradient(135deg, #001a1a 0%, #000d1a 100%);
}

.organic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.organic-visual {
    position: relative;
}

.pcb-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.pcb-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--glow-cyan));
}

.pcb-base {
    fill: var(--dark-elevated);
    stroke: var(--primary-cyan);
    stroke-width: 1;
    opacity: 0.8;
}

.trace {
    fill: none;
    stroke: var(--primary-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px var(--glow-cyan));
    animation: trace-glow 3s ease-in-out infinite;
}

.trace-1 { animation-delay: 0s; }
.trace-2 { animation-delay: 1s; }
.trace-3 { animation-delay: 2s; }

@keyframes trace-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; stroke-width: 3; }
}

.trace-healing {
    stroke: var(--primary-magenta);
    stroke-width: 3;
    animation: healing-trace 4s ease-in-out infinite;
}

@keyframes healing-trace {
    0%, 25% { opacity: 0; }
    50%, 75% { opacity: 1; }
    100% { opacity: 0; }
}

.component {
    fill: var(--primary-magenta);
    stroke: var(--primary-cyan);
    stroke-width: 1;
    animation: component-pulse 2s ease-in-out infinite;
}

.chip {
    fill: var(--dark-elevated);
    stroke: var(--primary-blue);
    stroke-width: 2;
}

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

.particle {
    fill: var(--primary-magenta);
    animation: particle-flow 3s ease-in-out infinite;
}

@keyframes particle-flow {
    0% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(20px); }
}

.organic-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-card:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-dna, .icon-evolution, .icon-print {
    width: 30px;
    height: 30px;
    background: var(--primary-cyan);
    border-radius: 50%;
    position: relative;
}

.icon-dna::before, .icon-dna::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-dna::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-cyan);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Symbiosis Section */
.symbiosis {
    background: linear-gradient(135deg, #1a001a 0%, #0d001a 100%);
}

.symbiosis-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.symbiosis-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.human-silhouette {
    width: 120px;
    height: 300px;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 255, 255, 0.1) 30%, rgba(0, 255, 255, 0.2) 40%, rgba(0, 255, 255, 0.1) 60%, transparent 80%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 60px 60px 30px 30px;
    position: relative;
    overflow: hidden;
}

.brain-area {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-magenta) 0%, transparent 70%);
    border-radius: 50%;
    animation: brain-activity 2s ease-in-out infinite;
}

@keyframes brain-activity {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.neural-pathways {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 200px;
}

.pathway {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-magenta), transparent);
    animation: neural-pulse 3s ease-in-out infinite;
}

.pathway-1 {
    left: 20px;
    top: 0;
    animation-delay: 0s;
}

.pathway-2 {
    left: 40px;
    top: 30px;
    animation-delay: 1s;
}

.pathway-3 {
    left: 60px;
    top: 60px;
    animation-delay: 2s;
}

@keyframes neural-pulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

.device-interface {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface-core {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    animation: core-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-cyan);
}

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

.interface-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 1px solid var(--primary-cyan);
    border-radius: 50%;
    animation: ring-rotate 10s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    opacity: 0.8;
}

.ring-2 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    opacity: 0.6;
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    opacity: 0.4;
    animation-duration: 20s;
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.symbiosis-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--primary-magenta);
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--glow-magenta);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Ascension Section */
.ascension {
    background: linear-gradient(135deg, #001a1a 0%, #1a0033 100%);
}

.ascension-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.ascension-visual {
    position: relative;
    height: 400px;
}

.consciousness-transfer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.physical-form {
    width: 100px;
    height: 200px;
    position: relative;
}

.form-outline {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50px 50px 20px 20px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.consciousness-data {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-magenta) 0%, transparent 70%);
    border-radius: 50%;
    animation: consciousness-flow 4s ease-in-out infinite;
}

@keyframes consciousness-flow {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.3; transform: translateX(-50%) scale(0.5); }
}

.transfer-stream {
    flex: 1;
    height: 2px;
    position: relative;
    margin: 0 40px;
}

.data-flow {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta), var(--primary-blue));
    position: relative;
    overflow: hidden;
}

.data-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: data-transfer 2s ease-in-out infinite;
}

@keyframes data-transfer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.digital-realm {
    width: 120px;
    height: 120px;
    position: relative;
}

.cloud-network {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-blue) 0%, var(--primary-magenta) 100%);
    border-radius: 50%;
    animation: network-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px var(--glow-blue);
}

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

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.network-connections::before,
.network-connections::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 1px;
    background: var(--primary-blue);
    top: 50%;
    left: 50%;
    transform-origin: left center;
    animation: connection-rotate 8s linear infinite;
}

.network-connections::after {
    animation-delay: 4s;
}

@keyframes connection-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.ascension-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 128, 255, 0.05);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 128, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--glow-blue);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0d1a 100%);
}

.roadmap-content {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-magenta), var(--primary-blue));
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--glow-cyan);
}

.phase-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.phase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-item:nth-child(even) .phase-content {
    text-align: right;
}

.phase-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.phase-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.phase-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    border-radius: 50%;
    animation: phase-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes phase-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.phase-content {
    width: 45%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.phase-content:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: var(--primary-cyan);
    transform: scale(1.02);
}

.phase-years {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--primary-magenta);
    margin-bottom: 10px;
    opacity: 0.8;
}

.phase-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-cyan);
}

.phase-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.phase-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    border-radius: 2px;
    transition: width 1s ease;
    box-shadow: 0 0 10px var(--glow-cyan);
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Collective Section */
.collective {
    background: linear-gradient(135deg, #000 0%, #001122 100%);
}

.collective-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.collective-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.role-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.role-card:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.role-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-cyan);
}

.role-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.network-visualization {
    width: 100%;
    height: 100%;
    position: relative;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    animation: center-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-cyan);
}

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

.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-magenta);
    border-radius: 50%;
    animation: node-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-magenta);
}

.node-1 { top: 10%; left: 50%; animation-delay: 0s; }
.node-2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.node-3 { bottom: 30%; right: 15%; animation-delay: 1s; }
.node-4 { bottom: 10%; left: 50%; animation-delay: 1.5s; }
.node-5 { bottom: 30%; left: 15%; animation-delay: 2s; }
.node-6 { top: 30%; left: 15%; animation-delay: 2.5s; }

@keyframes node-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    transform-origin: center;
    animation: connection-glow 4s ease-in-out infinite;
}

.connection-1 {
    top: 20%;
    left: 50%;
    width: 60px;
    transform: translate(-50%, -50%) rotate(30deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 40%;
    right: 25%;
    width: 50px;
    transform: rotate(60deg);
    animation-delay: 0.7s;
}

.connection-3 {
    bottom: 40%;
    right: 25%;
    width: 50px;
    transform: rotate(-60deg);
    animation-delay: 1.4s;
}

.connection-4 {
    bottom: 20%;
    left: 50%;
    width: 60px;
    transform: translate(-50%, 50%) rotate(-30deg);
    animation-delay: 2.1s;
}

.connection-5 {
    bottom: 40%;
    left: 25%;
    width: 50px;
    transform: rotate(60deg);
    animation-delay: 2.8s;
}

.connection-6 {
    top: 40%;
    left: 25%;
    width: 50px;
    transform: rotate(-60deg);
    animation-delay: 3.5s;
}

@keyframes connection-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.contact-action {
    text-align: center;
}

.contact-button {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-button:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--glow-cyan);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.contact-button:hover .button-ripple {
    width: 300px;
    height: 300px;
}

.contact-reveal {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.contact-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-email {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--primary-cyan);
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px var(--glow-cyan);
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-magenta);
    text-shadow: 0 0 15px var(--glow-magenta);
    transform: scale(1.05);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand .brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--glow-cyan);
    margin-bottom: 10px;
    display: block;
}

.footer-brand .brand-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--glow-cyan);
}

.footer-legal {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .organic-content,
    .symbiosis-content,
    .ascension-content,
    .collective-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phase-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .phase-content {
        width: 100%;
        text-align: center !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .collective-roles {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-button,
    .contact-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
