/* Grund-Variablen */
:root {
    --bg-color: #05070a;
    --card-bg: rgba(28, 28, 30, 0.6);
    --cyan: #00ffcc;
    --red: #ff3b30;
    --text-main: #ffffff;
    --text-muted: #8e8e93;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* Typografie */
h1, h2, h3 { font-weight: 900; }
.highlight { color: var(--cyan); }

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 100px 20px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cyan);
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
    background-color: var(--cyan);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.primary-btn:hover {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.8);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.nav-btn {
    color: var(--cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border: 1px solid var(--cyan);
    padding: 8px 16px;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--cyan);
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.terminal-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 59, 48, 0.1);
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 59, 48, 0.3);
    margin-bottom: 20px;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.terminal-text {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 0.9rem;
    min-height: 24px;
    opacity: 0.8;
}

/* Glow Effect Background */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Story Section */
.story-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), #0a0c10);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 204, 0.3);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Waitlist Section & Card (Stellt die schicke Box wieder her) --- */
.waitlist-section {
    display: flex;
    justify-content: center;
}

.waitlist-card {
    background: radial-gradient(circle at top right, rgba(0,255,204,0.1), transparent 50%), var(--card-bg);
    border: 1px solid rgba(0,255,204,0.2);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 650px; /* Hält die Box schön kompakt */
    width: 100%;
    margin: 0 auto;
}

.waitlist-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.waitlist-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* --- Formular Layout (E-Mail und Button nebeneinander) --- */
.waitlist-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.form-row .input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
    color: white;
    font-family: var(--font-mono);
}

.form-row .input:focus {
    outline: none;
    border-color: var(--cyan);
}

/* --- DSGVO Checkbox (Mittig darunter) --- */
.gdpr-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.gdpr-box input[type="checkbox"] {
    accent-color: var(--cyan);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.gdpr-box label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    max-width: 500px;
}

.gdpr-box a {
    color: var(--cyan);
    text-decoration: underline;
}

/* --- Erfolgsmeldung & Footer --- */
#form-success {
    margin-top: 20px;
    color: var(--cyan);
    font-family: var(--font-mono);
    line-height: 1.5;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--cyan);
    padding: 20px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: var(--cyan);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .gdpr-box {
        align-items: flex-start;
    }
}
.hidden {
    display: none !important;
}