/* =====================
   Base
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    min-height: 100vh;
    color: #0f172a;
    background: #e6f2f5;
    overflow: hidden;
}

/* =====================
   Weather Background
===================== */
.weather-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, #bfe7f1 0%, #e6f2f5 45%, #f7fafc 100%);
    z-index: -2;
}

.weather-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.5) 0 80px, transparent 100px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.45) 0 90px, transparent 120px),
        radial-gradient(circle at 50% 60%, rgba(255,255,255,0.4) 0 100px, transparent 140px);
    opacity: 0.7;
}

/* =====================
   Hero
===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-content {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* =====================
   Text
===================== */
.tagline {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0284c7;
    margin-bottom: 14px;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
}

h1 span {
    color: #0369a1;
}

.subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 18px;
}

.coming-soon {
    font-size: 0.95rem;
    font-weight: 600;
    color: #065f46;
}

/* =====================
   Divider
===================== */
.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #22c55e);
    margin: 28px auto;
    border-radius: 3px;
}

/* =====================
   Contact
===================== */
.contact {
    font-size: 0.9rem;
    color: #475569;
}

.contact span {
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
    color: #0f766e;
    cursor: pointer;
}

/* =====================
   Responsive
===================== */
@media (max-width: 480px) {
    .hero-content {
        padding: 36px 26px;
    }
}
