/* ==========================================================================
   AapkaLove Homepage 2.0 CSS
   Premium, Editorial, Compact & Social
   ========================================================================== */

:root {
    /* Colors */
    --al-bg-primary: #ffffff;
    --al-bg-secondary: #fafafa;
    --al-bg-tertiary: #f2f2f2;
    --al-text-primary: #111111;
    --al-text-secondary: #555555;
    --al-text-muted: #888888;
    --al-accent-pink: #E0217A;
    --al-accent-pink-hover: #c91b6b;
    --al-accent-pink-subtle: rgba(224, 33, 122, 0.08);
    --al-border-light: rgba(0, 0, 0, 0.08);
    --al-border-medium: rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', var(--font-sans);
    --font-editorial: 'Playfair Display', serif;
    --font-mono: 'DM Mono', monospace;

    /* Shadows & Elevation */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Spacing */
    --section-gap: 64px;
    --container-padding: 24px;
    --max-width: 1200px;
}

@media (max-width: 768px) {
    :root {
        --section-gap: 48px;
        --container-padding: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--al-bg-primary);
    color: var(--al-text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* ==========================================================================
   Utility & Layout
   ========================================================================== */
.al-container-v2 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.al-section-v2 {
    padding: var(--section-gap) 0;
}

.al-section-header-v2 {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.al-section-header-v2 .title-area h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.al-section-header-v2 .title-area p {
    color: var(--al-text-secondary);
    font-size: 16px;
    margin: 0;
}

.al-view-all-v2 {
    color: var(--al-accent-pink);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}
.al-view-all-v2:hover {
    transform: translateX(4px);
    text-decoration: none;
    color: var(--al-accent-pink-hover);
}

/* ==========================================================================
   Hero (Typography-led)
   ========================================================================== */
.al-hero-v2 {
    min-height: 40vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 24px 60px 24px;
    overflow: hidden;
    background-color: #faf9f6; /* Warm white/ivory base */
}

/* Subtle Glow Backdrop */
.al-hero-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(250,249,246,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.al-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.al-hero-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--al-text-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.al-hero-title-v2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
    max-width: 900px;
    color: var(--al-text-primary);
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}
.al-hero-title-v2 span.editorial {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 400;
    color: var(--al-accent-pink);
}

.al-hero-sub-v2 {
    font-size: 17px;
    color: var(--al-text-secondary);
    max-width: 620px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.al-hero-ctas-v2 {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}
.al-hero-ctas-v2 .al-btn-primary-v2,
.al-btn-secondary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.al-hero-ctas-v2 .al-btn-primary-v2 {
    background-color: var(--al-accent-pink);
    color: #fff;
    border: 1px solid var(--al-accent-pink);
}
.al-hero-ctas-v2 .al-btn-primary-v2:hover {
    background-color: #c91068; /* slightly darker pink */
    border-color: #c91068;
    color: #fff;
}

.al-btn-secondary-v2 {
    background: transparent;
    color: var(--al-text-primary);
    border: 1px solid var(--al-border-medium);
    text-decoration: none !important;
}
.al-btn-secondary-v2:hover {
    border-color: var(--al-text-primary);
    background-color: rgba(0,0,0,0.02);
    text-decoration: none !important;
}

/* ==========================================================================
   Social Proof Strip (Single-Line Editorial Strip)
   ========================================================================== */
.al-social-proof-v2 {
    padding: 20px 16px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid var(--al-border-light, #f1f5f9);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.al-social-proof-v2::-webkit-scrollbar {
    display: none;
}
.al-proof-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    color: var(--al-text-secondary, #64748b);
    max-width: 100%;
}
.al-proof-item {
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.al-proof-item .al-proof-num {
    font-family: var(--font-display, 'Inter', sans-serif);
    font-weight: 700;
    color: var(--al-text-primary, #0f172a);
    font-size: 14.5px;
}
.al-proof-separator {
    color: var(--al-border-medium, #cbd5e1);
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .al-hero-v2 {
        height: auto;
        min-height: auto;
        padding: 40px 20px 32px 20px;
        justify-content: flex-start;
    }
    .al-hero-title-v2 {
        font-size: clamp(28px, 7.5vw, 42px);
        line-height: 1.22;
    }
    .al-hero-ctas-v2 {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .al-social-proof-v2 {
        padding: 14px 12px;
    }
    .al-proof-inner {
        gap: 8px;
        font-size: 11px;
    }
    .al-proof-item {
        font-size: 11px;
        gap: 3px;
    }
    .al-proof-item .al-proof-num {
        font-size: 12.5px;
    }
    .al-proof-separator {
        font-size: 11px;
        display: inline-block;
    }
}


/* ==========================================================================
   Discover / Trending (3-Poll Equal Grid)
   ========================================================================== */
.al-trending-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile: featured card — no span, same as others */
.al-editorial-poll-card.featured {
    grid-column: 1;
}

/* Tablet & Desktop (≥640px): 3 equal columns, no featuring */
@media (min-width: 640px) {
    .al-trending-grid-v2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
    .al-editorial-poll-card.featured {
        grid-column: auto; /* equal width, no spanning */
    }
}

/* ==========================================================================
   Editorial Poll Cards (Compact, Premium)
   ========================================================================== */
.al-editorial-poll-card {
    background: var(--al-bg-primary);
    border: 1px solid var(--al-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.al-editorial-poll-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--al-border-medium);
    text-decoration: none;
    color: inherit;
}

/* Image Header with Overlay */
.al-editorial-card-header {
    position: relative;
    width: 100%;
    height: 180px;
    background: var(--al-bg-tertiary);
    overflow: hidden;
}

.al-editorial-poll-card.featured .al-editorial-card-header {
    height: 180px; /* Same as regular cards — keeps the 3-col trending grid equal height */
}

.al-editorial-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.al-editorial-poll-card:hover .al-editorial-card-img {
    transform: scale(1.03);
}

.al-editorial-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    pointer-events: none;
}

.al-editorial-card-badges {
    display: flex;
    gap: 8px;
}

.al-editorial-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--al-accent-pink);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.al-editorial-vote-count {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card Body */
.al-editorial-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.al-editorial-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 47px; /* EXACTLY 2 lines tall */
    color: var(--al-text-primary);
}

.al-editorial-poll-card.featured .al-editorial-card-title {
    /* Kept same as others to ensure exact grid sizing */
    font-size: 18px;
}

/* Options */
.al-editorial-card-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
    /* No margin-top: auto — that was causing the huge blank gap in equal-height cards */
}

.al-editorial-opt-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.al-editorial-opt-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.al-editorial-opt-name {
    font-weight: 500;
    color: var(--al-text-primary);
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.al-editorial-opt-pct {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--al-text-secondary);
    font-weight: 500;
}

.al-editorial-opt-track {
    width: 100%;
    height: 3px;
    background: var(--al-bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.al-editorial-opt-fill {
    height: 100%;
    background: var(--al-border-medium);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}

/* Hover & Winner States */
.al-editorial-opt-row:hover .al-editorial-opt-name {
    color: var(--al-accent-pink);
}

.al-editorial-opt-row:hover .al-editorial-opt-fill {
    background: var(--al-accent-pink);
}

.al-editorial-opt-row.winner .al-editorial-opt-name {
    color: var(--al-accent-pink);
    font-weight: 600;
}
.al-editorial-opt-row.winner .al-editorial-opt-pct {
    color: var(--al-accent-pink);
    font-weight: 600;
}
.al-editorial-opt-row.winner .al-editorial-opt-fill {
    background: var(--al-accent-pink);
}

/* ── Vote Now Button ── */
.al-editorial-vote-btn {
    display: block;
    width: 100%;
    margin-top: auto;          /* pushes button to bottom of flex card body */
    padding-top: 16px;
    padding-bottom: 0;
}

.al-editorial-vote-btn span {
    display: block;
    background: var(--al-accent-pink);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
}

.al-editorial-poll-card:hover .al-editorial-vote-btn span {
    background: var(--al-accent-pink-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   Categories / Poll Worlds
   ========================================================================== */
.al-categories-scroll-v2 {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none; /* Firefox */
}
.al-categories-scroll-v2::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.al-cat-pill-v2 {
    flex: 0 0 auto;
    padding: 12px 24px;
    border: 1px solid var(--al-border-light);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--al-text-primary);
    text-decoration: none;
    transition: all 0.2s;
    background: var(--al-bg-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.al-cat-pill-v2:hover {
    border-color: var(--al-text-primary);
    background: var(--al-text-primary);
    color: #fff;
    text-decoration: none;
}
.al-cat-pill-v2 svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.al-cat-pill-v2:hover svg {
    opacity: 1;
}
.al-saas-cta-actions i {
    opacity: 0.8;
}

/* ==========================================================================
   Mobile Menu Drawer
   ========================================================================== */
.al-mobile-menu {
    position: fixed;
    top: 60px; /* Below header */
    left: 0;
    width: 100%;
    background: var(--al-bg-primary);
    border-bottom: 1px solid var(--al-border-light);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    visibility: hidden;
}

.al-mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
}

/* ==========================================================================
   Most Voted Leaderboard
   ========================================================================== */
.al-leaderboard-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.al-leaderboard-item-v2 {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--al-bg-primary);
    border: 1px solid var(--al-border-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.al-leaderboard-item-v2:hover {
    border-color: var(--al-border-medium);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transform: translateX(4px);
}
.al-leaderboard-rank {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--al-text-muted);
    width: 40px;
    flex-shrink: 0;
}
.al-leaderboard-item-v2:nth-child(1) .al-leaderboard-rank {
    color: var(--al-accent-pink);
}
.al-leaderboard-title {
    font-weight: 600;
    font-size: 16px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 24px;
}
.al-leaderboard-votes {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--al-text-secondary);
    white-space: nowrap;
}

/* ==========================================================================
   How It Works (Editorial Timeline)
   ========================================================================== */
.hiw-section {
    padding: 72px 0;
    background: transparent;
    overflow: hidden;
}

.hiw-intro {
    max-width: 560px;
    margin-bottom: 42px;
}

.hiw-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: var(--al-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hiw-heading {
    font-size: 38px;
    line-height: 1.15;
    color: var(--al-text-primary);
    margin: 0 0 14px 0;
}
.hiw-heading-sans {
    font-family: var(--font-sans);
    font-weight: 700;
}
.hiw-heading-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--al-accent-pink);
}
.hiw-mobile-br {
    display: none;
}

.hiw-support {
    font-family: var(--font-sans);
    font-size: 14.5px;
    color: var(--al-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Timeline Layout */
.hiw-journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease;
}

.hiw-step-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--al-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hiw-marker-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.hiw-marker {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hiw-icon {
    width: 18px;
    height: 18px;
    stroke: var(--al-text-primary);
    stroke-width: 1.5;
    transition: stroke 0.2s ease;
}

.hiw-connector {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin-left: 16px;
    transition: background 0.2s ease;
}

/* Content */
.hiw-step-body {
    display: flex;
    flex-direction: column;
}

.hiw-title {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.hiw-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--al-text-secondary);
    line-height: 1.55;
    margin: 0;
    max-width: 270px;
}

.hiw-brand-word {
    color: var(--al-accent-pink);
    font-weight: 500;
    white-space: nowrap;
}

/* Desktop Hover Interactions */
@media (hover: hover) {
    .hiw-step:hover .hiw-title {
        color: #000;
    }
    .hiw-step:hover .hiw-icon {
        stroke: var(--al-accent-pink);
    }
    .hiw-step:hover .hiw-connector {
        background: rgba(0, 0, 0, 0.12);
    }
}

/* Mobile Timeline Layout */
@media (max-width: 768px) {
    .hiw-section {
        padding: 56px 0;
    }
    .hiw-intro {
        margin-bottom: 40px;
    }
    .hiw-heading {
        font-size: 30px;
    }
    .hiw-mobile-br {
        display: block;
    }
    .hiw-support {
        font-size: 14px;
    }

    .hiw-journey {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hiw-step {
        padding-left: 32px;
    }

    .hiw-marker-row {
        position: absolute;
        left: 0;
        top: 0;
        bottom: -32px;
        width: 18px;
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
    }
    
    .hiw-marker {
        width: 18px;
        height: 18px;
        justify-content: center;
        margin-top: 2px;
    }

    .hiw-connector {
        width: 1px;
        height: auto;
        flex: 1;
        margin-left: 0;
        margin-top: 12px;
    }
    
    /* Remove connector on last step on mobile */
    .hiw-step:last-child .hiw-connector {
        display: none;
    }

    .hiw-desc {
        max-width: 100%;
    }
}

/* Animations */
.hiw-animate {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 450ms ease-out, transform 450ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
    .hiw-animate {
        transition: none !important;
        transform: none !important;
    }
}
.is-visible .hiw-animate,
.hiw-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0ms);
}

/* ==========================================================================
   Vote. Earn. Repeat. (Progress Visual)
   ========================================================================== */
.al-earn-v2 {
    background: var(--al-bg-secondary);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.al-earn-section-wrapper {
    overflow: hidden; /* For oversized background decor */
}
.al-earn-v2-premium {
    display: flex;
    align-items: center;
    gap: 64px;
    background: #faf9f8; /* Warm light neutral */
    border: 1px solid var(--al-border-light);
    border-radius: 16px;
    padding: 36px 44px;
    position: relative;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.al-earn-v2-premium.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.al-earn-left-premium {
    flex: 0 0 42%;
    position: relative;
    z-index: 1;
}
.al-earn-title-premium {
    margin: 0 0 20px 0;
    line-height: 1.1;
}
.al-earn-title-sans {
    font-family: var(--font-sans);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.al-earn-title-serif {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 400;
    color: var(--al-accent-pink);
}
.al-earn-desc-premium {
    font-size: 15px;
    color: var(--al-text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 28px 0;
}
.al-earn-brand-word {
    font-weight: 600;
    color: #1a1a1a;
}
.al-btn-secondary-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid var(--al-border-light);
    background: #fff;
    color: var(--al-text-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none !important;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.al-btn-secondary-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border-color: rgba(224, 33, 122, 0.3);
    text-decoration: none !important;
}
.al-earn-journey {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.al-earn-journey-step {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.al-earn-journey-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.al-earn-step-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
/* Horizontal connector line on desktop */
.al-earn-journey-step:not(:last-child) .al-earn-step-header::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: var(--al-border-light);
    margin-left: 8px;
    margin-right: -24px; /* Stretch across the grid gap */
}
.al-earn-step-num {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: var(--al-text-muted);
    letter-spacing: 0.1em;
}
.al-earn-step-icon-wrap {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--al-text-primary);
    transition: color 200ms ease;
}
.al-earn-step-icon {
    width: 18px;
    height: 18px;
}
.al-earn-step-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    transition: color 200ms ease, transform 200ms ease;
}
.al-earn-step-desc {
    font-size: 13px;
    color: var(--al-text-secondary);
    line-height: 1.5;
    margin: 0;
}
/* Hover Interactions */
.al-earn-journey-step:hover .al-earn-step-icon-wrap {
    color: var(--al-accent-pink);
}
.al-earn-journey-step:hover .al-earn-step-title {
    color: var(--al-accent-pink);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .al-earn-v2-premium {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 32px;
        gap: 48px;
    }
    .al-earn-journey {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .al-earn-journey-step:not(:last-child) .al-earn-step-header::after {
        display: none; /* Hide horizontal line */
    }
    /* Vertical connector on mobile */
    .al-earn-journey-step:not(:last-child) {
        position: relative;
    }
    .al-earn-journey-step:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 36px; /* align with the middle of the icon */
        top: 24px;
        bottom: -24px;
        width: 1px;
        background: var(--al-border-light);
    }
}
@media (prefers-reduced-motion: reduce) {
    .al-earn-v2-premium, .al-earn-journey-step {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Fresh Polls (Compact row)
   ========================================================================== */
.al-fresh-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .al-fresh-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .al-fresh-grid-v2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ (Editorial)
   ========================================================================== */
.al-faq-v2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
}
.al-faq-title-area h2 {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 40px;
    margin: 0 0 16px 0;
}
.al-faq-list {
    display: flex;
    flex-direction: column;
}
.al-faq-item-v2 {
    border-bottom: 1px solid var(--al-border-light);
    background-color: transparent;
    transition: background-color 200ms ease, border-color 200ms ease;
    opacity: 0;
}
.al-faq-item-v2:first-child {
    border-top: 1px solid var(--al-border-light);
}
@keyframes faqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.al-faq-title-area {
    opacity: 0;
}
.al-faq-title-area.is-visible {
    animation: faqFadeInUp 500ms ease-out forwards;
}
.al-faq-item-v2.is-visible {
    animation: faqFadeInUp 400ms ease-out forwards;
}
.al-faq-item-v2:hover {
    background-color: rgba(224, 33, 122, 0.02);
}
.al-faq-trigger-v2 {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--al-text-primary);
    text-align: left;
    transition: color 200ms ease, transform 200ms ease;
}
.al-faq-item-v2:hover .al-faq-trigger-v2 {
    color: var(--al-accent-pink);
    transform: translateY(-1px);
}
.al-faq-item-v2.active .al-faq-trigger-v2 {
    color: var(--al-accent-pink);
}
.al-faq-content-v2 {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.al-faq-content-inner {
    overflow: hidden;
    padding-bottom: 0;
    color: var(--al-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 280ms cubic-bezier(0.4, 0, 0.2, 1), padding 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.al-faq-item-v2.active .al-faq-content-v2 {
    grid-template-rows: 1fr;
}
.al-faq-item-v2.active .al-faq-content-inner {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 24px;
}
.al-faq-icon {
    transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
}
.al-faq-item-v2.active .al-faq-icon {
    transform: rotate(45deg);
    color: var(--al-accent-pink);
}
@media (prefers-reduced-motion: reduce) {
    .al-faq-item-v2, .al-faq-title-area {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .al-faq-content-v2, .al-faq-content-inner, .al-faq-icon, .al-faq-trigger-v2, .al-faq-item-v2 {
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .al-faq-v2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.al-final-cta-v2 {
    position: relative;
    text-align: center;
    padding: 100px 24px 80px 24px;
    border-top: 1px solid var(--al-border-light);
    background-color: #faf9f6; /* Warm white/ivory base */
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Subtle Glow Backdrop */
.al-final-cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--al-accent-pink-subtle) 0%, rgba(250,249,246,0) 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

/* Decorative Quote Mark */
.al-final-cta-decorator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--font-editorial);
    font-size: 400px;
    color: var(--al-accent-pink);
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.al-final-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.al-final-cta-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--al-text-muted);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUpCTA 0.6s ease-out forwards;
}

.al-final-cta-title {
    font-family: var(--font-sans);
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    color: #1a1a1a; /* Dark charcoal/near-black */
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUpCTA 0.6s ease-out 0.1s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.al-final-cta-title .editorial {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--al-accent-pink);
    font-weight: 400;
    font-size: clamp(34px, 4.2vw, 54px);
    text-transform: none;
    letter-spacing: normal;
    margin-top: -6px; /* Pull slightly closer to the first line */
}

.al-final-cta-sub {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--al-text-secondary);
    margin: 0 auto 32px auto;
    max-width: 560px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInCTA 0.6s ease-out 0.2s forwards;
}

.al-final-cta-btn {
    background: var(--al-accent-pink);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    height: 46px;
    padding: 0 24px;
    border-radius: var(--radius-md);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUpCTA 0.6s ease-out 0.3s forwards;
}
.al-final-cta-btn:hover {
    background: var(--al-accent-pink-hover);
    color: #fff;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 33, 122, 0.2);
}

.al-final-cta-micro {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--al-text-muted);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInCTA 0.6s ease-out 0.4s forwards;
}

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

@keyframes fadeInCTA {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.al-footer-v2 {
    background: var(--al-bg-primary);
    border-top: 1px solid var(--al-border-light);
    padding: 64px 0 24px 0;
}
.al-footer-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}
.al-footer-brand-v2 .logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--al-text-primary);
    text-decoration: none;
    margin-bottom: 16px;
    display: inline-block;
}
.al-footer-brand-v2 .logo span { color: var(--al-accent-pink); }
.al-footer-brand-v2 p {
    color: var(--al-text-secondary);
    font-size: 14px;
    max-width: 300px;
}
.al-footer-col-v2 h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.al-footer-col-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.al-footer-col-v2 ul li {
    margin-bottom: 12px;
}
.al-footer-col-v2 ul li a {
    color: var(--al-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.al-footer-col-v2 ul li a:hover {
    color: var(--al-text-primary);
}
.al-footer-bottom-v2 {
    border-top: 1px solid var(--al-border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--al-text-muted);
}
@media (max-width: 768px) {
    .al-footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }
    .al-footer-brand-v2 {
        grid-column: span 2;
    }
    .al-footer-bottom-v2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Discover Page Redesign 2.0
   ========================================================================== */

/* Hero Section */
.al-discover-hero-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 44px 20px 28px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--al-border-light, #f0f0f0);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.al-discover-hero-v2 .al-container-v2 {
    width: 100%;
    max-width: 900px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.al-discover-hero-v2 .al-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(224, 33, 122, 0.08);
    color: var(--al-accent-pink, #E0217A);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(224, 33, 122, 0.18);
}

.al-discover-hero-v2 .al-discover-hero-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(24px, 5.5vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 auto 12px auto;
    max-width: 650px;
    width: 100%;
    box-sizing: border-box;
    color: var(--al-text-primary, #111111);
    word-break: normal;
    overflow-wrap: break-word;
}

.al-discover-hero-v2 .al-discover-hero-title span.editorial {
    font-family: var(--font-editorial, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: var(--al-accent-pink, #E0217A);
}

.al-discover-hero-v2 .al-discover-hero-sub {
    font-size: clamp(13.5px, 2vw, 16px);
    color: var(--al-text-secondary, #666666);
    margin: 0 auto 24px auto;
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
}

/* Search Bar */
.al-discover-search-wrapper {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 24px auto;
    box-sizing: border-box;
}

.al-discover-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding: 4px 4px 4px 12px;
    width: 100%;
    box-sizing: border-box;
}

.al-discover-search-form:focus-within {
    border-color: var(--al-accent-pink, #E0217A);
    box-shadow: 0 6px 20px rgba(224, 33, 122, 0.12);
}

.al-discover-search-icon {
    position: absolute;
    left: 18px;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.al-discover-search-input {
    width: 100%;
    min-width: 0;
    flex: 1;
    padding: 10px 16px 10px 38px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 15px;
    color: #111111;
    border: none;
    outline: none;
    background: transparent;
    box-sizing: border-box;
}

.al-discover-search-input::placeholder {
    color: #999999;
}

.al-discover-search-btn {
    background: var(--al-accent-pink, #E0217A);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 999px;
    padding: 0 20px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
}

.al-discover-search-btn:hover {
    background: var(--al-accent-pink-hover, #c91b6b);
    transform: scale(1.02);
}

/* Category Navigation (Clean Pill Bar) */
.al-discover-categories-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 8px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.al-discover-categories-scroll::-webkit-scrollbar {
    display: none;
}

.al-discover-category-pill-v2 {
    flex: 0 0 auto;
    padding: 7px 16px;
    background: #f4f4f6;
    color: #555555;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.al-discover-category-pill-v2:hover {
    background: #ebebee;
    color: #111111;
    text-decoration: none;
}

.al-discover-category-pill-v2.active {
    background: rgba(224, 33, 122, 0.09);
    color: var(--al-accent-pink, #E0217A);
    font-weight: 600;
    border-color: rgba(224, 33, 122, 0.25);
}

@media (max-width: 768px) {
    .al-discover-hero-v2 {
        padding: 24px 16px 20px 16px;
    }
    .al-discover-hero-v2 .al-container-v2 {
        padding: 0;
        width: 100%;
    }
    .al-discover-hero-v2 .al-discover-hero-title {
        font-size: 24px;
        line-height: 1.25;
        padding: 0 4px;
    }
    .al-discover-hero-v2 .al-discover-hero-sub {
        font-size: 13.5px;
        margin-bottom: 16px;
        padding: 0 8px;
    }
    .al-discover-search-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }
    .al-discover-categories-scroll {
        width: 100%;
        justify-content: flex-start;
        padding: 2px 0 6px 0;
    }
}

/* Results Section */
.al-discover-results {
    padding: 40px 0 80px 0;
    background: var(--al-bg-primary);
}

.al-discover-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--al-border-light);
    padding-bottom: 16px;
}

.al-discover-results-title h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--al-text-primary);
    margin: 0 0 4px 0;
}

.al-discover-results-title p {
    font-size: 14px;
    color: var(--al-text-secondary);
    margin: 0;
}

/* Empty State */
.al-discover-empty-state {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
    background: var(--al-bg-secondary);
    border-radius: var(--radius-md);
    border: 1px dashed var(--al-border-medium);
}

.al-discover-empty-state i {
    color: var(--al-text-muted);
    margin-bottom: 16px;
}

.al-discover-empty-state h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--al-text-primary);
}

.al-discover-empty-state p {
    color: var(--al-text-secondary);
    font-size: 15px;
    margin: 0 0 24px 0;
}

/* ==========================================================================
   Distinct Creator Launchpad Final CTA Canvas
   ========================================================================== */
.al-creator-cta-section {
    padding: 72px 0 88px 0;
    background: #ffffff;
    position: relative;
}

/* Top Connected Eyebrow Tab */
.al-creator-tab-tag {
    display: inline-block;
    background: #FAF9F6;
    border: 1px solid #EAE8E2;
    border-bottom: none;
    padding: 8px 22px;
    border-radius: 8px 8px 0 0;
    font-family: var(--font-mono, monospace);
    font-size: 13px;
    font-weight: 600;
    color: #444440;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    margin-left: 2px;
}

/* Main Box Canvas */
.al-creator-cta-canvas {
    background: #FAF9F6;
    border: 1px solid #EAE8E2;
    border-radius: 0 20px 20px 20px;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

/* Left Hero & Message */
.al-creator-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.al-creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #E0217A;
    background: rgba(224, 33, 122, 0.08);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 33, 122, 0.18);
}

.al-creator-cta-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111110;
    margin: 0 0 16px 0;
}

.al-creator-cta-title .editorial {
    font-family: var(--font-editorial, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 400;
    color: #E0217A;
}

.al-creator-cta-desc {
    font-size: 15.5px;
    color: #666660;
    line-height: 1.55;
    margin: 0 0 28px 0;
    max-width: 460px;
}

.al-creator-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.al-btn-create-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    background: #E0217A;
    color: #ffffff !important;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(224, 33, 122, 0.3);
    transition: all 0.2s ease;
    border: none;
}

.al-btn-create-primary:hover {
    background: #c91c6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(224, 33, 122, 0.4);
    color: #ffffff !important;
}

.al-btn-points-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    background: #ffffff;
    border: 1.5px solid #111110;
    color: #111110 !important;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.al-btn-points-secondary:hover {
    background: #111110;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.al-creator-perks {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    color: #777770;
    flex-wrap: wrap;
}

.al-perk-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.al-perk-sep {
    color: #ccc;
}

/* Right Interactive Poll Launchpad Preview */
.al-creator-cta-right {
    display: flex;
    justify-content: flex-end;
}

.al-creator-preview-card {
    background: #ffffff;
    border: 1px solid #E5E5DF;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 460px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.al-creator-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.al-preview-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.al-preview-pill {
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 700;
    color: #111110;
    background: #f0f0ec;
    padding: 4px 10px;
    border-radius: 999px;
}

.al-preview-time {
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    color: #888880;
}

.al-preview-card-input-box {
    background: #fafaf8;
    border: 1.5px dashed #deded8;
    border-radius: 12px;
    padding: 12px 16px;
}

.al-preview-input-label {
    display: block;
    font-family: var(--font-mono, monospace);
    font-size: 10.5px;
    text-transform: uppercase;
    color: #999990;
    font-weight: 600;
    margin-bottom: 4px;
}

.al-preview-input-text {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #111110;
}

.al-preview-contenders-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.al-preview-contender {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafaf8;
    border: 1px solid #eeeeea;
    border-radius: 10px;
    padding: 10px 12px;
}

.al-contender-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E0217A;
    color: #fff;
    font-family: var(--font-display, 'Sora', sans-serif);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.al-contender-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111110;
}

.al-contender-sub {
    display: block;
    font-size: 10px;
    color: #888880;
    font-family: var(--font-mono, monospace);
}

.al-preview-vs {
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
}

.al-preview-reward-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFF4F8;
    border: 1px solid rgba(224, 33, 122, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #111110;
}

.al-preview-reward-strip strong {
    color: #E0217A;
}

.al-preview-launch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    background: #111110;
    color: #ffffff !important;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
}

.al-preview-launch-btn:hover {
    background: #E0217A;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Mobile Responsiveness for Creator CTA */
@media (max-width: 860px) {
    .al-creator-cta-section {
        padding: 44px 0;
    }
    .al-creator-tab-tag {
        font-size: 11.5px;
        padding: 6px 16px;
    }
    .al-creator-cta-canvas {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        border-radius: 0 16px 16px 16px;
        gap: 32px;
    }
    .al-creator-cta-title {
        font-size: 32px;
    }
    .al-creator-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .al-creator-cta-actions a {
        width: 100%;
        justify-content: center;
    }
    .al-creator-preview-card {
        max-width: 100%;
        padding: 20px 16px;
    }
}

/* ==========================================================================
   Mobile Optimization (Complete Pass)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Global Mobile Spacing & Layout */
    .al-container-v2 {
        padding: 0 16px;
    }
    
    .al-section-v2 {
        padding: 48px 0 !important;
    }
    
    body {
        padding-bottom: 80px; /* For mobile nav */
    }
    /* 3. Hero Section */
    .al-hero-title-sans {
        font-size: 34px !important;
        line-height: 1.1;
    }
    
    .al-hero-title-serif {
        font-size: 32px !important;
    }
    
    .al-hero-subtitle-v2 {
        font-size: 14px;
        margin: 16px auto 24px;
        padding: 0 8px;
    }
    
    .al-hero-buttons {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 12px;
        padding: 0;
    }
    
    .al-hero-buttons .al-btn-primary, 
    .al-hero-buttons .al-btn-secondary {
        flex: 1;
        height: 44px;
        padding: 0;
        font-size: 13px;
        justify-content: center;
        text-align: center;
    }
    
    .al-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        width: 100%;
        margin-top: 32px;
    }
    
    .al-stat-value {
        font-size: 20px;
    }
    
    .al-stat-label {
        font-size: 11px;
    }
    
    .al-hero-stat {
        padding: 12px 4px;
        border: none;
    }
    
    .al-hero-stat:not(:last-child) {
        border-right: 1px solid var(--al-border-light);
    }

    /* 4. Category Section */
    .al-categories-scroll-v2 {
        margin: 0 -16px;
        padding: 0 16px 16px 16px;
        gap: 12px;
        scroll-padding-left: 16px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
    }
    
    .al-cat-pill-v2 {
        scroll-snap-align: start;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 5. Trending / Discover / Most Voted */
    .al-section-header-v2 h2 {
        font-size: 26px !important;
    }
    
    .al-leaderboard-item-v2 {
        padding: 14px 12px;
        gap: 12px;
    }
    
    .al-leaderboard-title {
        font-size: 14px;
    }
    
    /* 6. How It Works */
    .al-steps-v2 {
        gap: 24px;
    }
    
    .al-step-v2 {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--al-border-light);
    }
    
    .al-step-v2:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .al-step-title-v2 {
        font-size: 18px;
    }
    
    /* 7. Vote. Earn. Repeat. */
    .al-earn-v2-premium {
        padding: 32px 20px;
        gap: 32px;
    }
    
    .al-earn-title-sans {
        font-size: 32px;
    }
    
    .al-earn-title-serif {
        font-size: 30px;
    }
    
    .al-earn-journey {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: relative;
    }
    
    .al-earn-journey::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 24px;
        bottom: 24px;
        width: 1px;
        background: var(--al-border-medium);
        z-index: 0;
    }
    
    .al-earn-journey-step {
        width: 100%;
        padding-top: 0;
        padding-left: 40px;
        position: relative;
    }
    
    .al-earn-journey-step::before {
        display: none !important;
    }
    
    .al-earn-step-header {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
        width: auto;
    }
    
    .al-earn-step-num {
        display: none;
    }
    
    .al-earn-step-icon-wrap {
        width: 28px;
        height: 28px;
        position: relative;
        z-index: 1;
        background: #fff;
    }
    
    .al-earn-step-icon {
        width: 14px;
        height: 14px;
    }
    
    .al-earn-step-title {
        font-size: 15px;
        margin-bottom: 4px;
        margin-top: 4px;
    }
    
    .al-earn-step-desc {
        font-size: 13px;
    }
    
    /* 8. FAQ */
    .al-faq-btn-v2 {
        padding: 16px 0;
        font-size: 16px;
    }
    
    .al-faq-answer-inner-v2 {
        padding-bottom: 16px;
        font-size: 14px;
    }
    
    /* 9. Final CTA */
    .al-final-cta-section {
        padding: 48px 0 60px 0;
    }
    .al-final-cta-card {
        padding: 48px 20px 42px 20px;
        border-radius: 20px;
    }
    .al-final-cta-heading .main-text {
        font-size: clamp(28px, 7.5vw, 36px);
    }
    .al-final-cta-heading .serif-text {
        font-size: clamp(26px, 7vw, 34px);
    }
    .al-final-cta-description {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .al-final-cta-button-group {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
        width: 100%;
        max-width: 320px;
    }
    .al-cta-btn-primary,
    .al-cta-btn-secondary {
        width: 100%;
        height: 46px;
        font-size: 14px;
    }
    .al-final-cta-pills {
        padding: 6px 14px;
        gap: 8px;
    }
    .al-cta-pill-item {
        font-size: 11px;
    }
    
    /* 10. Footer */
    .al-footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .al-footer-col {
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .al-footer-col:last-child {
        border-bottom: none;
    }
}
