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

/* ===== Variables ===== */
:root {
    --water-light: #4fc3f7;
    --water-dark: #01579b;
    --bg-top: #0d0d1a;
    --bg-mid: #111827;
    --bg-bottom: #01579b;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.6);
}

/* ===== Base ===== */
html, body {
    height: 100%;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-top);
    background-image: linear-gradient(170deg, var(--bg-top) 0%, var(--bg-mid) 35%, #0c2d57 65%, var(--bg-bottom) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Bubbles ===== */
.bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(79, 195, 247, 0.12);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    animation: rise linear infinite;
    -webkit-animation: rise linear infinite;
}

.bubble:nth-child(1)  { width: 28px; height: 28px; left: 5%;  animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2)  { width: 16px; height: 16px; left: 15%; animation-duration: 9s;  animation-delay: 2s; }
.bubble:nth-child(3)  { width: 36px; height: 36px; left: 28%; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(4)  { width: 12px; height: 12px; left: 40%; animation-duration: 10s; animation-delay: 4s; }
.bubble:nth-child(5)  { width: 22px; height: 22px; left: 55%; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(6)  { width: 32px; height: 32px; left: 65%; animation-duration: 13s; animation-delay: 3s; }
.bubble:nth-child(7)  { width: 14px; height: 14px; left: 75%; animation-duration: 8s;  animation-delay: 1.5s; }
.bubble:nth-child(8)  { width: 26px; height: 26px; left: 85%; animation-duration: 15s; animation-delay: 2.5s; }
.bubble:nth-child(9)  { width: 18px; height: 18px; left: 92%; animation-duration: 10s; animation-delay: 5s; }
.bubble:nth-child(10) { width: 10px; height: 10px; left: 48%; animation-duration: 7s;  animation-delay: 3.5s; }

@keyframes rise {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* ===== Main Hero ===== */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem 5rem;
    width: 100%;
    max-width: 720px;
    animation: fadeIn 1s ease-out;
}

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

/* ===== Logo ===== */
.logo-area {
    margin-bottom: 0.6rem;
}

.logo-img {
    width: 520px;
    max-width: 90vw;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 6px 30px rgba(79, 195, 247, 0.25));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ===== Divider ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 140px;
    margin: 0.4rem 0 0.8rem;
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--water-light);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--water-light), transparent);
}

/* ===== Coming Soon Badge ===== */
.coming-soon-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    padding: 10px 28px;
    border: 2px solid var(--water-light);
    border-radius: 50px;
    background: rgba(79, 195, 247, 0.1);
}

.pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--water-light);
    border-radius: 50px;
    opacity: 0;
    animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* ===== Description ===== */
.description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ===== Contact Buttons ===== */
.contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(79, 195, 247, 0.2);
    border-color: var(--water-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.2);
}

/* ===== Footer ===== */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0.8rem 1rem;
    z-index: 1;
    background: rgba(13, 13, 26, 0.85);
}

.footer p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 1px;
}

.footer .author {
    margin-top: 3px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .logo-img {
        width: 320px;
    }

    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 4px;
        padding: 8px 22px;
    }

    .contact-bar {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding-bottom: 4.5rem;
    }
}