:root {
    --lavender: #F5F3FF;
    --lavender-mid: #E4D9FF;
    --violet-light: #C4B5FD;
    --violet: #A78BFA;
    --purple: #7C3AED;
    --purple-deep: #6D28D9;
    --indigo: #4C1D95;
    --plum: #2E1065;
    --plum-dark: #1A1025;
}

.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -20;
    overflow: hidden;
    background: #F5F3FF;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(167,139,250,0.45) 0%, rgba(167,139,250,0) 70%);
    animation: orbFloat1 22s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    top: 30%;
    right: -10%;
    background: radial-gradient(circle, rgba(109,40,217,0.35) 0%, rgba(109,40,217,0) 70%);
    animation: orbFloat2 26s ease-in-out infinite;
}

.orb-3 {
    width: 450px;
    height: 450px;
    bottom: -5%;
    left: 20%;
    background: radial-gradient(circle, rgba(76,29,149,0.3) 0%, rgba(76,29,149,0) 70%);
    animation: orbFloat3 19s ease-in-out infinite;
}

.orb-4 {
    width: 380px;
    height: 380px;
    bottom: 20%;
    right: 15%;
    background: radial-gradient(circle, rgba(196,181,253,0.4) 0%, rgba(196,181,253,0) 70%);
    animation: orbFloat1 24s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, 80px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(90px, -70px) scale(1.05); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1A1025;
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

h1, h2, h3 {
    font-family: 'Archivo Black', sans-serif;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 60px;
    background: linear-gradient(90deg, rgba(228,217,255,0.75) 0%, rgba(196,181,253,0.65) 100%);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #1A1025;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a.active {
    border-bottom: 2px solid #7C3AED;
}

.btn-nav {
    background: linear-gradient(135deg, #9B6EFF 0%, #6D28D9 100%);
    color: white;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 100px;
    gap: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F3FF 0%, #E4D9FF 30%, #C9AFFF 60%, #9B6EFF 85%, #7C3AED 100%);
}

.hero-blob-3 {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76,29,149,0.25) 0%, rgba(76,29,149,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatBlob1 9s ease-in-out infinite;
}

.rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.rain span {
    position: absolute;
    top: -20px;
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: fall linear infinite;
}

.rain span:nth-child(1) { left: 4%; animation-duration: 6s; animation-delay: 0s; }
.rain span:nth-child(2) { left: 10%; animation-duration: 8s; animation-delay: 1.5s; width: 3px; height: 3px; }
.rain span:nth-child(3) { left: 16%; animation-duration: 5.5s; animation-delay: 3s; }
.rain span:nth-child(4) { left: 23%; animation-duration: 7s; animation-delay: 0.5s; width: 3px; height: 3px; }
.rain span:nth-child(5) { left: 30%; animation-duration: 6.5s; animation-delay: 2s; }
.rain span:nth-child(6) { left: 37%; animation-duration: 9s; animation-delay: 4s; width: 3px; height: 3px; }
.rain span:nth-child(7) { left: 44%; animation-duration: 5s; animation-delay: 1s; }
.rain span:nth-child(8) { left: 51%; animation-duration: 7.5s; animation-delay: 2.5s; width: 3px; height: 3px; }
.rain span:nth-child(9) { left: 58%; animation-duration: 6s; animation-delay: 3.5s; }
.rain span:nth-child(10) { left: 65%; animation-duration: 8.5s; animation-delay: 0s; width: 3px; height: 3px; }
.rain span:nth-child(11) { left: 71%; animation-duration: 5.5s; animation-delay: 1.8s; }
.rain span:nth-child(12) { left: 77%; animation-duration: 7s; animation-delay: 3.2s; width: 3px; height: 3px; }
.rain span:nth-child(13) { left: 82%; animation-duration: 6.5s; animation-delay: 0.8s; }
.rain span:nth-child(14) { left: 87%; animation-duration: 9s; animation-delay: 2.2s; width: 3px; height: 3px; }
.rain span:nth-child(15) { left: 91%; animation-duration: 5s; animation-delay: 4.5s; }
.rain span:nth-child(16) { left: 95%; animation-duration: 7.5s; animation-delay: 1.2s; width: 3px; height: 3px; }
.rain span:nth-child(17) { left: 8%; animation-duration: 6s; animation-delay: 5s; }
.rain span:nth-child(18) { left: 55%; animation-duration: 8s; animation-delay: 3.8s; width: 3px; height: 3px; }
.rain span:nth-child(19) { left: 40%; animation-duration: 5.5s; animation-delay: 2.8s; }
.rain span:nth-child(20) { left: 68%; animation-duration: 7s; animation-delay: 0.3s; width: 3px; height: 3px; }

@keyframes fall {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(700px); opacity: 0; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-blob {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(109,40,217,0.32) 0%, rgba(109,40,217,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatBlob1 10s ease-in-out infinite;
}

.hero-blob-2 {
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,16,37,0.15) 0%, rgba(26,16,37,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatBlob2 13s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-text {
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: flex;
    align-items: center;
    color: #7C3AED;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
}

.spark-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}

h1 {
    font-size: 64px;
    line-height: 0.95;
    margin-bottom: 25px;
    position: relative;
}

.underline {
    width: 200px;
    height: auto;
    display: block;
    margin-top: 5px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #9B6EFF 0%, #7C3AED 50%, #6D28D9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-outline {
    background-color: transparent;
    color: #1A1025;
    border: 2px solid #1A1025;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    width: 520px;
    height: 580px;
    flex-shrink: 0;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 90px;
    left: 20px;
    width: 340px;
    height: 430px;
    background-color: #1A1025;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-symbol {
    position: absolute;
    bottom: 80px;
    left: -35px;
    font-size: 55px;
    color: #1A1025;
    background-color: white;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.about {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
    background: linear-gradient(160deg, rgba(228,217,255,0.55) 0%, rgba(196,181,253,0.5) 50%, rgba(167,139,250,0.4) 100%);
    background-size: 200% 200%;
    overflow: hidden;
    flex-wrap: wrap;
}

.about-blob {
    position: absolute;
    top: -150px;
    left: 30%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, rgba(124,58,237,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob1 14s ease-in-out infinite;
}

.about-visual {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.about-image {
    width: 480px;
    height: 560px;
    background-color: #1A1025;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: #7C3AED;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-text {
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.section-tag {
    position: relative;
    z-index: 1;
    color: #7C3AED;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-tag.light {
    color: #C4B5FD;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text h2 em {
    background: linear-gradient(135deg, #9B6EFF, #6D28D9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.dot-purple {
    color: #7C3AED;
}

.underline-alma {
    width: 100px;
    display: block;
    margin-top: 2px;
    margin-left: 210px;
}

.about-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-signature {
    font-family: 'Caveat', cursive;
    font-size: 34px;
    font-weight: 600;
    margin-top: 20px;
}

.stats {
    position: relative;
    display: flex;
    justify-content: space-around;
    padding: 50px 60px;
    text-align: center;
    background: linear-gradient(90deg, rgba(196,181,253,0.7) 0%, rgba(139,92,246,0.55) 50%, rgba(196,181,253,0.7) 100%);
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    top: -60%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109,40,217,0.35) 0%, rgba(109,40,217,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob1 12s ease-in-out infinite;
}

.stat {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 42px;
    color: #7C3AED;
}

.stat-label {
    font-size: 14px;
    margin-top: 5px;
}

.pillars {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    background: linear-gradient(135deg, #1A1025 0%, #2E1065 50%, #1A1025 100%);
    background-size: 200% 200%;
    color: white;
    padding: 90px 60px;
    overflow: hidden;
}

.pillars-glow {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, rgba(124,58,237,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob2 15s ease-in-out infinite;
}

.pillars-glow-2 {
    position: absolute;
    bottom: -120px;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167,139,250,0.22) 0%, rgba(167,139,250,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob1 11s ease-in-out infinite;
}

.pillars-intro {
    max-width: 320px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.pillars-title {
    color: white;
    font-size: 32px;
    line-height: 1.2;
    position: relative;
}

.pillars-title em {
    background: linear-gradient(135deg, #C4B5FD, #9B6EFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.underline-light {
    width: 130px;
    display: block;
    margin-top: 8px;
}

.pillars-grid {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 1;
}

.pillar {
    flex: 1;
    padding: 0 30px;
    border-left: 1px solid #3A2E5C;
}

.pillar-symbol {
    font-size: 26px;
    display: block;
    margin-bottom: 15px;
}

.pillar h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #C4B5FD;
}

.pillar p {
    font-size: 14px;
    line-height: 1.6;
    color: #B9AEDC;
}

.featured {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(200deg, rgba(196,181,253,0.75) 0%, rgba(139,92,246,0.4) 45%, rgba(196,181,253,0.7) 100%);
    overflow: hidden;
}

.featured-glow {
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(109,40,217,0.3) 0%, rgba(109,40,217,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob2 13s ease-in-out infinite;
}

.featured h2 {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.empty-state {
    position: relative;
    z-index: 1;
    border: 2px dashed #6D28D9;
    border-radius: 16px;
    padding: 70px 40px;
    text-align: left;
    max-width: 500px;
    background-color: rgba(255,255,255,0.35);
}

.empty-icon {
    font-size: 34px;
    color: #7C3AED;
    display: block;
    margin-bottom: 15px;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 15px;
    line-height: 1.6;
    color: #4A3F63;
}

.footer {
    position: relative;
    background: linear-gradient(160deg, #1A1025 0%, #2E1065 100%);
    color: white;
    padding: 60px;
    overflow: hidden;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3A2E5C;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #3A2E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #C4B5FD;
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px 50px;
    }

    .hero-visual {
        width: 280px;
        height: 340px;
    }

    .hero-image {
        width: 190px;
        height: 250px;
        left: 10px;
        top: 60px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    h1 {
        font-size: 40px;
    }

    .underline {
        width: 260px;
    }

    .about {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    h2 {
        font-size: 26px;
    }

    .underline-alma {
        margin-left: 0;
        margin: 4px auto 0;
    }

    .about-image {
        width: 250px;
        height: 300px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 20px;
    }

    .pillars {
        padding: 50px 20px;
        flex-direction: column;
    }

    .pillars-intro {
        max-width: 100%;
    }

    .pillars-grid {
        flex-direction: column;
        gap: 30px;
    }

    .pillar {
        border-left: none;
        border-top: 1px solid #3A2E5C;
        padding: 20px 0 0;
    }

    .featured {
        padding: 50px 20px;
    }

    .empty-state {
        padding: 50px 25px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}