/* CSS Custom Properties for Brand Colors */
:root {
    /* Black and White */
    --color-black: #0A0A0F;
    --color-white: #FFFFFF;
    
    /* Neutral Colors */
    --neutral-100: #110F1D;
    --neutral-200: #1B172B;
    --neutral-300: #252235;
    --neutral-400: #2E2C43;
    --neutral-500: #373554;
    --neutral-600: #484573;
    --neutral-700: #646090;
    --neutral-800: #918EB3;
    --neutral-900: #E5E3CD;
    
    /* Primary Colors */
    --primary-100: #711280;
    --primary-200: #9F19B4;
    --primary-300: #BF1BDE;
    --primary-400: #C135E5;
    --primary-500: #D54FEF;
    --primary-600: #D475E9;
    --primary-700: #E89FF3;
    --primary-800: #E9ACF5;
    --primary-900: #F3C8F8;
    
    /* Blue Colors */
    --blue-100: #2E1280;
    --blue-200: #4519B4;
    --blue-500: #7E48F8;
    --blue-600: #9264FF;
    --blue-800: #B2A2FF;
    
    /* Orange Colors */
    --orange-500: #FF8F4D;
    --orange-600: #FFB064;
    
    /* Grey Colors */
    --grey-1: #F8F8F7;
    --grey-2: #DFDDEF;
    --grey-3: #CCCADD;
    --grey-4: #8785C5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-white);
    background: var(--neutral-100);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container and Layout */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--neutral-100) 0%,
        var(--neutral-200) 25%,
        var(--primary-100) 50%,
        var(--blue-100) 75%,
        var(--neutral-200) 100%
    );
    z-index: -2;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-500);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--blue-500);
    top: 60%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--orange-500);
    bottom: 20%;
    left: 20%;
    animation-duration: 35s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--primary-700);
    top: 30%;
    right: 30%;
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Main Content */
.content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(213, 79, 239, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-500), var(--blue-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slogan {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--neutral-800);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Coming Soon Badge */
.coming-soon-badge {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 10px 30px rgba(213, 79, 239, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.badge-text:hover::before {
    left: 100%;
}

.badge-text:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(213, 79, 239, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Features Preview */
.features-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-500), var(--blue-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(213, 79, 239, 0.2);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    box-shadow: 0 15px 35px rgba(213, 79, 239, 0.3);
    transform: scale(1.1);
}

.feature span {
    font-weight: 500;
    color: var(--neutral-800);
    font-size: 1rem;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.footer p {
    color: var(--neutral-700);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .features-preview {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .feature {
        min-width: 120px;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .shape-4 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .features-preview {
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .badge-text {
        padding: 0.8rem 2rem;
        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;
    }
    
    .shape {
        animation: none;
    }
}

/* Focus styles for accessibility */
.logo:focus,
.badge-text:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
}