/* Future Co. - Bleeding Edge Styles */

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

:root {
    --primary: #00fff2;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --glow: rgba(0, 255, 242, 0.5);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    box-shadow: 0 0 20px var(--glow), inset 0 0 20px var(--glow);
    mix-blend-mode: difference;
}

/* Animated Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 25%; top: 40%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; top: 60%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 60%; top: 30%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 75%; top: 70%; animation-delay: 3s; animation-duration: 22s; }
.particle:nth-child(6) { left: 85%; top: 15%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 50%; top: 80%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 20%; top: 50%; animation-delay: 4.5s; animation-duration: 21s; }
.particle:nth-child(9) { left: 70%; top: 45%; animation-delay: 1.5s; animation-duration: 18.5s; }
.particle:nth-child(10) { left: 90%; top: 85%; animation-delay: 3.5s; animation-duration: 19.5s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(50px, -50px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-30px, 30px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(40px, 60px) scale(1.2); opacity: 0.7; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid rgba(0, 255, 242, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 20px var(--glow);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.grid-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image:
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    transform: rotateX(60deg) translateZ(-200px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: rotateX(60deg) translateZ(-200px) translateY(0); }
    100% { transform: rotateX(60deg) translateZ(-200px) translateY(50px); }
}

.horizon-line {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Glitch Text Effect */
.glitch-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.glitch-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.glitch-line:nth-child(1) {
    color: var(--primary);
    animation: glitch1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-line:nth-child(2) {
    color: var(--secondary);
    animation: glitch2 2s infinite;
    clip-path: polygon(0 35%, 100% 35%, 100% 70%, 0 70%);
}

.glitch-line:nth-child(3) {
    color: var(--light);
    animation: glitch3 2s infinite;
    clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    text-shadow: 0 0 30px var(--primary);
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-5px, 2px); }
    66% { transform: translate(5px, -2px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(5px, -2px); }
    66% { transform: translate(-5px, 2px); }
}

@keyframes glitch3 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-2px, -5px); }
    66% { transform: translate(2px, 5px); }
}

.sub-glitch {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    margin: 1rem 0 2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-description {
    font-size: 1.25rem;
    margin: 2rem 0;
    opacity: 0.8;
}

.hero-description .word {
    display: inline-block;
    margin: 0 0.25rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }
.word:nth-child(5) { animation-delay: 0.5s; }

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

/* Futuristic Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-futuristic {
    position: relative;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn-futuristic.large {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

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

.btn-futuristic:hover .btn-glow {
    left: 100%;
}

.btn-futuristic:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 30px var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    position: relative;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 0 30px var(--secondary);
    transform: translateY(-3px);
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary));
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 5rem 0;
    letter-spacing: 0.1em;
}

.title-word {
    display: inline-block;
    margin: 0 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFloat 3s ease-in-out infinite;
}

.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.4s; }

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

/* Features Section */
.features {
    padding: 5rem 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 242, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .card-glow {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 242, 0.3);
}

.card-inner {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

/* Orbital Icon Animation */
.icon-orbital {
    width: 100%;
    height: 100%;
    position: relative;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.orbit-1 {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    animation: orbit 3s linear infinite;
}

.orbit-2 {
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    animation: orbit 5s linear infinite reverse;
}

.orbit-3 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: orbit 7s linear infinite;
}

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

/* Neural Network Icon */
.icon-neural {
    width: 100%;
    height: 100%;
    position: relative;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.neural-node:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.neural-node:nth-child(2) { top: 40%; left: 60%; animation-delay: 0.5s; }
.neural-node:nth-child(3) { top: 70%; left: 20%; animation-delay: 1s; }
.neural-node:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }

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

/* Hologram Icon */
.icon-hologram {
    width: 100%;
    height: 100%;
    position: relative;
}

.holo-layer {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    opacity: 0.4;
    animation: holoFloat 3s ease-in-out infinite;
}

.holo-layer:nth-child(1) { animation-delay: 0s; }
.holo-layer:nth-child(2) { animation-delay: 0.5s; }
.holo-layer:nth-child(3) { animation-delay: 1s; }

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

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    opacity: 0.8;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.card-stats {
    display: flex;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 242, 0.05), rgba(255, 0, 255, 0.05));
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.stat-bar {
    width: 100%;
    height: 3px;
    background: rgba(0, 255, 242, 0.2);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: barGlow 2s ease-in-out infinite;
}

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

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 242, 0.15), transparent);
    animation: gradientPulse 4s ease-in-out infinite;
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Page Hero (Internal Pages) */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    z-index: 10;
}

