/* Coming Soon Detail Page - Subtle Grey & Blue Theme */

.cs-detail {
    --cs-bg: #f9fafb;
    --cs-bg-warm: #f3f4f6;
    --cs-bg-dark: #111827;
    --cs-accent: #3b82f6;
    --cs-accent-light: #dbeafe;
    --cs-accent-glow: rgba(59, 130, 246, 0.2);
    --cs-text: #111827;
    --cs-text-muted: #6b7280;
    --cs-border: #e5e7eb;
}

.cs-detail {
    background: var(--cs-bg);
    color: var(--cs-text);
    font-family: var(--font-sans);
}

/* Hero */
.cs-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #f3f4f6 50%, #e0e7ff 100%);
    padding: 4rem 2rem;
}

.cs-hero-bg {
    position: absolute;
    inset: 0;
}

.cs-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    background-size: 100% 100%;
}

.cs-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: cs-float 8s ease-in-out infinite;
}

.cs-hero-orb--1 {
    width: 300px;
    height: 300px;
    background: var(--cs-accent);
    top: 10%;
    left: 10%;
}

.cs-hero-orb--2 {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    bottom: 20%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes cs-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.cs-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.cs-badge {
    display: inline-block;
    background: var(--cs-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: cs-pulse 2s ease-in-out infinite;
}

@keyframes cs-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

.cs-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--cs-text);
}

.cs-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cs-accent);
    margin: 0 0 1rem;
}

.cs-subtitle {
    font-size: 1.1rem;
    color: var(--cs-text-muted);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.cs-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.cs-btn--primary {
    background: var(--cs-accent);
    color: white;
}

.cs-btn--primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cs-btn--ghost {
    background: transparent;
    color: var(--cs-text);
    border: 2px solid var(--cs-border);
}

.cs-btn--ghost:hover {
    border-color: var(--cs-accent);
    color: var(--cs-accent);
}

.cs-btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.cs-section {
    padding: 5rem 2rem;
}

.cs-section--dark {
    background: var(--cs-bg-dark);
    color: white;
}

.cs-section--dark .cs-section-title {
    color: white;
}

.cs-section--dark .cs-section-label {
    color: var(--cs-accent-light);
}

.cs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cs-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cs-section-label {
    display: inline-block;
    color: var(--cs-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.cs-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    color: var(--cs-text);
}

/* Features Grid */
.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cs-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--cs-border);
    text-align: center;
    transition: all 0.2s;
}

.cs-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12);
}

.cs-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cs-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--cs-text);
}

.cs-feature-card p {
    font-size: 0.95rem;
    color: var(--cs-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter */
.cs-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.cs-newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.cs-newsletter-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 500px;
}

.cs-section--dark .cs-btn--primary {
    background: white;
    color: var(--cs-accent);
}

.cs-section--dark .cs-btn--primary:hover {
    background: var(--cs-accent-light);
}

/* Text Center */
.cs-text-center {
    text-align: center;
    color: var(--cs-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cs-browse-cta {
    text-align: center;
}

/* Back Link */
.cs-back {
    text-align: center;
    padding: 2rem;
    background: var(--cs-bg);
}

.cs-back a {
    color: var(--cs-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.cs-back a:hover {
    color: var(--cs-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .cs-hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .cs-section {
        padding: 3rem 1.5rem;
    }
    
    .cs-hero-orb {
        display: none;
    }
}
