/* ============================================
   WYROH — Coming Soon Landing Page
   ============================================ */

:root {
    --bg: #050508;
    --surface: #0d0d14;
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --text: #f0f0f5;
    --text-muted: #6b7280;
    --glow-purple: rgba(139, 92, 246, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.3);
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* ---- Particles Canvas ---- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- Glow Orbs ---- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--glow-purple);
    top: -150px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--glow-cyan);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* ---- Main Container ---- */
.container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ---- Logo ---- */
.logo-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    height: 70px;
    filter: drop-shadow(0 0 30px var(--glow-purple));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 50px var(--glow-purple)) drop-shadow(0 0 80px var(--glow-cyan));
}

/* ---- Tagline ---- */
.tagline {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline-line {
    display: block;
}

.accent {
    background: linear-gradient(135deg, var(--purple-light), var(--cyan), var(--pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.03em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ---- Countdown ---- */
.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    min-width: 90px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-block:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    padding-bottom: 1.2rem;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0; }
}

/* ---- Signup ---- */
.signup-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.signup-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.signup-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 0.3rem;
    max-width: 400px;
    margin: 0 auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signup-form:focus-within {
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.signup-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
}

.signup-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.signup-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.signup-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-purple);
}

.signup-confirmation {
    display: none;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--cyan);
    font-weight: 600;
    animation: fadeInUp 0.5s ease-out;
}

.signup-confirmation.show {
    display: block;
}

/* ---- Social Links ---- */
.social-links {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--purple-light);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 0.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ---- Animations ---- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .countdown {
        gap: 0.3rem;
    }

    .countdown-block {
        min-width: 65px;
        padding: 0.9rem 0.7rem;
        border-radius: 12px;
    }

    .countdown-separator {
        font-size: 1.4rem;
        padding-bottom: 0.8rem;
    }

    .logo {
        height: 55px;
    }

    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }

    .signup-form {
        max-width: 320px;
    }
}

@media (max-width: 380px) {
    .countdown-block {
        min-width: 55px;
        padding: 0.7rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}
