/* The Wake — Landing Page */

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

body {
    font-family: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #0d0d1a;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0 40px;
}

.logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tagline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-style: italic;
    color: #8b93a8;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 16px;
    color: #999;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Signup Form */
.signup {
    text-align: center;
    padding: 32px 0 48px;
}

.signup-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #1a1a2e;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.signup-form input[type="email"]:focus {
    border-color: #3366cc;
}

.signup-form input[type="email"]::placeholder {
    color: #666;
}

.signup-form button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: #3366cc;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.signup-form button:hover {
    background: #2855b3;
}

.signup-form button:disabled {
    background: #555;
    cursor: not-allowed;
}

.form-message {
    margin-top: 12px;
    font-size: 14px;
    min-height: 20px;
}

.form-message.success {
    color: #28a745;
}

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

.privacy-note {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
}

.privacy-note a {
    color: #888;
    text-decoration: underline;
}

/* Features */
.features {
    padding: 48px 0;
    border-top: 1px solid #1a1a2e;
}

.features h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature {
    padding: 20px;
    background: #12121f;
    border-radius: 8px;
    border-left: 3px solid #3366cc;
}

.feature h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    font-size: 14px;
    color: #999;
}

/* How It Works */
.how-it-works {
    padding: 48px 0;
    border-top: 1px solid #1a1a2e;
    text-align: center;
}

.how-it-works h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.how-it-works p {
    font-size: 15px;
    color: #999;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sample Preview */
.sample {
    padding: 48px 0;
    border-top: 1px solid #1a1a2e;
}

.sample h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.sample-preview {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    color: #2d2d2d;
}

.sample-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sample-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sample-date {
    font-size: 12px;
    color: #8b93a8;
}

.sample-section {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.sample-section:last-child {
    border-bottom: none;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.section-label.wakeup {
    background: #f0f4ff;
    color: #3366cc;
}

.section-label.world {
    background: #fff5f5;
    color: #8b0000;
}

.section-label.clearing {
    background: #f0f4ff;
    color: #4682b4;
}

.sample-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
    padding: 48px 0;
    border-top: 1px solid #1a1a2e;
    text-align: center;
}

.bottom-cta h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
}

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

.footer-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-links {
    font-size: 12px;
    color: #666;
}

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

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 40px;
    }

    .signup-form {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 24px;
    }
}
