﻿/* ============================================
   BIZGO COMING SOON PAGE
   Agendrix-Inspired Design System
   100% Custom Classes (cs- prefix)
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
    /* Primary Colors - Teal */
    --cs-primary: rgb(15, 105, 115);
    --cs-primary-hover: rgb(12, 84, 92);
    --cs-primary-light: rgba(15, 105, 115, 0.1);
    --cs-primary-glow: rgba(15, 105, 115, 0.3);
    /* Secondary Colors */
    --cs-secondary: rgb(245, 160, 140);
    --cs-accent: rgb(99, 102, 241);
    --cs-success: rgb(22, 163, 74);
    /* Neutral Colors */
    --cs-white: rgb(255, 255, 255);
    --cs-gray-50: rgb(249, 250, 251);
    --cs-gray-100: rgb(243, 244, 246);
    --cs-gray-200: rgb(229, 231, 235);
    --cs-gray-300: rgb(209, 213, 219);
    --cs-gray-400: rgb(156, 163, 175);
    --cs-gray-500: rgb(107, 114, 128);
    --cs-gray-600: rgb(75, 85, 99);
    --cs-gray-700: rgb(55, 65, 81);
    --cs-gray-800: rgb(31, 41, 55);
    --cs-gray-900: rgb(17, 24, 39);
    /* Spacing */
    --cs-space-xs: 0.5rem;
    --cs-space-sm: 1rem;
    --cs-space-md: 1.5rem;
    --cs-space-lg: 2rem;
    --cs-space-xl: 3rem;
    --cs-space-2xl: 4rem;
    --cs-space-3xl: 6rem;
    /* Border Radius */
    --cs-radius-sm: 0.5rem;
    --cs-radius-md: 0.75rem;
    --cs-radius-lg: 1rem;
    --cs-radius-xl: 1.5rem;
    --cs-radius-full: 9999px;
    /* Shadows */
    --cs-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --cs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --cs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --cs-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --cs-shadow-glow: 0 0 40px rgba(15, 105, 115, 0.2);
    /* Transitions */
    --cs-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --cs-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --cs-transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Typography */
    --cs-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ====== BASE RESET ====== */
.cs-body {
    margin: 0;
    padding: 0;
    font-family: var(--cs-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, var(--cs-gray-50) 0%, var(--cs-white) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

    .cs-body * {
        box-sizing: border-box;
    }

/* ====== MAIN WRAPPER ====== */
.cs-coming-soon-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--cs-space-lg);
    overflow: hidden;
}

/* ====== ANIMATED BACKGROUND ====== */
.cs-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.cs-bg-circle {
    position: absolute;
    border-radius: var(--cs-radius-full);
    opacity: 0.5;
    animation: cs-float 20s ease-in-out infinite;
}

.cs-bg-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cs-primary-glow), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.cs-bg-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 160, 140, 0.2), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.cs-bg-circle-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes cs-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.cs-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--cs-gray-200) 1px, transparent 1px), linear-gradient(90deg, var(--cs-gray-200) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

/* ====== CONTENT CONTAINER ====== */
.cs-content-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: cs-fadeInUp 0.8s ease-out;
}

@keyframes cs-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== LOGO SECTION ====== */
.cs-logo-section {
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.1s backwards;
}

.cs-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--cs-space-md);
}

.cs-logo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-primary-hover));
    border-radius: var(--cs-radius-xl);
    box-shadow: var(--cs-shadow-glow);
    position: relative;
    animation: cs-pulse 3s ease-in-out infinite;
}

@keyframes cs-pulse {
    0%, 100% {
        box-shadow: var(--cs-shadow-glow);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 60px rgba(15, 105, 115, 0.4);
        transform: scale(1.05);
    }
}

.cs-logo-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--cs-primary-light), transparent);
    border-radius: var(--cs-radius-xl);
    z-index: -1;
    animation: cs-rotate 10s linear infinite;
}

@keyframes cs-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cs-logo-icon i {
    font-size: 2.5rem;
    color: var(--cs-white);
}

.cs-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cs-gray-900);
    margin: 0;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== HEADING SECTION ====== */
