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

:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --primary-light: #818CF8;
    --accent: #F59E0B;
    --dark: #0F172A;
    --dark-surface: #1E293B;
    --gray: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;
    
    /* Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    /* Animation Speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* --- Animated Background Blobs --- */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(79, 70, 229, 0.4); /* Primary */
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(245, 158, 11, 0.3); /* Accent */
    animation-duration: 25s;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: rgba(129, 140, 248, 0.2);
    animation-duration: 18s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
    100% { transform: translate(-20px, 40px) scale(0.9); }
}

/* --- Container & Glassmorphism --- */
.coming-soon-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 3.5rem;
    border-radius: 1.5rem;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* --- Typography --- */
.logo { margin-bottom: 1.5rem; }

.logo img {
    width: 90px;
    height: 90px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--white), var(--gray));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* --- Service Cards --- */
.merchant-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.type-card {
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
    transition: var(--transition-smooth);
    cursor: default;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.type-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.type-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

.type-card:hover .type-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.type-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.type-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

/* --- Highlight Box --- */
.coming-soon-message {
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    display: inline-block;
    max-width: 600px;
}

.glass-highlight {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.coming-soon-message h2 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coming-soon-message p {
    color: var(--gray);
}

/* --- CTA Buttons --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.8);
}

/* --- Entrance Animations --- */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2.5rem 1.5rem;
    }
    h1 { font-size: 2.25rem; }
    .merchant-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .merchant-types { grid-template-columns: 1fr; }
}
