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

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

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

/* Typography */
.glow {
    color: #00d9ff;
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff, 0 0 30px #00d9ff;
}

.comment {
    color: #6c757d;
}

.prompt {
    color: #00d9ff;
    margin-right: 8px;
}

.strike {
    text-decoration: line-through;
    color: #666;
}

.success-text {
    color: #00ff88;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.ascii-logo {
    font-size: 10px;
    color: #00d9ff;
    margin-bottom: 30px;
    white-space: pre;
    overflow-x: auto;
    text-shadow: 0 0 10px #00d9ff;
}

.hero h1 {
    font-size: clamp(24px, 5vw, 48px);
    margin-bottom: 30px;
    font-weight: bold;
}

.tagline {
    font-size: clamp(16px, 2vw, 24px);
    color: #a0a0a0;
    margin-bottom: 30px;
}

.badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.badge {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid #00d9ff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #00d9ff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #00d9ff;
    color: #0a0e27;
}

.btn-primary:hover {
    background: #00ffff;
    box-shadow: 0 0 20px #00d9ff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.btn-full {
    width: 100%;
}

.meta {
    color: #666;
    font-size: 14px;
}

/* Terminal */
.terminal {
    background: #000;
    border: 1px solid #00d9ff;
    border-radius: 8px;
    margin: 40px 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    position: relative;
}

.terminal-header {
    background: #1a1a2e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #00d9ff;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-title {
    color: #00d9ff;
    font-size: 12px;
    margin-left: auto;
}

.terminal-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    max-height: 500px;
    overflow-y: auto;
}

.log-line {
    margin-bottom: 8px;
}

.timestamp {
    color: #666;
}

.info {
    color: #00d9ff;
    font-weight: bold;
}

.success {
    color: #00ff88;
    font-weight: bold;
}

.warning {
    color: #ffaa00;
    font-weight: bold;
}

.danger {
    color: #ff4444;
    font-weight: bold;
}

.threat-detail {
    color: #ffaa00;
    margin-left: 20px;
    font-size: 12px;
}

.scanline {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(transparent, #00d9ff, transparent);
    opacity: 0.1;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.code-line {
    margin-bottom: 6px;
}

/* Section Styling */
section {
    padding: 80px 0;
    border-top: 1px solid #1a1a2e;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 60px;
    text-align: center;
}

.demo-section {
    padding-top: 0;
    border-top: none;
}

/* Stats Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 14px;
    color: #a0a0a0;
}

/* Threat Grid */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.threat-card {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid #ff4444;
    border-radius: 8px;
    padding: 25px;
}

.threat-card.error {
    border-left: 4px solid #ff4444;
}

.threat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.threat-icon {
    font-size: 24px;
}

.threat-code {
    color: #ff4444;
    font-size: 12px;
}

.threat-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.threat-card p {
    font-size: 14px;
    color: #a0a0a0;
}

/* Architecture Diagram */
.architecture {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.arch-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 8px;
    padding: 30px;
    min-width: 200px;
    text-align: center;
}

.arch-box.highlight {
    border: 2px solid #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.1);
}

.arch-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.arch-code {
    font-size: 14px;
    color: #00d9ff;
    margin-bottom: 15px;
}

.arch-features {
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.8;
}

.arch-arrow {
    font-size: 32px;
    color: #00d9ff;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 30px;
}

.feature-card:hover {
    border-color: #00d9ff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00d9ff;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #a0a0a0;
}

.feature-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00d9ff;
}

/* Enterprise Section */
.enterprise-section {
    background: rgba(0, 217, 255, 0.02);
}

.enterprise-desc {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-size: 18px;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.enterprise-col ul {
    list-style: none;
    margin-top: 15px;
}

.enterprise-col li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #a0a0a0;
}

.enterprise-col li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
}

.enterprise-footer {
    text-align: center;
    margin-top: 40px;
    color: #00d9ff;
    font-size: 16px;
}

/* Waitlist Form */
.waitlist-section {
    background: rgba(0, 217, 255, 0.02);
}

.waitlist-desc {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-size: 18px;
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00d9ff;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 4px;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 12px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid #1a1a2e;
}

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

.footer-links a {
    color: #00d9ff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-shadow: 0 0 10px #00d9ff;
}

.footer-copy {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-meta {
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .ascii-logo {
        font-size: 6px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .architecture {
        flex-direction: column;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
    }
}

/* Animations */
@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff, 0 0 30px #00d9ff;
    }
    50% {
        text-shadow: 0 0 20px #00d9ff, 0 0 30px #00d9ff, 0 0 40px #00d9ff;
    }
}

.glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Notice Banner */
.notice-section {
    padding: 40px 20px;
    border-top: 1px solid #1a1a2e;
}

.notice-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00d9ff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 48px;
    line-height: 1;
}

.notice-content h3 {
    color: #00d9ff;
    font-size: 24px;
    margin-bottom: 15px;
}

.notice-content p {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

.notice-link {
    color: #00d9ff;
    text-decoration: none;
    border-bottom: 1px solid #00d9ff;
}

.notice-link:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
}

@media (max-width: 768px) {
    .notice-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        font-size: 36px;
    }
}
