/* 
   Metallix Innovations - Standalone Coming Soon Stylesheet
   Theme: Carbon Dark Metallic & Radiant Orange Accent
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0E1012;
    --card-bg: rgba(21, 24, 28, 0.78);
    --brand-orange: #F4510B;
    --brand-orange-dark: #C83D00;
    --brand-ink-950: #0E1012;
    --text-white: #ffffff;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --border-glass: rgba(255, 255, 255, 0.12);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
}

/* Background Particle VFX Canvas */
#vfx-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Radial Light Glows */
.ambient-glow-1 {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(244, 81, 11, 0.18) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

.ambient-glow-2 {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(200, 61, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
    pointer-events: none;
    animation: pulseGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
    100% { transform: scale(1.15) translate(30px, 30px); opacity: 1; }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1020px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Top Badge Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 81, 11, 0.15);
    border: 1px solid rgba(244, 81, 11, 0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: var(--brand-orange);
    font-size: 0.75rem;
    font-family: 'Manrope', monospace;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(244, 81, 11, 0.2);
    animation: floatBounce 3s ease-in-out infinite alternate;
}

.ping-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-orange);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes floatBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* Glassmorphism Card Container */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .glass-card { padding: 3.5rem 3rem; }
}

/* Glowing Border Highlight */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(244, 81, 11, 0.7), rgba(255, 255, 255, 0.1), rgba(200, 61, 0, 0.7));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Company Logo Card & Aura */
.logo-box {
    background: rgba(255, 255, 255, 0.96);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: auraPulse 3.5s ease-in-out infinite alternate;
}

.logo-box img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo-box img { height: 75px; }
}

@keyframes auraPulse {
    0% { filter: drop-shadow(0 0 15px rgba(244, 81, 11, 0.3)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 35px rgba(244, 81, 11, 0.75)); transform: scale(1.02); }
}

/* Title & Shimmer Animation */
.main-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) { .main-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .main-title { font-size: 3.5rem; } }

.shimmer-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #F4510B 50%, #FFFFFF 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.description {
    color: var(--text-gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 44rem;
    margin: 0.75rem auto 0;
}

/* Countdown Grid */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 36rem;
    margin: 0 auto;
}

.timer-card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 1rem 0.5rem;
    text-align: center;
}

.timer-num {
    font-family: 'Manrope', monospace;
    font-size: 1.75rem;
    font-weight: 800;
    display: block;
    color: #ffffff;
}

.timer-num.highlight {
    color: var(--brand-orange);
}

@media (min-width: 640px) {
    .timer-num { font-size: 2.5rem; }
}

.timer-label {
    font-family: 'Manrope', monospace;
    font-size: 0.65rem;
    color: var(--text-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Business Showcase Carousel */
.carousel-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 260px;
}

@media (min-width: 640px) { .carousel-slide { height: 350px; } }

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    text-align: left;
}

.caption-tag {
    display: inline-block;
    background: var(--brand-orange);
    color: #ffffff;
    font-size: 0.65rem;
    font-family: 'Manrope', monospace;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 0.35rem;
    text-transform: uppercase;
}

.caption-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.35rem;
}

.caption-sub {
    font-size: 0.8rem;
    color: var(--text-gray-300);
}

/* Carousel Nav Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* Call Actions */
.actions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .actions-grid { flex-direction: row; }
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;
    padding: 0 1.75rem;
    border-radius: 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 640px) { .btn-action { width: auto; } }

.btn-action.primary {
    background: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(244, 81, 11, 0.4);
}

.btn-action.primary:hover {
    background: var(--brand-orange-dark);
    transform: translateY(-2px);
}

.btn-action.whatsapp {
    background: #128C4A;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(18, 140, 74, 0.4);
}

.btn-action.whatsapp:hover {
    background: #0e703b;
    transform: translateY(-2px);
}

/* Footer Credentials */
.footer-info {
    text-align: center;
    font-size: 0.75rem;
    font-family: 'Manrope', monospace;
    color: var(--text-gray-400);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.copyright {
    font-size: 0.65rem;
    color: #6b7280;
    margin-top: 0.25rem;
}
