/* ==========================================
   Modern Under Construction Page Design System
   ========================================== */

:root {
    --bg-main: #f2f6f1;
    --bg-card: rgba(255, 255, 255, 0.9);
    --border-card: rgba(75, 112, 67, 0.15);
    --border-hover: rgba(75, 112, 67, 0.35);
    
    --navy: #0c2340;
    --navy-light: #1e3a5f;
    --sage: #4b7043;
    --sage-light: #6a9960;
    --sage-glow: rgba(75, 112, 67, 0.1);
    
    --primary: var(--sage);
    --primary-glow: var(--sage-glow);
    --secondary: #1a365d;
    --accent: #4b7043;
    
    --text-primary: #0c2340;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

/* Background Canvas & Ambient Orbs */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: #a3b8cc;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--sage-light);
    bottom: -150px;
    right: -100px;
    animation-delay: -6s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #cbd5e1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -12s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-40px, 70px) scale(0.9); }
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 900px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: space-between;
    z-index: 1;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo-hero-container {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(12, 35, 64, 0.1), 0 0 15px rgba(75, 112, 67, 0.05);
    border: 1px solid rgba(75, 112, 67, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-logo:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(12, 35, 64, 0.15), 0 0 20px rgba(75, 112, 67, 0.15);
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
    border-radius: var(--radius-sm);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy-light), var(--sage));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px var(--sage-glow);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--sage-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--sage-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Main Content */
.main-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sage-light);
    background: rgba(75, 112, 67, 0.15);
    border: 1px solid rgba(75, 112, 67, 0.3);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--navy), var(--sage), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 1.5rem;
}

/* Countdown */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 580px;
    margin-bottom: 3rem;
}

.countdown-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.countdown-val {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(12, 35, 64, 0.04);
}

/* Notification Box */
.notify-box {
    width: 100%;
    max-width: 580px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notify-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.notify-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.notify-form {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(12, 35, 64, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(75, 112, 67, 0.15);
}

.input-icon {
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 0.75rem;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    background: linear-gradient(135deg, var(--sage), var(--navy-light));
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    display: none;
}

.form-message.success {
    display: block;
    color: #4ade80;
}

.form-message.error {
    display: block;
    color: #f87171;
}

/* Sneak Peek Grid */
.sneak-peek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin-bottom: 1rem;
}

.peek-card {
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.peek-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.peek-icon {
    width: 36px;
    height: 36px;
    background: rgba(75, 112, 67, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.peek-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.peek-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .sneak-peek-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-val {
        font-size: 1.75rem;
    }
    
    .notify-box {
        padding: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }
    
    .input-group input {
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid var(--border-card);
        padding: 0.85rem 1rem 0.85rem 2.5rem;
        border-radius: var(--radius-full);
    }
    
    .input-icon {
        position: absolute;
        left: 1rem;
        top: 1.1rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 0.85rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
