:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #ff5500;
    --accent-hover: #cc4400;
    --border-color: #333;
    --terminal-green: #0f0;
    --font-main: 'VT323', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.4;
    overflow-x: hidden;
}

/* Scanline Effect */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.2)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.3;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 4rem 0;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: auto;
    filter: contrast(1.2) brightness(0.9);
}

.pixelated {
    image-rendering: pixelated;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 0px var(--accent-color);
}

.terminal-text {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.sub-headline {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #888;
}

.highlight {
    color: #fff;
    border-bottom: 1px solid var(--accent-color);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--accent-color);
    transition: all 0.2s steps(2);
    box-shadow: 4px 4px 0px #fff;
}

.cta-button:hover {
    background-color: #000;
    color: var(--accent-color);
    box-shadow: 4px 4px 0px var(--accent-color);
    transform: translate(-2px, -2px);
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* Features Section */
.features {
    margin-bottom: 4rem;
}

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

.feature-card {
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    background-color: #111;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: var(--accent-color);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.feature-card .icon {
    color: var(--accent-color);
    margin-right: 1rem;
    font-weight: bold;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
}

.feature-card p {
    color: #aaa;
}

/* Waitlist Section */
.waitlist-section {
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.terminal-window {
    width: 100%;
    max-width: 600px;
    background-color: #000;
    border: 2px solid #444;
    box-shadow: 8px 8px 0px var(--accent-color);
}

.terminal-header {
    background-color: #222;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #444;
}

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

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.title {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.terminal-body {
    padding: 2rem;
}

.prompt {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: #111;
    border: 1px solid #444;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.caret {
    color: var(--accent-color);
    margin-right: 0.5rem;
    animation: blink 1s step-end infinite;
}

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

input[type="email"] {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.2rem;
    width: 100%;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    font-family: var(--font-main);
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    color: #000;
}

.hidden {
    display: none;
}

.success {
    color: var(--terminal-green);
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

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

.faq-item {
    border: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.5);
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
}

.faq-question:hover {
    background: rgba(255, 85, 0, 0.1);
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    color: #555;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Glitch Effect (Simple) */
@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    40% { transform: skew(2deg); }
    60% { transform: skew(-1deg); }
    80% { transform: skew(1deg); }
    100% { transform: skew(0deg); }
}

.glitch:hover {
    animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--accent-color);
    text-shadow: -2px 0 #fff, 2px 2px 0 #000;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
