/* ============================================
   Path Mapper — Coming Soon
   Fully standalone, no shared dependencies
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cs-scene {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a1a;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Animated background glows */
.cs-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: csFloat 12s ease-in-out infinite;
}

.cs-glow--1 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.cs-glow--2 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    bottom: -15%;
    right: -5%;
    animation-delay: -4s;
}

.cs-glow--3 {
    width: 350px;
    height: 350px;
    background: #db2777;
    top: 40%;
    right: 20%;
    animation-delay: -8s;
    opacity: 0.3;
}

@keyframes csFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Card */
.cs-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 580px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    animation: csFadeUp 0.8s ease forwards;
}

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

/* Badge */
.cs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: white;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

/* Title */
.cs-title {
    font-size: 3.2em;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
}

.cs-title-accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text */
.cs-tagline {
    font-size: 1.15em;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 500;
}

.cs-description {
    font-size: 0.95em;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Feature pills */
.cs-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cs-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85em;
    color: #cbd5e1;
}

.cs-feature-icon {
    font-size: 1.1em;
}

/* Notify form */
.cs-notify {
    margin-bottom: 32px;
}

.cs-notify-label {
    font-size: 0.82em;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.cs-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.cs-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 0.95em;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cs-input::placeholder {
    color: #475569;
}

.cs-input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.cs-button {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: white;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cs-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cs-button:active {
    transform: translateY(0);
}

/* Confirmation */
.cs-confirm {
    margin-top: 12px;
    font-size: 0.88em;
    color: #4ade80;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 1.4em;
}

.cs-confirm--visible {
    opacity: 1;
}

/* Socials */
.cs-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cs-socials-label {
    font-size: 0.78em;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.cs-socials-icons {
    display: flex;
    gap: 12px;
}

.cs-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.cs-social:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.cs-footer {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    font-size: 0.78em;
    color: #334155;
}

/* Responsive */
@media (max-width: 600px) {
    .cs-card {
        padding: 36px 24px;
    }

    .cs-title {
        font-size: 2.4em;
    }

    .cs-form {
        flex-direction: column;
    }

    .cs-features {
        flex-direction: column;
        align-items: center;
    }
}
