:root {
    --bg-color: #0a0c12;
    --section-bg: #0f1117;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(10, 12, 18, 0.5), rgba(10, 12, 18, 0.5)), 
                      url('media/pedro-miranda-cYtKREQ584I-unsplash.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    max-width: 1440px;
    margin: 0 auto;
}

.brand {
    position: absolute;
    top: 40px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    flex-grow: 1;
}

h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.bullets {
    list-style: none;
    max-width: 520px;
}

.bullet-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bullet-icon {
    color: var(--text-main);
    flex-shrink: 0;
}

/* Form */
.form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.9;
}

.form-footer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
    font-weight: 500;
}

/* Mockup Section */
.mockup-section {
    background-color: transparent;
    padding: 120px 5%;
    text-align: center;
}

.mockup-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mockup-section p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

/* Footer */
footer {
    padding: 60px 5%;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero {
        height: auto;
        min-height: unset;
        padding-bottom: 100px;
    }
    .brand {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    .form-container {
        padding: 24px;
    }
}

.fd-wrap { background: #0f1117; border-radius: 16px; padding: 24px; max-width: 780px; margin: 0 auto; }
.fd-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fd-logo { color: #fff; font-size: 15px; font-weight: 500; letter-spacing: 0.02em; }
.fd-date { color: #888; font-size: 12px; }
.fd-label { font-size: 11px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.fd-card { background: #181c27; border-radius: 12px; border: 0.5px solid #2a2f3e; padding: 16px 18px; margin-bottom: 10px; }
.fd-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.fd-ticker { font-size: 18px; font-weight: 500; color: #fff; }
.fd-score-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.fd-score { font-size: 22px; font-weight: 500; }
.fd-score-label { font-size: 10px; color: #666; }
.fd-score-bar { width: 80px; height: 3px; background: #2a2f3e; border-radius: 2px; margin-top: 2px; }
.fd-score-fill { height: 3px; border-radius: 2px; }
.fd-bias { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.fd-bias-bull { background: #0d2e1a; color: #4caf7d; }
.fd-bias-bear { background: #2e0d0d; color: #e05c5c; }
.fd-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.fd-row { display: flex; flex-direction: column; gap: 1px; padding: 6px 0; border-bottom: 0.5px solid #1e2230; }
.fd-row-label { font-size: 10px; color: #555; letter-spacing: 0.05em; }
.fd-row-val { font-size: 12px; color: #c8cdd8; }
.fd-row-val.highlight { color: #7eb8f7; }
.fd-row-val.danger { color: #e05c5c; }
.fd-divider { height: 0.5px; background: #1e2230; margin: 10px 0; }
.fd-rationale { font-size: 11px; color: #666; line-height: 1.5; }
.fd-approve { display: flex; gap: 8px; margin-top: 12px; }
.fd-btn { flex: 1; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 500; border: none; text-align: center; }
.fd-btn-yes { background: #0d2e1a; color: #4caf7d; }
.fd-btn-skip { background: #1e2230; color: #666; }
.fd-rank { font-size: 11px; color: #555; margin-right: 8px; }

@media (max-width: 768px) {
    .brand {
        position: relative;
        top: auto;
        margin-bottom: 32px;
        padding-top: 20px;
    }
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }
    .mockup-section {
        padding-top: 40px;
    }
    .fd-wrap {
        padding: 12px;
        border-radius: 12px;
    }
    .fd-card {
        padding: 12px 14px;
    }
    .fd-rows {
        grid-template-columns: 1fr;
    }
    .fd-ticker {
        font-size: 16px;
    }
    .fd-score {
        font-size: 18px;
    }
    .fd-date {
        display: none;
    }
}