/* StackRoll - Coming Soon Page Styles */

/* Coming Soon Section */
.coming-soon-section {
    padding: 120px 0 100px;
    background:
        radial-gradient(1000px 600px at 20% -10%, rgba(44,108,84,0.15), rgba(44,108,84,0) 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.coming-soon-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons Container */
.coming-soon-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Primary Web App CTA */
.web-app-cta {
    background: linear-gradient(135deg, var(--neon-green), #67ffd2);
    color: #06251a;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(46, 255, 191, 0.3), inset 0 -2px 0 rgba(0,0,0,0.08);
    border: none;
    position: relative;
    overflow: hidden;
}

.web-app-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.web-app-cta:hover::before {
    transform: translateX(100%);
}

.web-app-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(46, 255, 191, 0.4);
}

.cta-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.cta-text {
    text-align: left;
    flex-grow: 1;
    line-height: 1.2;
}

.cta-overline {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cta-title {
    font-size: 20px;
    font-weight: 800;
}

.cta-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.web-app-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Store Buttons Container */
.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Disabled Store Buttons */
.download-button.disabled {
    background: linear-gradient(180deg, rgba(10,11,12,0.3) 0%, rgba(6,8,8,0.3) 100%);
    color: rgba(255,255,255,0.6);
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.02);
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.download-button.disabled::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.03) 8px,
        rgba(255,255,255,0.03) 16px
    );
    pointer-events: none;
}

.download-button.disabled .store-icon {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    filter: grayscale(0.3);
}

.download-button.disabled .store-text {
    text-align: left;
    line-height: 1.1;
}

.download-button.disabled .store-overline {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.download-button.disabled .store-title {
    font-size: 18px;
    font-weight: 800;
    opacity: 0.8;
}

/* Accessibility helpers */
.visually-hidden { position: absolute; left: -9999px; }

/* Waitlist form (light background variant) */
.waitlist-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
    padding: 8px;
    width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.waitlist-form input[type="email"] {
    width: min(420px, 100%);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-dark);
    font-size: 16px;
    outline: none;
}
.waitlist-form input[type="email"]::placeholder { color: var(--text-muted); }
.waitlist-form input[type="email"]:focus {
    border-color: rgba(77, 226, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(77, 226, 255, 0.2);
}
.waitlist-form button[type="submit"] {
    background: linear-gradient(135deg, var(--neon-green), #67ffd2);
    color: #06251a;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(46, 255, 191, 0.24);
}
.waitlist-form button[type="submit"]:hover {
    transform: translateY(-2px);
}
.waitlist-note {
    flex-basis: 100%;
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 80px 0 60px;
    }
    
    .coming-soon-title {
        font-size: 32px;
    }
    
    .coming-soon-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
    }
    
    .web-app-cta {
        min-width: 100%;
        max-width: 320px;
        padding: 18px 24px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .download-button.disabled {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .waitlist-form input[type="email"] {
        width: 100%;
        max-width: 100%;
    }
    .waitlist-form button[type="submit"] {
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 480px) {
    .coming-soon-section {
        padding: 60px 0 40px;
    }
    
    .coming-soon-buttons {
        gap: 24px;
    }
    
    .web-app-cta {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .cta-title {
        font-size: 18px;
    }
    
    .download-button.disabled {
        min-width: auto;
        padding: 12px 16px;
    }
}
