@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&family=Share+Tech+Mono&display=swap');

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

:root {
    /* Retro-futuristic neon colors */
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-green: #00ff00;
    --neon-orange: #ff9500;
    --neon-pink: #ff006e;
    --neon-blue: #00d9ff;

    /* Dark cyberpunk backgrounds */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #111118;
    --bg-card-hover: #1a1a25;

    /* Text colors */
    --text-primary: #00ffff;
    --text-secondary: #00ff00;
    --text-muted: #6b7280;
    --text-white: #e0e0e0;

    /* Border colors */
    --border-cyan: rgba(0, 255, 255, 0.3);
    --border-magenta: rgba(255, 0, 255, 0.3);
}

/* Scanline overlay effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Grid background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

body {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0f0520 100%);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Navigation */
header {
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--border-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

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

.logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan),
                 0 0 20px var(--neon-cyan),
                 0 0 30px var(--neon-cyan);
    letter-spacing: 2px;
}

.logo-icon {
    height: 1.5em;
    width: 1.5em;
    vertical-align: middle;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.logo::before {
    content: '> ';
    color: var(--neon-green);
}

.logo::after {
    content: '_';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    position: relative;
}

.nav-links a::before {
    content: '[';
    color: var(--neon-cyan);
    margin-right: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links a::after {
    content: ']';
    color: var(--neon-cyan);
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.terminal-prompt {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.hero-content h1 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px rgba(0, 255, 255, 0.5);
    letter-spacing: 4px;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow:
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan),
            0 0 40px var(--neon-cyan),
            0 0 80px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan),
            0 0 60px var(--neon-cyan),
            0 0 100px rgba(0, 255, 255, 0.8);
    }
}

.tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    color: var(--neon-orange);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-orange);
}

.description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    border-left: 2px solid var(--border-cyan);
    padding-left: 1.5rem;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(17, 17, 24, 0.8);
    border: 2px solid var(--border-cyan);
    position: relative;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
}

.stat::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.stat:hover::before {
    opacity: 0.3;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.stat-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--neon-cyan);
    text-decoration: none;
    border: 2px solid var(--neon-cyan);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    margin: 0.5rem;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    font-family: 'Share Tech Mono', monospace;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-cyan);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-cyan);
    text-shadow: none;
}

.cta-button.secondary {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.cta-button.secondary::before {
    background: var(--neon-green);
}

.cta-button.secondary:hover {
    box-shadow: 0 0 20px var(--neon-green);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    position: relative;
}

section h2 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* About Section */
.about {
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.about strong {
    color: var(--neon-orange);
    text-shadow: 0 0 5px var(--neon-orange);
}

.key-innovation {
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
    background: rgba(17, 17, 24, 0.8);
    border: 2px solid var(--border-magenta);
    border-left: 4px solid var(--neon-magenta);
    position: relative;
}

.key-innovation::before {
    content: '// KEY INNOVATION';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--bg-dark);
    padding: 0 10px;
    color: var(--neon-magenta);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.key-innovation h3 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-orange);
}

.key-innovation p {
    text-align: left;
}

/* Features Section */
.features {
    background: rgba(17, 17, 24, 0.3);
}

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

.feature-card {
    background: rgba(17, 17, 24, 0.8);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-cyan);
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Architecture Section */
.architecture {
    background: rgba(10, 10, 15, 0.5);
}

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

.server-card {
    background: rgba(17, 17, 24, 0.9);
    padding: 2rem;
    border: 2px solid var(--border-cyan);
    position: relative;
    transition: all 0.3s;
}

.server-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.server-card:hover::before {
    opacity: 0.2;
}

.server-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.server-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.server-desc {
    color: var(--neon-orange);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

.server-features {
    list-style: none;
    margin: 1.5rem 0;
}

.server-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-white);
    font-size: 0.95rem;
}

.server-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    font-weight: bold;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-badge {
    background: transparent;
    color: var(--neon-cyan);
    padding: 0.4rem 1rem;
    border: 1px solid var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.tech-badge:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.integration-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(17, 17, 24, 0.8);
    border: 2px solid var(--border-magenta);
    border-radius: 0;
    margin-top: 2rem;
}

.integration-note p {
    color: var(--text-white);
    font-size: 1rem;
}

/* Roadmap Section */
.roadmap-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase {
    background: rgba(17, 17, 24, 0.8);
    padding: 2rem;
    border: 2px solid var(--border-cyan);
    border-left: 4px solid var(--neon-cyan);
    transition: all 0.3s;
    position: relative;
}

.phase::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.phase:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 30px rgba(0, 255, 255, 0.3);
}

.phase-complete {
    border-left-color: var(--neon-green);
}

.phase-complete::before {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

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

.phase-header h3 {
    font-size: 1.4rem;
    color: var(--neon-cyan);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phase-status {
    padding: 0.3rem 1rem;
    border: 1px solid;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-status.complete {
    border-color: var(--neon-green);
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

.phase-status.upcoming {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
    text-shadow: 0 0 5px var(--neon-orange);
}

.phase-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.phase-deliverables {
    list-style: none;
    margin: 1rem 0;
}

.phase-deliverables li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    color: var(--text-white);
    font-size: 0.95rem;
    position: relative;
}

.phase-deliverables li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Documentation Section */
.documentation {
    background: rgba(17, 17, 24, 0.3);
}

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

.doc-card {
    background: rgba(17, 17, 24, 0.8);
    padding: 2rem;
    border: 2px solid var(--border-cyan);
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.doc-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.doc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.doc-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.doc-link {
    color: var(--neon-orange);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.doc-link::before {
    content: '> ';
}

.doc-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(17, 17, 24, 0.8);
    padding: 2rem;
    border: 2px solid var(--border-cyan);
    transition: all 0.3s;
}

.comparison-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-cyan);
}

.pros-cons {
    list-style: none;
}

.pros-cons li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
}

.pros-cons .pro {
    color: var(--neon-green);
}

.pros-cons .con {
    color: var(--text-muted);
}

/* Signup Section */
.signup {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(17, 17, 24, 0.3);
}

.signup h2 {
    margin-bottom: 1rem;
}

.signup > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-cyan);
    background: rgba(17, 17, 24, 0.9);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'IBM Plex Mono', monospace;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.submit-button {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', monospace;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transition: left 0.3s;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green);
}

.signup-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(10, 10, 15, 0.95);
    border-top: 2px solid var(--border-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-link::before {
    content: '[ ';
}

.social-link::after {
    content: ' ]';
}

.social-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .nav-links a {
        padding: 0.3rem 0.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-button {
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
    }

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

    .architecture-diagram {
        grid-template-columns: 1fr;
    }

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

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

    .signup-form {
        flex-direction: column;
        align-items: stretch;
    }

    .signup-form input[type="email"] {
        min-width: 100%;
    }

    .submit-button {
        width: 100%;
    }

    section h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Glitch effect for hero title (optional enhancement) */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.hero-content h1:hover {
    animation: glitch 0.3s infinite;
}
}

/* Email Signup Section */
.email-signup {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 255, 136, 0.05));
    border-top: 2px solid var(--border-cyan);
    border-bottom: 2px solid var(--border-cyan);
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-container h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 3px;
}

.signup-container > p:first-of-type {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--border-cyan);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.signup-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.signup-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 2px;
}

.signup-button:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.privacy-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .signup-form {
        flex-direction: column;
    }
    
    .signup-container h2 {
        font-size: 1.5rem;
    }
}
