/* ============================================================
   Dubai Property Lab — Homepage Styles
   Page: / (root)
   ============================================================ */

/* --- Hero Section --- */

.hero {
    padding: var(--space-8) 0 var(--space-7);
    border-bottom: 1px solid var(--border);
}

.hero__content {
    max-width: 680px;
}

.hero__tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: var(--space-4);
}

.hero__headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    max-width: 560px;
}

@media (max-width: 767px) {
    .hero {
        padding: var(--space-7) 0 var(--space-6);
    }

    .hero__headline {
        font-size: 32px;
        letter-spacing: -0.02em;
    }

    .hero__description {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .hero__headline {
        font-size: 28px;
    }
}

/* --- Market Pulse Section --- */

.market-pulse__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-4);
}

/* --- Trending Section --- */

.trending__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-4);
}

.trending__community-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.trending__community-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.trending__kpi {
    margin-bottom: var(--space-3);
}

.trending__kpi .overline {
    margin-bottom: var(--space-1);
}

.trending__kpi .kpi-supporting {
    margin-bottom: var(--space-1);
}

.trending__supporting {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

.trending__spark {
    width: 60px;
    height: 24px;
    margin-bottom: var(--space-3);
}

.trending__spark svg {
    width: 100%;
    height: 100%;
}

.trending__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--signal);
    transition: color var(--transition-default);
}

.trending__cta:hover {
    color: var(--text-primary);
}

/* --- Latest Insight Section --- */

.latest-insight__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-6);
    align-items: start;
}

.latest-insight__content h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.latest-insight__content .caption {
    display: block;
    margin-bottom: var(--space-3);
}

.latest-insight__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.latest-insight__tags {
    display: flex;
    gap: var(--space-2);
}

.latest-insight__callout {
    min-width: 200px;
    padding: var(--space-5);
    background: var(--void);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

@media (max-width: 767px) {
    .latest-insight__card {
        grid-template-columns: 1fr;
    }

    .latest-insight__callout {
        min-width: 0;
    }
}

/* --- Email Signup Section --- */

.email-signup__card {
    max-width: 480px;
}

.email-signup__card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.email-signup__card .caption {
    display: block;
    margin-bottom: var(--space-4);
}

.email-signup__form {
    margin-bottom: var(--space-2);
}

.email-signup__field {
    display: flex;
    gap: var(--space-3);
}

.email-signup__field .dpl-input {
    flex: 1;
}

.email-signup__trust {
    display: block;
    color: var(--text-muted);
}

@media (max-width: 479px) {
    .email-signup__field {
        flex-direction: column;
    }

    .email-signup__field .btn {
        width: 100%;
    }
}