.cs-heading-section {
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.2s backwards;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--cs-space-xs);
    padding: 0.5rem 1rem;
    background: var(--cs-primary-light);
    border: 1px solid rgba(15, 105, 115, 0.2);
    border-radius: var(--cs-radius-full);
    color: var(--cs-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--cs-space-md);
    animation: cs-shimmer 2s ease-in-out infinite;
}

@keyframes cs-shimmer {
    0%, 100% {
        background: var(--cs-primary-light);
    }

    50% {
        background: rgba(15, 105, 115, 0.15);
    }
}

.cs-badge i {
    font-size: 1rem;
    animation: cs-twinkle 1.5s ease-in-out infinite;
}

@keyframes cs-twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.cs-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cs-gray-900);
    margin: 0 0 var(--cs-space-md) 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cs-highlight {
    position: relative;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .cs-highlight::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent));
        border-radius: var(--cs-radius-full);
        animation: cs-underlineExpand 1s ease-out 0.5s backwards;
    }

@keyframes cs-underlineExpand {
    from {
        width: 0;
        left: 50%;
    }

    to {
        width: 100%;
        left: 0;
    }
}

.cs-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--cs-gray-600);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== FEATURES GRID ====== */
.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--cs-space-md);
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.3s backwards;
}

.cs-feature-card {
    background: var(--cs-white);
    padding: var(--cs-space-lg);
    border-radius: var(--cs-radius-lg);
    box-shadow: var(--cs-shadow-md);
    border: 1px solid var(--cs-gray-200);
    transition: all var(--cs-transition-base);
    position: relative;
    overflow: hidden;
}

    .cs-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent));
        transform: scaleX(0);
        transition: transform var(--cs-transition-base);
    }

    .cs-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--cs-shadow-xl);
    }

        .cs-feature-card:hover::before {
            transform: scaleX(1);
        }

.cs-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cs-radius-md);
    margin: 0 auto var(--cs-space-md);
    transition: transform var(--cs-transition-base);
}

.cs-feature-card:hover .cs-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.cs-icon-primary {
    background: linear-gradient(135deg, rgba(15, 105, 115, 0.15), rgba(15, 105, 115, 0.05));
}

    .cs-icon-primary i {
        color: var(--cs-primary);
        font-size: 1.75rem;
    }

.cs-icon-success {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(22, 163, 74, 0.05));
}

    .cs-icon-success i {
        color: var(--cs-success);
        font-size: 1.75rem;
    }

.cs-icon-accent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
}

    .cs-icon-accent i {
        color: var(--cs-accent);
        font-size: 1.75rem;
    }

.cs-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cs-gray-900);
    margin: 0 0 var(--cs-space-xs) 0;
}

.cs-feature-text {
    font-size: 0.875rem;
    color: var(--cs-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ====== CTA SECTION ====== */
.cs-cta-section {
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.4s backwards;
}

.cs-primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-primary-hover));
    color: var(--cs-white);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--cs-radius-lg);
    box-shadow: var(--cs-shadow-lg);
    overflow: hidden;
    transition: all var(--cs-transition-base);
    border: none;
    cursor: pointer;
}

    .cs-primary-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--cs-primary-hover), var(--cs-primary));
        opacity: 0;
        transition: opacity var(--cs-transition-base);
    }

    .cs-primary-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(15, 105, 115, 0.3);
    }

        .cs-primary-button:hover::before {
            opacity: 1;
        }

    .cs-primary-button:active {
        transform: translateY(-1px);
    }

.cs-button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--cs-space-xs);
}

    .cs-button-content i {
        font-size: 1.25rem;
        transition: transform var(--cs-transition-base);
    }

.cs-primary-button:hover .cs-button-content i {
    transform: translateX(5px);
}

.cs-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: cs-shine 3s ease-in-out infinite;
}

@keyframes cs-shine {
    0%, 100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.cs-cta-subtitle {
    margin-top: var(--cs-space-md);
    font-size: 0.875rem;
    color: var(--cs-gray-500);
}

/* ====== PROGRESS SECTION ====== */
.cs-progress-section {
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.5s backwards;
}

.cs-progress-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--cs-space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cs-gray-700);
    margin-bottom: var(--cs-space-sm);
}

    .cs-progress-label i {
        color: var(--cs-primary);
    }

