/* ============================================
   SEAMLESS SOLUTIONS — COMING SOON
   Color Palette:
   Primary Blue:  #1565C0
   Deep Navy:     #0A1628
   Bright Blue:   #1E88E5
   Ice Blue:      #E8F0FE
   White:         #FFFFFF
============================================ */

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

:root {
    --primary: #1565C0;
    --dark: #0A1628;
    --dark-deep: #060D18;
    --accent: #1E88E5;
    --ice: #E8F0FE;
    --white: #FFFFFF;
    --neon: #1E88E5;
    --neon-glow: rgba(30, 136, 229, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark-deep);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


/* ============================================
   BACKGROUND — VIDEO / IMAGE
============================================ */
.bg-media {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    z-index: 0;
    overflow: hidden;
}

.bg-media video,
.bg-media .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark blue overlay on top of image/video */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(6, 13, 24, 0.92) 0%,
            rgba(10, 22, 40, 0.88) 40%,
            rgba(6, 13, 24, 0.94) 100%
        );
    pointer-events: none;
}


/* ============================================
   NEON LIGHT BEAMS
============================================ */
.neon-beam {
    position: fixed;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(2px);
}

/* Beam 1 — large diagonal sweep */
.neon-beam-1 {
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon), var(--neon-glow), var(--neon), transparent);
    box-shadow:
        0 0 15px var(--neon-glow),
        0 0 40px var(--neon-glow),
        0 0 80px rgba(30, 136, 229, 0.25);
    animation: neonSweep1 8s ease-in-out infinite;
    opacity: 0.7;
    transform-origin: center;
}

/* Beam 2 — vertical sweep */
.neon-beam-2 {
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--neon), var(--neon-glow), var(--neon), transparent);
    box-shadow:
        0 0 12px var(--neon-glow),
        0 0 30px var(--neon-glow),
        0 0 60px rgba(30, 136, 229, 0.2);
    animation: neonSweep2 11s ease-in-out infinite;
    opacity: 0.5;
}

/* Beam 3 — subtle accent beam */
.neon-beam-3 {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), rgba(21,101,192,0.6), var(--primary), transparent);
    box-shadow:
        0 0 10px rgba(21, 101, 192, 0.4),
        0 0 30px rgba(21, 101, 192, 0.15);
    animation: neonSweep3 14s ease-in-out infinite;
    opacity: 0.45;
}

@keyframes neonSweep1 {
    0% {
        top: -5%;
        left: -15%;
        transform: rotate(-30deg);
    }
    25% {
        top: 30%;
        left: 80%;
        transform: rotate(10deg);
    }
    50% {
        top: 70%;
        left: 100%;
        transform: rotate(25deg);
    }
    75% {
        top: 90%;
        left: 20%;
        transform: rotate(-15deg);
    }
    100% {
        top: -5%;
        left: -15%;
        transform: rotate(-30deg);
    }
}

@keyframes neonSweep2 {
    0% {
        top: -10%;
        left: 90%;
    }
    33% {
        top: 50%;
        left: 10%;
    }
    66% {
        top: 100%;
        left: 70%;
    }
    100% {
        top: -10%;
        left: 90%;
    }
}

@keyframes neonSweep3 {
    0% {
        top: 80%;
        left: -10%;
        transform: rotate(5deg);
    }
    50% {
        top: 15%;
        left: 95%;
        transform: rotate(-8deg);
    }
    100% {
        top: 80%;
        left: -10%;
        transform: rotate(5deg);
    }
}

/* Ambient neon glow spots */
.bg-overlay::before,
.bg-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: glowPulse 10s ease-in-out infinite;
}

.bg-overlay::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.12), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.bg-overlay::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.1), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}


/* ============================================
   PARTICLE CANVAS
============================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}


/* ============================================
   GRID TEXTURE
============================================ */
.grid-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(30, 136, 229, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 136, 229, 0.025) 1px, transparent 1px);
    background-size: 70px 70px;
}


/* ============================================
   NOISE GRAIN
============================================ */
.noise-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
}


/* ============================================
   MAIN CONTENT CONTAINER
============================================ */
.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 24px;
    text-align: center;
}


/* ============================================
   LOGO — LARGE SIZE
============================================ */
.logo-wrapper {
    margin-bottom: 44px;
    animation: fadeDown 0.8s ease-out 0.1s both;
}

.logo {
    height: 140px;
    width: auto;
    max-width: 90vw;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease, filter 0.5s ease, transform 0.4s ease;
}

.logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 25px var(--neon-glow));
    opacity: 1;
    transform: scale(1.03);
}