.reveal-text {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: revealSlide 1s ease forwards;
    opacity: 0;
}

.reveal-text:nth-child(2) {
    animation-delay: 0.3s;
}

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

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 20px var(--glow);
}

.mission-content p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* 3D Floating Cube */
.floating-cube {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    background: rgba(0, 255, 242, 0.1);
    backdrop-filter: blur(10px);
}

.cube-face.front  { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 242, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 242, 0.2);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.morphing-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation: morph 8s ease-in-out infinite;
}

.shape-1 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape-2 { border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%; animation-delay: 1s; }
.shape-3 { border-radius: 70% 30% 30% 70% / 50% 50% 50% 50%; animation-delay: 2s; }
.shape-4 { border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%; animation-delay: 3s; }

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.team-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 242, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 242, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 30px var(--glow);
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.team-bio {
    opacity: 0.8;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline-path {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

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

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 242, 0.2);
    border-radius: 1rem;
    position: relative;
}

.timeline-year {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Services Showcase */
.services-showcase {
    padding: 3rem 0;
}

.service-block {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.service-block.reverse {
    grid-template-columns: 100px 1fr 1fr;
}

.service-block.reverse .service-content {
    order: 2;
}

.service-block.reverse .service-visual {
    order: 1;
}

.service-number {
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    opacity: 0.3;
}

.service-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-pill {
    padding: 0.5rem 1.25rem;
    background: rgba(0, 255, 242, 0.1);
    border: 1px solid var(--primary);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-visual {
    width: 300px;
    height: 300px;
    position: relative;
}

/* Quantum Visual */
.quantum-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.quantum-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.quantum-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

.ring-1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: orbit 4s linear infinite;
}

.ring-2 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    animation: orbit 6s linear infinite reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    margin: -120px 0 0 -120px;
    animation: orbit 8s linear infinite;
}

/* Neural Network Visual */
.neural-network {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.neural-layer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.neuron {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

/* Hologram Display */
.hologram-display {
    width: 100%;
    height: 100%;
    position: relative;
}

.holo-plane {
    position: absolute;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 255, 242, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid var(--primary);
    border-radius: 8px;
    animation: holoFloat 3s ease-in-out infinite;
}

.plane-1 { top: 20%; left: 20%; animation-delay: 0s; }
.plane-2 { top: 40%; left: 40%; animation-delay: 0.5s; }
.plane-3 { top: 60%; left: 60%; animation-delay: 1s; }

.holo-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to top, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary);
}

/* Blockchain Visual */
.blockchain-visual {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.block {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 242, 0.1);
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: blockPulse 2s ease-in-out infinite;
}

.block:nth-child(2) { animation-delay: 0.3s; }
.block:nth-child(3) { animation-delay: 0.6s; }

@keyframes blockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.block-hash {
    width: 40px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    flex: 1;
}

.step-hexagon {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 242, 0.1);
    border: 2px solid var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-hexagon:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 40px var(--primary);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    opacity: 0.8;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent, var(--primary));
    margin: 0 1rem 4rem;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0 5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Futuristic Form */
.future-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 255, 242, 0.3);
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.form-field input:focus ~ label,
.form-field input:valid ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:valid ~ label {
    top: -1.5rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--primary);
}

.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease;
}

.form-field input:focus ~ .field-border,
.form-field select:focus ~ .field-border,
.form-field textarea:focus ~ .field-border {
    width: 100%;
}

.form-field textarea {
    resize: vertical;
}

/* Info Cards */
.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 242, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    position: relative;
}

.icon-pulse {
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-card p {
    opacity: 0.8;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
}

.digital-map {
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 242, 0.2);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 242, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 242, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.marker-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(10, 10, 15, 0.9);
    padding: 1.5rem 3rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
}

.map-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.map-overlay p {
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 242, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 242, 0.2);
    transform: translateY(-5px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-answer {
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 242, 0.2);
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-section p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 242, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
    }

    .service-number {
        display: none;
    }

    .service-visual {
        order: 1 !important;
        margin: 0 auto;
    }

    .service-content {
        order: 2 !important;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-marker {
        left: 0;
        transform: none;
    }

    .timeline-path {
        left: 10px;
    }

    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .process-connector::after {
        content: '↓';
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .feature-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
