/* Splash screen — welcome page (GSAP animated) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #000;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 9999;
}

/* Ambient glow behind content */
.splash-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, rgba(255,107,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    opacity: 0;
}

.splash-center {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Icon */
.splash-icon {
    display: inline-block;
    margin-bottom: 24px;
    opacity: 0;
}

.splash-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 20px rgba(255,107,0,0.3));
}

.splash-icon-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

/* Logo */
.splash-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(36px, 8vw, 56px);
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
}

.splash-logo-accent {
    color: #FF6B00;
}

/* Decorative line */
.splash-line {
    width: 0;
    height: 2px;
    margin: 16px auto 18px;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
    border-radius: 1px;
}

/* Tagline */
.splash-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 3.5vw, 17px);
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
}

/* Floating particles */
.splash-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.splash-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,107,0,0.25);
    opacity: 0;
}

/* Bottom indicator */
.splash-indicator {
    position: absolute;
    bottom: max(12px, env(safe-area-inset-bottom, 8px));
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
}

@media (min-width: 768px) {
    .splash {
        max-width: 1024px;
        left: 50%;
        transform: translateX(-50%);
    }
}
