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

body {
    background: #0a0a0a;
    color: #c0c0c0;
    font-family: "SF Mono", "Fira Code", "Courier New", monospace;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.terminal {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.02) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.nav {
    padding: 12px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
}

.prompt {
    color: #00ff41;
}

.cursor-blink {
    color: #00ff41;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Section Label */
.section-label {
    font-size: 12px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Hero */
.hero {
    margin-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    border: 1px solid #222;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #00ff41;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
}

.hero-sub {
    font-size: 18px;
    color: #888;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-sub strong {
    color: #e0e0e0;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: #00ff41;
    border: 1px solid #00ff41;
    padding: 12px 32px;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: rgba(0, 255, 65, 0.08);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

.cta-note {
    font-size: 13px;
    color: #555;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

/* Cards */
.card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: #333;
}

.card-icon {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1;
}

.card h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.pain .card-icon {
    font-size: 28px;
}

/* Pain Points */
.pain-points {
    margin-bottom: 80px;
}

/* Solution */
.solution {
    margin-bottom: 80px;
}

/* GEO FAQ */
.geo-faq {
    margin-bottom: 80px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 0;
}

.faq-item h3 {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* Manifesto */
.manifesto {
    margin-bottom: 80px;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.manifesto blockquote {
    font-size: 22px;
    color: #e0e0e0;
    font-weight: 300;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 16px;
}

.manifesto-author {
    font-size: 13px;
    color: #555;
}

/* Waitlist */
.waitlist {
    margin-bottom: 60px;
    text-align: center;
}

.waitlist-note {
    font-size: 14px;
    color: #00ff41;
    margin-bottom: 24px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.input-email {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 12px 20px;
    font-size: 15px;
    font-family: inherit;
    color: #fff;
    width: 320px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-email:focus {
    border-color: #00ff41;
}

.input-email::placeholder {
    color: #444;
}

.waitlist-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: #555;
}

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

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff41;
}

.sep {
    color: #333;
    margin: 0 12px;
}

.footer-copy {
    font-size: 12px;
    color: #333;
}

/* Responsive */
@media (max-width: 700px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 24px 16px 60px;
    }
    .input-email {
        width: 100%;
    }
    .waitlist-form {
        flex-direction: column;
    }
}
