:root {
    --primary-blue: #052699;
    --primary-cyan: #20BCED;
    --bg-deep: #000000;
    --bg-surface: rgba(15, 15, 26, 0.68);
    --text-primary: #ffffff;
    --text-secondary: #b4b4c4;
    --text-muted: #7c8191;
    --grad-text: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 100%);
    --font-display: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    background: #000 !important;
    color: var(--text-primary);
    font-family: var(--font-display);
    overflow: hidden;
}

body {
    position: relative;
}

/* BACKGROUND */
.page-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(5, 38, 153, 0.20), transparent 35%),
        radial-gradient(circle at 80% 25%, rgba(32, 188, 237, 0.06), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(2, 10, 26, 0.98));
    z-index: 0;
}

.global-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(5, 38, 153, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(32, 188, 237, 0.08) 0%, transparent 60%);
    z-index: 0;
}

/* HERO */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7vh 6vw;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    max-width: 760px;
}

/* LOGO */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.brand-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-icon-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(32, 188, 237, 0.18) 0%, transparent 60%);
    z-index: -1;
}

.brand-divider {
    width: 2px;
    height: 90px;
    border-radius: 2px;
    background: linear-gradient(
        to bottom,
        rgba(32, 188, 237, 0) 0%,
        rgba(32, 188, 237, 0.65) 50%,
        rgba(32, 188, 237, 0) 100%
    );
    box-shadow: 0 0 12px rgba(32, 188, 237, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
}

.brand-suffix {
    margin-top: 0.35rem;
    font-size: clamp(0.95rem, 1.8vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #fff;
    opacity: 0.9;
}

/* TAGLINE */
.hero-tagline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: clamp(2.1rem, 5vw, 3.9rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.tagline-line {
    display: block;
}

.highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CARD */
.maintenance-card {
    margin-top: 0.5rem;
    width: min(92vw, 620px);
    padding: 2rem 2.2rem;
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(32, 188, 237, 0.15);
    border-radius: 22px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.55);
}

.badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(32, 188, 237, 0.28);
    border-radius: 999px;
    color: var(--primary-cyan);
    background: rgba(32, 188, 237, 0.06);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.maintenance-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 300;
    line-height: 1.05;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.status {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-cyan);
    box-shadow: 0 0 14px rgba(32, 188, 237, 0.75);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding: 6vh 5vw;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-brand {
        gap: 1rem;
    }

    .brand-icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .brand-divider {
        height: 54px;
    }

    .brand-text {
        align-items: flex-start;
    }

    .brand-name {
        font-size: 2.3rem;
    }

    .brand-suffix {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
    }

    .hero-tagline {
        align-items: center;
        text-align: center;
        font-size: clamp(1.7rem, 7vw, 2.6rem);
    }

    .maintenance-card {
        padding: 1.5rem 1.2rem;
    }
}