/* ==========================================================================
   DEVINAV - EN CONSTRUCCIÓN (AREQUIPA, PERÚ) - MINIMALIST DARK GLASS
   ========================================================================== */

:root {
    --bg-primary: #06090e;
    --bg-secondary: #0b111e;
    --bg-glass: rgba(13, 19, 33, 0.7);
    --bg-input: rgba(8, 12, 22, 0.85);

    --primary: #06b6d4;
    --primary-light: #38bdf8;
    --primary-glow: rgba(6, 182, 212, 0.35);

    --accent-indigo: #6366f1;
    --accent-emerald: #10b981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.4);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(6, 182, 212, 0.35);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
    height: 100%;
}

body.dark-theme {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.cyber-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
    top: 5%;
    left: 15%;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
    bottom: 5%;
    right: 15%;
    animation-delay: -6s;
}

.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0) 70%);
    top: 45%;
    left: 45%;
    opacity: 0.2;
    animation-delay: -3s;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(35px) scale(1.08); }
    100% { transform: translateY(-25px) scale(0.95); }
}

/* Main Layout */
.site-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.2rem;
}

.minimal-under-construction {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-center-container {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Brand Header */
.brand-center-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.brand-logo-mark {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #090d16 0%, #1a2333 100%);
    border: 1.5px solid rgba(6, 182, 212, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 22px rgba(6, 182, 212, 0.35);
}

.logo-letter {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-emerald);
}

.brand-info {
    text-align: left;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #ffffff;
}

.brand-country-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Status Badge */
.status-badge-wrap {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: 50%;
    animation: ringPing 1.8s infinite;
}

@keyframes ringPing {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(3); opacity: 0; }
}

/* Glass Message Card */
.message-card {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(6, 182, 212, 0.08);
    position: relative;
}

.main-heading {
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.main-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Countdown */
.countdown-container {
    background: rgba(7, 10, 18, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.6rem 2rem;
    margin: 0 auto 2rem;
    max-width: 520px;
}

.countdown-label {
    font-size: 0.88rem;
    color: #e2e8f0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-digit {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-unit {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
}

.time-colon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-top: -8px;
}

/* Launch Note Pill */
.launch-note {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.launch-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.5px;
}

/* Minimal Footer */
.minimal-footer {
    margin-top: 2.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.minimal-footer strong {
    color: var(--text-muted);
}

.text-cyan { color: var(--primary-light); }

/* Responsive */
@media (max-width: 768px) {
    .site-wrapper {
        padding: 1.5rem 1rem;
    }

    .message-card {
        padding: 2.2rem 1.4rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .main-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .countdown-container {
        padding: 1.2rem 1rem;
    }

    .time-digit {
        font-size: 2rem;
    }

    .time-card {
        min-width: 50px;
    }

    .time-colon {
        font-size: 1.5rem;
    }

    .launch-date-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
