/* 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 15px #00d9ff;
    line-height: 1;
    font-family: 'Courier New', monospace;
    text-align: left;
}

.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: 8px;
    }
    
    .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;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.pricing-card.highlight {
    border: 2px solid #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    transform: scale(1.05);
}

.pricing-card.highlight:hover {
    transform: scale(1.08);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d9ff;
    color: #0a0e27;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: #00d9ff;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.price {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}

.period {
    font-size: 18px;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    color: #e0e0e0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #a0a0a0;
    font-size: 14px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

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

.use-case-card p {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.use-case-card p strong {
    color: #00d9ff;
}

.use-case-result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-left: 3px solid #00ff88;
    color: #00ff88;
    font-weight: bold;
    border-radius: 4px;
}

/* Waitlist Section */
.waitlist-section {
    padding: 80px 0;
    background: rgba(0, 217, 255, 0.03);
}

.waitlist-tagline {
    text-align: center;
    font-size: 18px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.waitlist-section .terminal-body {
    padding: 40px;
}

.waitlist-form {
    width: 100%;
}

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

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid #00d9ff;
    border-radius: 4px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.form-input::placeholder {
    color: #666;
}

.form-input option {
    background: #0a0e27;
    color: #fff;
}

.waitlist-note {
    text-align: center;
    margin-top: 30px;
    color: #a0a0a0;
    font-size: 14px;
}

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

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

/* How It Works Section - Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
}

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

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.step-card h3 {
    color: #00d9ff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.code-snippet {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    padding: 12px 15px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #00d9ff;
    overflow-x: auto;
}

/* Call to Action Section - Center alignment */
.call-to-action .meta {
    text-align: center;
    margin-top: 30px;
}

/* Footer Text */
.footer-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.highlight {
        transform: scale(1);
    }
    
    .pricing-card.highlight:hover {
        transform: scale(1.02);
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 36px;
    }
}

/* Footer Company Link */
.footer-company {
    color: #00d9ff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.footer-company:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
    text-shadow: 0 0 10px #00d9ff;
}

/* Document Pages (Privacy, Terms, etc.) */
body > header {
    background: rgba(0, 217, 255, 0.05);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 50px;
}

body > header h1 {
    color: #00d9ff;
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    margin: 0;
}

body > main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

article {
    background: rgba(0, 217, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    padding: 50px;
}

article > header h2 {
    color: #00d9ff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    padding-bottom: 15px;
}

article > header p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 8px 0;
}

article > header p strong {
    color: #00d9ff;
}

article > p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 25px;
}

article section {
    margin-top: 40px;
}

article section h3 {
    color: #00d9ff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

article section h4 {
    color: #00d9ff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 25px;
}

article ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

article ul li {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

article ul li::before {
    content: "▸";
    color: #00d9ff;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

article ul li strong {
    color: #00d9ff;
    font-weight: 600;
}

body > footer {
    background: rgba(0, 217, 255, 0.05);
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    padding: 30px 0;
    text-align: center;
    margin-top: 80px;
}

body > footer p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0 0 15px 0;
}

body > footer a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

body > footer a:hover {
    color: #00ffff;
    border-bottom-color: #00d9ff;
    text-shadow: 0 0 10px #00d9ff;
}

/* Responsive for document pages */
@media (max-width: 768px) {
    body > main {
        padding: 0 20px 60px;
    }
    
    article {
        padding: 30px 25px;
    }
    
    body > header h1 {
        font-size: 32px;
    }
    
    article > header h2 {
        font-size: 24px;
    }
    
    article section h3 {
        font-size: 20px;
    }
}
