/* =====================
   Design System & Variables
   ===================== */
:root {
    /* Soft Gradient Background Colors */
    --color-bg-gradient-1: hsl(165, 25%, 85%);
    --color-bg-gradient-2: hsl(45, 30%, 88%);
    --color-bg-gradient-3: hsl(50, 35%, 90%);
    --color-bg-gradient-4: hsl(160, 20%, 88%);

    /* Brand Colors from Logo */
    --color-primary: hsl(158, 48%, 55%);
    --color-primary-light: hsl(158, 50%, 70%);
    --color-secondary: hsl(48, 85%, 65%);
    --color-emerald: hsl(158, 55%, 45%);
    --color-emerald-dark: hsl(158, 60%, 30%);

    /* Text Colors */
    --color-text-primary: hsl(0, 0%, 25%);
    --color-text-secondary: hsl(0, 0%, 45%);

    /* UI Colors */
    --color-white: hsl(0, 0%, 100%);
    --color-divider: hsla(0, 0%, 0%, 0.08);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Shadows */
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    --shadow-orb: 0 0 120px 60px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg,
            var(--color-bg-gradient-1) 0%,
            var(--color-bg-gradient-2) 35%,
            var(--color-bg-gradient-3) 65%,
            var(--color-bg-gradient-4) 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    color: var(--color-text-primary);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* =====================
   Background Effects
   ===================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 18s infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Soft Bokeh Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: float-gentle 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 210, 190, 0.5), transparent);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 220, 190, 0.4), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 8s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 230, 210, 0.35), transparent);
    top: 40%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* =====================
   Main Container
   ===================== */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.content-wrapper {
    text-align: center;
    position: relative;
    max-width: 800px;
    width: 100%;
}

/* =====================
   Logo Card
   ===================== */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3.5rem;
    animation: card-entrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes card-entrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-card {
    background: var(--color-white);
    padding: 1.25rem 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    }

    50% {
        box-shadow: 0 20px 80px rgba(160, 210, 190, 0.15),
            0 8px 30px rgba(160, 210, 190, 0.1),
            0 0 40px rgba(160, 210, 190, 0.05);
    }
}

.logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* =====================
   Text Content
   ===================== */
.text-content {
    position: relative;
}

.coming-soon {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-light) 50%,
            var(--color-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    animation: text-fade-in 1s ease-out 0.3s forwards,
        gradientText 4s ease infinite;
    opacity: 0;
    line-height: 1.1;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: 4rem;
    animation: text-fade-in 1s ease-out 0.6s forwards;
    opacity: 0;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* =====================
   Divider
   ===================== */
.divider {
    width: 400px;
    max-width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-divider) 20%,
            var(--color-divider) 80%,
            transparent 100%);
    margin: 0 auto 3rem;
    animation: divider-expand 0.8s ease-out 0.9s forwards,
        dividerFloat 3s ease-in-out 2s infinite;
    transform: scaleX(0);
}

@keyframes dividerFloat {

    0%,
    100% {
        transform: scaleX(1) translateY(0);
    }

    50% {
        transform: scaleX(1) translateY(-5px);
    }
}

@keyframes divider-expand {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* =====================
   Status Indicator
   ===================== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: status-fade-in 1s ease-out 1.2s forwards;
    opacity: 0;
    transition: var(--transition-smooth);
}

@keyframes status-fade-in {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* =====================
   Floating Shapes (Subtle)
   ===================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

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

.shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--color-secondary), transparent);
    bottom: 20%;
    left: 12%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-emerald), transparent);
    top: 25%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes morph-subtle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.06;
    }

    50% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.08;
    }
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 768px) {
    .logo-card {
        padding: 2rem 3rem;
    }

    .logo {
        max-width: 320px;
    }

    .coming-soon {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .tagline {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .divider {
        width: 300px;
    }

    .orb {
        filter: blur(80px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: var(--spacing-sm);
    }

    .logo-card {
        padding: 1.5rem 2rem;
        border-radius: 12px;
    }

    .logo {
        max-width: 250px;
    }

    .status-indicator {
        font-size: 0.85rem;
    }

    .divider {
        width: 200px;
    }
}