:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #8a8a8f;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Disables page and section scrolling completely */
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ambient Glow Tracker Background */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
    top: -300px;
    right: -300px;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
}

/* Global Typography Helpers */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Navigation Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(249, 115, 22, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Maintenance Central Container */
.maintenance-container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 1;
    margin-top: 60px;
}

.content-wrapper {
    max-width: 650px;
}

.tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.reveal-text {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.content-wrapper p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Action Communication Links */
.contact-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.35);
}

.btn-action.secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-action.secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer Bottom Strip Styling */
.footer-stripe {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    z-index: 10;
    background: linear-gradient(to top, #050505 40%, transparent);
}

.footer-stripe span::after {
    content: '•';
    margin-left: 40px;
    color: #f97316;
}
.footer-stripe span:last-child::after {
    content: '';
}

/* Responsive Scaling optimization */
@media (max-width: 768px) {
    header { padding: 35px 5%; }
    .maintenance-container { padding: 0 5%; }
    .reveal-text { font-size: 3.8rem; }
    .content-wrapper p { font-size: 1.05rem; }
    .contact-actions { flex-direction: column; gap: 12px; }
    .btn-action { width: 100%; justify-content: center; }
    .footer-stripe { gap: 20px; font-size: 0.7rem; }
    .footer-stripe span::after { margin-left: 20px; }
}