/* ===== COMING SOON - AUTHYMA TECH ===== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #030712; color: #f1f5f9; min-height: 100vh; overflow-x: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative;
}
a { text-decoration: none; color: inherit; }

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

.bg-effects { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; animation: glowPulse 6s ease-in-out infinite alternate; }
.bg-glow--1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%); top: -15%; left: -10%; }
.bg-glow--2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%); bottom: -10%; right: -10%; animation-delay: 3s; }
.bg-glow--3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
.bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(148,163,184,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.coming-soon {
    position: relative; z-index: 1; width: 100%; max-width: 900px; padding: 2rem 1.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem;
    min-height: 100vh; justify-content: center;
}

.video-logo { width: 100%; max-width: 420px; opacity: 0; animation: fadeInScale 1s ease-out 0.2s forwards; }
.video-logo__wrapper {
    position: relative; width: 100%; border-radius: 1.5rem; overflow: hidden;
    background: rgba(15,23,42,0.4); border: 1px solid rgba(59,130,246,0.15);
    box-shadow: 0 0 40px rgba(59,130,246,0.1), 0 0 80px rgba(59,130,246,0.05), 0 25px 50px rgba(0,0,0,0.4);
}
.video-logo__wrapper::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(139,92,246,0.2), rgba(6,182,212,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 1;
}
.video-logo__video { width: 100%; display: block; border-radius: inherit; }

.brand { opacity: 0; animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.brand__name {
    font-family: 'Outfit', sans-serif; font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
    font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 40%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.headline { opacity: 0; animation: fadeInUp 0.8s ease-out 0.8s forwards; }
.headline__title {
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 1.5rem + 3vw, 3.8rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.headline__title .text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.headline__subtitle {
    font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.15rem); color: #94a3b8;
    line-height: 1.6; max-width: 600px; margin: 0 auto;
}
.headline__typing-cursor {
    display: inline-block; width: 2px; height: 1.1em; background: #3b82f6;
    vertical-align: text-bottom; animation: blink 0.8s step-end infinite; margin-left: 2px;
}

.countdown { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeInUp 0.8s ease-out 1s forwards; }
.countdown__item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 80px; }
.countdown__number {
    font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 2rem + 1.5vw, 3.2rem);
    font-weight: 800; line-height: 1;
    background: linear-gradient(180deg, #f1f5f9 0%, #94a3b8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: relative; padding: 0.6rem 1rem;
}
.countdown__number::before {
    content: ''; position: absolute; inset: 0; border-radius: 0.75rem;
    background: rgba(15,23,42,0.6); border: 1px solid rgba(148,163,184,0.1); z-index: -1;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.countdown__label { font-size: 0.75rem; font-weight: 500; color: #64748b; text-transform: uppercase; letter-spacing: 0.12em; }
.countdown__separator {
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 1.8rem + 1vw, 2.8rem);
    font-weight: 700; color: #3b82f6; align-self: flex-start; padding-top: 0.6rem;
    animation: blink 1.2s ease-in-out infinite;
}

.email-signup { width: 100%; max-width: 480px; opacity: 0; animation: fadeInUp 0.8s ease-out 1.2s forwards; }
.email-signup__text { font-size: 0.9rem; color: #94a3b8; margin-bottom: 1rem; }
.email-signup__form {
    display: flex; gap: 0; border-radius: 999px; overflow: hidden;
    background: rgba(15,23,42,0.6); border: 1px solid rgba(148,163,184,0.12);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.email-signup__form:focus-within { border-color: rgba(59,130,246,0.4); box-shadow: 0 0 20px rgba(59,130,246,0.15); }
.email-signup__input {
    flex: 1; border: none; background: transparent; padding: 0.9rem 1.5rem;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #f1f5f9; outline: none; min-width: 0;
}
.email-signup__input::placeholder { color: #64748b; }
.email-signup__btn {
    border: none; background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
    padding: 0.9rem 1.6rem; cursor: pointer; white-space: nowrap;
    transition: all 0.3s ease; letter-spacing: 0.02em;
}
.email-signup__btn:hover { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 0 24px rgba(59,130,246,0.35); }
.email-signup__btn:active { transform: scale(0.97); }
.email-signup__feedback { margin-top: 0.75rem; font-size: 0.82rem; min-height: 1.4rem; transition: all 0.3s ease; }
.email-signup__feedback--success { color: #34d399; }
.email-signup__feedback--error { color: #f87171; }

.services-preview { width: 100%; opacity: 0; animation: fadeInUp 0.8s ease-out 1.4s forwards; }
.services-preview__title { font-size: 0.8rem; font-weight: 500; color: #64748b; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.services-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 600px; margin: 0 auto; }
.service-icon {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    padding: 1.2rem 0.8rem; border-radius: 1rem;
    background: rgba(15,23,42,0.4); border: 1px solid rgba(148,163,184,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: default;
}
.service-icon:hover {
    background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.25);
    transform: translateY(-4px); box-shadow: 0 8px 30px rgba(59,130,246,0.12);
}
.service-icon__icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 0.75rem; background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.1));
    color: #60a5fa; transition: all 0.4s ease;
}
.service-icon:hover .service-icon__icon {
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(139,92,246,0.2));
    box-shadow: 0 0 16px rgba(59,130,246,0.2);
}
.service-icon__icon svg, .service-icon__icon i { width: 20px; height: 20px; }
.service-icon__label { font-size: 0.72rem; font-weight: 500; color: #94a3b8; text-align: center; line-height: 1.3; }

.coming-footer {
    margin-top: auto; padding: 2rem 0 1rem; display: flex; flex-direction: column;
    align-items: center; gap: 1.2rem; opacity: 0; animation: fadeInUp 0.8s ease-out 1.6s forwards;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(15,23,42,0.5); border: 1px solid rgba(148,163,184,0.1);
    color: #94a3b8; transition: all 0.3s ease;
}
.social-link:hover {
    color: #60a5fa; border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.1);
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(59,130,246,0.15);
}
.social-link svg { width: 18px; height: 18px; }
.coming-footer__copy { font-size: 0.75rem; color: #475569; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes glowPulse { 0% { opacity: 0.3; transform: scale(1); } 100% { opacity: 0.6; transform: scale(1.1); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 640px) {
    .coming-soon { padding: 1.5rem 1rem; gap: 2rem; }
    .video-logo { max-width: 280px; }
    .video-logo__wrapper { border-radius: 1rem; }
    .services-preview__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .countdown { gap: 0.6rem; }
    .countdown__item { min-width: 65px; }
    .countdown__number { padding: 0.5rem 0.75rem; }
    .email-signup__form { flex-direction: column; border-radius: 1rem; }
    .email-signup__input { padding: 1rem 1.25rem; text-align: center; }
    .email-signup__btn { padding: 1rem; border-radius: 0 0 0.85rem 0.85rem; }
}
@media (min-width: 641px) and (max-width: 1024px) {
    .video-logo { max-width: 360px; }
}