.cs-progress-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 12px;
    background: var(--cs-gray-200);
    border-radius: var(--cs-radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.cs-progress-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent));
    border-radius: var(--cs-radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--cs-space-sm);
    transition: width 1s ease-out;
    animation: cs-progressGlow 2s ease-in-out infinite;
}

@keyframes cs-progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(15, 105, 115, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(15, 105, 115, 0.8);
    }
}

.cs-progress-percentage {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--cs-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ====== SOCIAL SECTION ====== */
.cs-social-section {
    margin-bottom: var(--cs-space-xl);
    animation: cs-fadeInUp 0.8s ease-out 0.6s backwards;
}

.cs-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cs-gray-700);
    margin: 0 0 var(--cs-space-md) 0;
}

.cs-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--cs-space-md);
}

.cs-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cs-white);
    border: 1px solid var(--cs-gray-200);
    border-radius: var(--cs-radius-md);
    color: var(--cs-gray-600);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--cs-transition-base);
    box-shadow: var(--cs-shadow-sm);
}

    .cs-social-link:hover {
        background: var(--cs-primary);
        border-color: var(--cs-primary);
        color: var(--cs-white);
        transform: translateY(-5px) scale(1.1);
        box-shadow: var(--cs-shadow-md);
    }

/* ====== FOOTER ====== */
.cs-footer {
    animation: cs-fadeInUp 0.8s ease-out 0.7s backwards;
}

.cs-footer-text {
    font-size: 0.875rem;
    color: var(--cs-gray-500);
    margin: 0;
}

/* ====== FLOATING ELEMENTS ====== */
.cs-float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cs-white);
    border-radius: var(--cs-radius-md);
    box-shadow: var(--cs-shadow-lg);
    color: var(--cs-primary);
    font-size: 1.5rem;
    z-index: 5;
    opacity: 0.7;
}

.cs-float-1 {
    top: 15%;
    left: 10%;
    animation: cs-floatBounce 4s ease-in-out infinite;
}

.cs-float-2 {
    top: 60%;
    right: 8%;
    animation: cs-floatBounce 5s ease-in-out infinite 1s;
}

.cs-float-3 {
    bottom: 20%;
    left: 15%;
    animation: cs-floatBounce 6s ease-in-out infinite 2s;
}

@keyframes cs-floatBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .cs-float-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .cs-coming-soon-wrapper {
        padding: var(--cs-space-md);
    }

    .cs-logo-icon {
        width: 60px;
        height: 60px;
    }

        .cs-logo-icon i {
            font-size: 2rem;
        }

    .cs-brand-name {
        font-size: 2rem;
    }

    .cs-main-title {
        font-size: 2.5rem;
    }

    .cs-subtitle {
        font-size: 1rem;
    }

    .cs-features-grid {
        grid-template-columns: 1fr;
        gap: var(--cs-space-sm);
    }

    .cs-feature-card {
        padding: var(--cs-space-md);
    }

    .cs-primary-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .cs-bg-circle-1,
    .cs-bg-circle-2,
    .cs-bg-circle-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .cs-coming-soon-wrapper {
        padding: var(--cs-space-sm);
    }

    .cs-logo-icon {
        width: 50px;
        height: 50px;
    }

        .cs-logo-icon i {
            font-size: 1.5rem;
        }

    .cs-brand-name {
        font-size: 1.5rem;
    }

    .cs-main-title {
        font-size: 2rem;
    }

    .cs-subtitle {
        font-size: 0.9375rem;
    }

    .cs-feature-icon {
        width: 50px;
        height: 50px;
    }

    .cs-icon-primary i,
    .cs-icon-success i,
    .cs-icon-accent i {
        font-size: 1.5rem;
    }

    .cs-primary-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .cs-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ====== ACCESSIBILITY ====== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.cs-primary-button:focus-visible,
.cs-social-link:focus-visible {
    outline: 3px solid var(--cs-primary);
    outline-offset: 3px;
}

/* ====== PRINT STYLES ====== */
@media print {
    .cs-bg-decoration,
    .cs-float-element,
    .cs-social-section {
        display: none !important;
    }

    .cs-coming-soon-wrapper {
        background: white;
    }
}
