/* Product Hunt campaign page */
.producthunt-hero {
    min-height: calc(100vh - 80px);
    padding: 8rem 2rem 5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 181, 212, 0.24), transparent 32%),
        linear-gradient(135deg, #FDFCFE 0%, #F8F5F2 48%, #E8F4F2 100%);
    overflow: hidden;
}

.producthunt-hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.producthunt-copy {
    max-width: 640px;
}

.producthunt-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.producthunt-open-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.producthunt-store-links {
    justify-content: flex-start;
}

.producthunt-note {
    margin-top: 1.5rem;
    max-width: 560px;
    color: rgba(42, 22, 53, 0.62);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Offer status; also loaded as the fallback for a future app without store links. */
.app-coming-soon {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    color: inherit;
    width: fit-content;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
}

.coming-soon-desc {
    font-size: 0.95rem;
    color: inherit;
    opacity: 0.7;
}

.producthunt-ended {
    margin-top: 2rem;
    max-width: 420px;
}

.producthunt-media {
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .producthunt-hero {
        padding: 6rem 1.25rem 4rem;
    }

    .producthunt-hero-grid {
        grid-template-columns: 1fr;
    }

    .producthunt-copy,
    .producthunt-actions {
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .producthunt-store-links {
        justify-content: center;
    }

    .producthunt-media {
        max-height: 520px;
        overflow: hidden;
    }
}
