:root {
    /* Vivid, high-fashion dress boutique palette representing vibrant fabrics */
    --color-bg1: #ff2e93; /* vibrant fuchsia */
    --color-bg2: #ff8000; /* bright orange/gold */
    --color-bg3: #00d2ff; /* vivid cyan/teal */
    --color-bg4: #7b2cbf; /* rich violet */
    
    --text-main: #1a0b1f;
    --text-muted: #4a3b52;
    --accent: #ff2e93;
}

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

body {
    background-color: #fdfaf6; /* warm pearl fallback */
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow: hidden; 
    height: 100vh;
    width: 100vw;
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-bg1), var(--color-bg2));
    margin-bottom: 2.5rem;
    border-radius: 3px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: multiply;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 46, 147, 0.4); 
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .cursor-follower {
        display: none;
    }
}

/* Dynamic Gradient Background Layer */
.gradient-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--color-bg1), var(--color-bg2), var(--color-bg3), var(--color-bg4));
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    filter: blur(120px) saturate(1.2); 
    opacity: 0.65;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 3D Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Main Layout */
.wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 4rem 10%;
}

.glass-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 5rem 4rem;
    max-width: 650px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255,255,255,0.9);
    opacity: 0;
    transform: translateY(40px);
}

.content {
    margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .wrapper { padding: 4rem 5%; }
}

@media (max-width: 768px) {
    .wrapper {
        justify-content: center;
        padding: 2rem;
    }
    .glass-container {
        padding: 3.5rem 2.5rem;
        text-align: center;
    }
    .divider {
        margin: 0 auto 2.5rem auto; 
    }
}

@media (max-width: 480px) {
    .glass-container { 
        padding: 2.5rem 1.5rem; 
        border-radius: 24px;
    }
}
