:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #eaeaea;
    --accent-color: #0070f3;
    --teal-glow: rgba(0, 212, 255, 0.15);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Subtle Light Grid Background */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Glowing Teal Orb */
.orb {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-logo-icon {
    width: 64px;
    height: 64px;
}

.hero-logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f5f5f5;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #0070f3;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 112, 243, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    letter-spacing: -0.01em;
}

/* Terminal Box */
.terminal-box {
    max-width: 500px;
    margin: 0 auto 48px;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

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

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

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

.terminal-body {
    padding: 24px;
    color: #00ff00;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
}

.prompt {
    color: #888;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Form */
.waitlist-form {
    max-width: 480px;
    margin: 0 auto 64px;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

input[type="email"]:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

button {
    padding: 14px 28px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background: #fff;
    color: #000;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    font-size: 0.875rem;
    height: 20px;
}

.form-message.success {
    color: #0070f3;
}

.form-message.error {
    color: #e00;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .input-group {
        flex-direction: column;
    }

    button {
        width: 100%;
    }

    .features {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
}