/* Cyberpunk color palette */
:root {
    --neon-blue: #00f0ff;
    --neon-pink: #ff00ff;
    --neon-purple: #9900ff;
    --neon-yellow: #ffff00;
    --dark-bg: #080010;
    --darker-bg: #040008;
    --cyber-black: #000000;
    --cyber-red: #ff0055;
    --cyber-text: #e0e0e0;
    --glitch-blue: #0ff;
    --glitch-red: #f0f;
}

/* Import cyberpunk font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

/* Base styles */
body {
    font-family: 'Share Tech Mono', monospace;
    background-color: var(--dark-bg);
    color: var(--cyber-text);
    line-height: 1.6;
    background-image: 
        linear-gradient(0deg, rgba(8, 0, 16, 0.9), rgba(8, 0, 16, 0.9)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.1) 2px,
            rgba(0, 240, 255, 0.1) 4px
        );
    background-size: 100% 100%, 100% 100%;
    overflow-x: hidden;
}

/* Container */
.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cyber-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Header and navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    margin-bottom: 2rem;
}

.logo {
    position: relative;
    cursor: pointer;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.logo-svg {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.7));
}

/* Glitch text effect */
.glitch-text {
    animation: glitch-text 0.2s linear infinite;
    position: relative;
}

.glitch-text:before,
.glitch-text:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text:before {
    left: 2px;
    color: var(--neon-pink);
    clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%, 0 50%, 100% 50%, 100% 60%, 0 60%, 0 80%, 100% 80%, 100% 90%, 0 90%);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text:after {
    left: -2px;
    color: var(--neon-purple);
    clip-path: polygon(0 0%, 100% 0%, 100% 10%, 0 10%, 0 30%, 100% 30%, 100% 40%, 0 40%, 0 70%, 100% 70%, 100% 80%, 0 80%);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-text {
    0% {
        transform: none;
        opacity: 1;
    }
    7% {
        transform: skew(-0.5deg, -0.5deg);
        opacity: 0.75;
    }
    10% {
        transform: none;
        opacity: 1;
    }
    27% {
        transform: none;
        opacity: 1;
    }
    30% {
        transform: skew(0.5deg, -0.5deg);
        opacity: 0.75;
    }
    35% {
        transform: none;
        opacity: 1;
    }
    52% {
        transform: none;
        opacity: 1;
    }
    55% {
        transform: skew(-0.5deg, 0.5deg);
        opacity: 0.75;
    }
    50% {
        transform: none;
        opacity: 1;
    }
    72% {
        transform: none;
        opacity: 1;
    }
    75% {
        transform: skew(0.5deg, 0.5deg);
        opacity: 0.75;
    }
    80% {
        transform: none;
        opacity: 1;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes glitch-anim-1 {
    0% {
        opacity: 0.8;
        transform: translate3d(2px, 0, 0);
    }
    50% {
        opacity: 0.5;
        transform: translate3d(-2px, 0, 0);
    }
    100% {
        opacity: 0.8;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        opacity: 0.8;
        transform: translate3d(0, 2px, 0);
    }
    50% {
        opacity: 0.5;
        transform: translate3d(0, -2px, 0);
    }
    100% {
        opacity: 0.8;
        transform: translate3d(0, 0, 0);
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--cyber-text);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-blue);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--neon-blue);
}

nav ul li a:hover:before {
    width: 100%;
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 4rem 0;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

/* Video container */
.video-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 3rem;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.video-container:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--neon-blue);
    animation: glitch 2s infinite;
    z-index: -1;
}

@keyframes glitch {
    0% {
        clip-path: inset(0 0 0 0);
    }
    5% {
        clip-path: inset(80% 0 0 0);
        border-color: var(--glitch-red);
    }
    10% {
        clip-path: inset(0 0 70% 0);
    }
    15% {
        clip-path: inset(0 0 0 70%);
        border-color: var(--glitch-blue);
    }
    20% {
        clip-path: inset(0 70% 0 0);
    }
    25% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

#promo-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Call-to-action buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.primary-btn {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.9);
}

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

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

.secondary-btn {
    background-color: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.secondary-btn:hover {
    background-color: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

/* Section styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About section */
.about-section {
    background-color: rgba(0, 0, 20, 0.7);
    position: relative;
    overflow: hidden;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(153, 0, 255, 0.1), rgba(0, 240, 255, 0.1));
    z-index: 0;
}

.cyber-graphic {
    margin-top: 3rem;
    text-align: center;
}

.cyber-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7));
}

/* Showcase section */
.showcase-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.showcase-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 20, 0.7));
    z-index: 0;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: all 0.3s ease;
    height: 100%;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.showcase-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(30%);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.7);
}

.showcase-title2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.7);
}

.showcase-desc {
    color: var(--cyber-text);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    background-color: black; /* Changed to black */
}

.showcase-item:hover .showcase-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Features section */
.features-section {
    background-color: var(--darker-bg);
    position: relative;
}

.features-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

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

.feature-card {
    background-color: rgba(8, 0, 16, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--neon-blue);
}

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

.feature-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

/* Enhanced Styling Section */
/* The waitlist section and form styles have been removed as requested */

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: var(--cyber-black);
    border-top: 1px solid rgba(0, 240, 255, 0.3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-svg {
    width: 180px;
    height: auto;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--cyber-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--neon-blue);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    color: var(--cyber-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--neon-blue);
    color: var(--cyber-black);
    border-color: var(--neon-blue);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}