/* ==========================================
   BudgetShopOnline — Coming Soon Design System
   ========================================== */

:root {
    --bg-dark: #090d16;
    --card-bg: rgba(15, 23, 42, 0.75);
    --card-border: rgba(255, 255, 255, 0.12);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #f59e0b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Outfit', sans-serif;
}

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

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Canvas & Glowing Orbs */
.ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.glow-orb-1 {
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: #6366f1;
}

.glow-orb-2 {
    bottom: -15%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: #a855f7;
    animation-delay: -6s;
}

.glow-orb-3 {
    top: 40%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: #f59e0b;
    opacity: 0.2;
    animation-delay: -12s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Page Layout Wrapper */
.page-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Header Section */
.site-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #a5b4fc;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.brand-logo {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1;
}

.brand-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-domain {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: monospace;
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

/* Main Hero Section */
.hero-container {
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 0.75rem;
}

.hero-headline {
    font-family: var(--font-accent);
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

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

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
}

/* Countdown Card */
.countdown-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.75rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.countdown-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

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

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.unit-box {
    width: clamp(65px, 14vw, 100px);
    height: clamp(65px, 14vw, 100px);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.unit-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.timer-colon {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-indigo);
    margin-bottom: 1.25rem;
}

/* Subscription Box */
.subscription-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.75rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
    text-align: left;
}

.sub-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sub-icon {
    font-size: 1.75rem;
    padding: 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 1rem;
}

.sub-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.sub-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

.subscribe-form .input-group {
    display: flex;
    gap: 0.75rem;
}

.email-input {
    flex: 1;
    height: 52px;
    padding: 0 1.25rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.email-input:focus {
    border-color: var(--accent-indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.submit-btn {
    height: 52px;
    padding: 0 1.75rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 9999px;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.5);
}

.btn-arrow {
    width: 18px;
    height: 18px;
}

.form-feedback {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
}

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

.vip-badge-state {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.25rem;
    margin-top: 1rem;
    color: #34d399;
    font-size: 0.9rem;
}

.vip-badge-state.hidden {
    display: none;
}

.verified-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-emerald);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    shrink: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

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

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);

}

/* Footer Section */
.site-footer {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.action-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-chip {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.whatsapp-chip:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.share-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.share-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.chip-icon {
    width: 18px;
    height: 18px;
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.copyright-text strong {
    color: #ffffff;
}

.copyright-text span {
    font-family: monospace;
    opacity: 0.7;
}

/* Responsive Media Queries */
@media (max-width: 640px) {
    .subscribe-form .input-group {
        flex-direction: column;
    }
    .email-input, .submit-btn {
        width: 100%;
        justify-content: center;
    }
    .mobile-hide {
        display: none;
    }
    .timer-colon {
        font-size: 1.4rem;
    }
}
