:root {
    --wps-fluid-bg: #ffffff;
    --wps-fluid-gradient: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    --wps-fluid-accent: #ff4d4f;
    --wps-fluid-text: #1d1d1f;
    --wps-fluid-text-dim: #86868b;
    --wps-fluid-glass: rgba(255, 255, 255, 0.6);
    --wps-fluid-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: var(--wps-fluid-bg);
    color: var(--wps-fluid-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fluid Background Shapes */
.fluid-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.fluid-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.shape1 { width: 500px; height: 500px; background: #ff9a9e; top: -100px; right: -100px; }
.shape2 { width: 600px; height: 600px; background: #a18cd1; bottom: -200px; left: -100px; animation-delay: -5s; }
.shape3 { width: 400px; height: 400px; background: #84fab0; top: 40%; left: 20%; animation-delay: -10s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.nav-fluid {
    padding: 24px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-fluid-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-fluid-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--wps-fluid-text);
    text-decoration: none;
    background: linear-gradient(90deg, #ff4d4f, #a18cd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-fluid-links {
    display: flex;
    gap: 40px;
}

.nav-fluid-link {
    text-decoration: none;
    color: var(--wps-fluid-text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-fluid-link:hover, .nav-fluid-link.active {
    color: var(--wps-fluid-text);
}

/* Hero Section */
.hero-fluid {
    padding: 120px 0;
    text-align: center;
}

.hero-fluid h1 {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-fluid p {
    font-size: 22px;
    color: var(--wps-fluid-text-dim);
    max-width: 800px;
    margin: 0 auto 48px;
}

/* Glass Buttons */
.btn-fluid {
    display: inline-block;
    padding: 16px 40px;
    background: var(--wps-fluid-text);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-fluid:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Iridescent Cards */
.grid-fluid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 80px 0;
}

.card-fluid {
    background: var(--wps-fluid-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--wps-fluid-border);
    padding: 48px;
    border-radius: 40px;
    transition: 0.5s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.card-fluid:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.card-fluid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    pointer-events: none;
}

.card-fluid h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.card-fluid p {
    color: var(--wps-fluid-text-dim);
    font-size: 16px;
}

/* Footer */
.footer-fluid {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-fluid p {
    font-size: 14px;
    color: var(--wps-fluid-text-dim);
}