/* ============================================
   LAUNCH BADGE
============================================ */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    border-radius: 50px;
    background: rgba(30, 136, 229, 0.08);
    border: 1px solid rgba(30, 136, 229, 0.2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 36px;
    animation: fadeDown 0.8s ease-out 0.25s both;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: block;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--neon-glow);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--neon-glow); }
    50% { opacity: 0.35; transform: scale(0.7); box-shadow: 0 0 2px var(--neon-glow); }
}


/* ============================================
   MAIN HEADING — WORD BY WORD
============================================ */
.main-heading {
    font-size: clamp(38px, 7vw, 82px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
    overflow: hidden;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 6px;
}

.word.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.highlight-word {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 45%, #64B5F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-word.visible {
    animation: glowText 3s ease-in-out infinite 1s;
}

@keyframes glowText {
    0%, 100% { filter: drop-shadow(0 0 0px transparent); }
    50% { filter: drop-shadow(0 0 18px var(--neon-glow)); }
}


/* ============================================
   TAGLINE
============================================ */
.tagline {
    font-size: clamp(15px, 2.5vw, 21px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    animation: fadeDown 0.8s ease-out 1.8s both;
}

.tagline em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}


/* ============================================
   DESCRIPTION
============================================ */
.description {
    font-size: clamp(13px, 1.7vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.38);
    max-width: 560px;
    margin-bottom: 44px;
    animation: fadeDown 0.8s ease-out 2s both;
}

.description strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}


/* ============================================
   COUNTDOWN
============================================ */
.countdown-section {
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease-out 2.2s both;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px 22px;
    min-width: 90px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.08);
}

.countdown-num {
    font-family: 'Space Mono', monospace;
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.countdown-sep {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    line-height: 1;
    padding-bottom: 16px;
}


/* ============================================
   EMAIL SUBSCRIPTION
============================================ */
.email-section {
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease-out 2.4s both;
}

.email-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.email-box {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(30, 136, 229, 0.1), 0 0 8px rgba(30, 136, 229, 0.15);
}

.email-box input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    min-width: 0;
}

.email-box input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.email-box button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 10px;
    padding: 14px 26px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.email-box button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(21, 101, 192, 0.35);
}

.email-box button:active {
    transform: scale(0.97);
}

.email-ok {
    display: none;
    align-items: center;
    gap: 10px;
    color: #66BB6A;
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    justify-content: center;
}


/* ============================================
   CONTACT
============================================ */
.contact-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 16px;
    animation: fadeUp 0.8s ease-out 2.6s both;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.contact-btn:hover {
    color: var(--accent);
    background: rgba(30, 136, 229, 0.06);
}

.contact-btn svg {
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.contact-btn:hover svg {
    opacity: 1;
}


/* ============================================
   DIVIDER
============================================ */
.line-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.3), transparent);
    margin: 28px auto;
    animation: fadeUp 0.8s ease-out 2.7s both;
}


/* ============================================
   BOTTOM MOTTO — BLINKING
============================================ */
.bottom-motto {
    font-size: clamp(15px, 2.2vw, 20px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    animation: fadeUp 0.8s ease-out 2.8s both;
}

.motto-word {
    display: inline-block;
    animation: softBlink 3s ease-in-out infinite;
}

.motto-word:nth-child(1) { animation-delay: 0s; }
.motto-word:nth-child(3) { animation-delay: 0.4s; }
.motto-word:nth-child(5) { animation-delay: 0.8s; }

.motto-dash {
    display: inline-block;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
    animation: softBlink 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

@keyframes softBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0px transparent;
    }
    30% {
        opacity: 0.4;
        text-shadow: 0 0 0px transparent;
    }
    60% {
        opacity: 1;
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(30, 136, 229, 0.15);
    }
}


/* ============================================
   SHARED ANIMATIONS
============================================ */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

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


/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .main-heading {
        letter-spacing: -1.5px;
    }

    .word {
        margin: 0 4px;
    }

    .logo {
        height: 100px;
    }
}

@media (max-width: 520px) {
    .content {
        padding: 40px 18px;
    }

    .logo {
        height: 80px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-card {
        min-width: 68px;
        padding: 14px 14px;
    }

    .countdown-num {
        font-size: 26px;
    }

    .countdown-sep {
        font-size: 22px;
        padding: 0 2px;
        padding-bottom: 14px;
    }

    .email-box {
        flex-direction: column;
    }

    .email-box button {
        justify-content: center;
        border-radius: 10px;
    }

    .contact-row {
        gap: 12px;
    }

    .contact-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .bottom-motto {
        letter-spacing: 2px;
    }
}
