*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #000000;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 0, 200, 0.1) 0%, transparent 50%);
    animation: bgShift 20s ease infinite;
}
@keyframes bgShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}
/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 20px 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    gap: 15px;
}
.nav-btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-btn-doc {
    background: rgba(0, 200, 255, 0.1);
    border: 2px solid #00c8ff;
    color: #00c8ff;
}
.nav-btn-doc:hover {
    background: #00c8ff;
    color: #000;
    transform: translateY(-2px);
}
.nav-btn-github {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    color: #00ff88;
}
.nav-btn-github:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 40px;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.logo-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}
.logo {
    font-size: 5em;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
}
.hero h1 {
    font-size: 4.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00c8ff, #ff00c8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: gradientShift 5s ease infinite;
    letter-spacing: -2px;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.hero .tagline {
    font-size: 1.8em;
    color: #a0a0a0;
    margin-bottom: 20px;
    font-weight: 300;
}
.status-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1em;
    margin: 20px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}
.cta-group {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00c8ff);
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}
.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.5);
}
.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}
.btn-secondary:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-5px);
}
/* Sections */
section {
    padding: 120px 20px;
    position: relative;
}
.section-title {
    font-size: 3.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    width: 100%;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00c8ff);
    border-radius: 2px;
}
/* Vision Section */
.vision-box {
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.vision-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.vision-box p {
    font-size: 1.3em;
    line-height: 1.8;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
}
.highlight-text {
    font-size: 1.6em;
    color: #00ff88;
    font-weight: 700;
    text-align: center;
    margin: 40px 0;
    display: block;
}
/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.problem-item {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.05), rgba(255, 0, 200, 0.05));
    border: 1px solid rgba(255, 0, 100, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.problem-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff0064;
    box-shadow: 0 20px 60px rgba(255, 0, 100, 0.3);
}
.problem-item:hover::before {
    opacity: 1;
}
.problem-item h3 {
    color: #ff0064;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}
.problem-item p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.05em;
}
/* Innovations */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.innovation-card {
    background: rgba(0, 200, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}
.innovation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00c8ff, #00ff88);
    transition: height 0.4s ease;
}
.innovation-card:hover {
    transform: translateX(15px);
    background: rgba(0, 200, 255, 0.08);
    border-color: #00c8ff;
}
.innovation-card:hover::after {
    height: 100%;
}
.innovation-card h3 {
    color: #00c8ff;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}
.innovation-card p {
    color: #a0a0a0;
    line-height: 1.7;
}
/* Benefits */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.benefit-box {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.05), rgba(255, 100, 0, 0.05));
    border: 2px solid rgba(255, 200, 0, 0.3);
    border-radius: 25px;
    padding: 45px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.benefit-box::before {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3em;
    opacity: 0.3;
    transition: all 0.5s ease;
}
.benefit-box:hover {
    transform: scale(1.05) rotate(-1deg);
    border-color: #ffc800;
    box-shadow: 0 25px 70px rgba(255, 200, 0, 0.4);
}
.benefit-box:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
}
.benefit-box h3 {
    color: #ffc800;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 800;
}
.benefit-box p {
    color: #c0c0c0;
    font-size: 1.15em;
    line-height: 1.7;
}
/* POC Features */
.poc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}
.poc-badge {
    background: linear-gradient(135deg, #00ff88, #00c8ff);
    color: #000;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.poc-badge::before {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5em;
    opacity: 0;
    transition: all 0.3s ease;
}
.poc-badge:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}
.poc-badge:hover::before {
    opacity: 1;
}
/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 255, 0.1));
    border: 2px solid #00ff88;
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate 15s linear infinite;
}
.cta-final-content {
    position: relative;
    z-index: 1;
}
.cta-final h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #00ff88;
}
.cta-final p {
    font-size: 1.4em;
    color: #c0c0c0;
    margin-bottom: 40px;
}
.cta-list {
    list-style: none;
    margin: 50px 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-list li {
    font-size: 1.3em;
    color: #e0e0e0;
    margin: 25px 0;
    padding-left: 50px;
    position: relative;
    line-height: 1.6;
}
.cta-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 1.5em;
    font-weight: bold;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    .hero {
        padding-top: 160px;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .section-title {
        font-size: 2.2em;
    }
    .problems-grid,
    .innovations-grid,
    .benefits-container {
        grid-template-columns: 1fr;
    }
    .vision-box,
    .cta-final {
        padding: 40px 30px;
    }
    .btn {
        padding: 15px 30px;
        font-size: 1em;
    }
}
/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00c8ff);
    z-index: 1000;
    transition: width 0.1s ease;
}