:root {
    --primary: #9333ea; /* Vibrant Purple */
    --primary-light: #a855f7;
    --secondary: #c084fc;
    --bg-main: #ffffff;
    --bg-subtle: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(147, 51, 234, 0.1);
    --accent-gradient: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Blobs (Light Version) */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.15;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: move 25s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #e879f9;
    top: 30%;
    left: 20%;
    animation-delay: -12s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(150px, 150px) scale(1.2); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#site-logo {
    height: 80px;
    width: 80px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.15);
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

#site-logo:hover {
    transform: scale(1.05);
}

.cta-button {
    background: var(--accent-gradient);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.3);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 10rem 0 3rem;
    text-align: center;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.effective-date {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
}

.hero-line {
    width: 100px;
    height: 6px;
    background: var(--accent-gradient);
    margin: 2.5rem auto 0;
    border-radius: 3px;
}

/* Content Card */
.policy-content {
    padding-bottom: 10rem;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px -20px rgba(147, 51, 234, 0.1);
}

.intro-text {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary);
    padding-left: 2rem;
    font-weight: 500;
}

.policy-section {
    margin-top: 5rem;
    scroll-margin-top: 140px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    border-bottom: 2px solid #f3e8ff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

ul {
    list-style: none;
    margin-bottom: 2rem;
}

ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 0.2rem;
}

.highlight-note {
    background: #fdf4ff;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #d946ef;
    color: #701a75;
    font-weight: 500;
}

.contact-box {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    margin-top: 6rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.15rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.contact-details a:hover {
    border-bottom-color: var(--primary);
}

/* Footer */
footer {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-weight: 500;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .content-card {
        padding: 2.5rem;
    }
    
    .hero {
        padding: 10rem 0 4rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}
