@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.92);
    --border: rgba(100, 40, 200, 0.1);

    --grad-1: #7b2ff2;
    --grad-2: #c084fc;
    --grad-3: #e879f9;
    --grad-4: #f472b6;

    --text-h: #0a0a14;
    --text-p: #1e1e3a;
    --text-m: #5a5a72;

    --radius: 24px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-p);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    color: var(--text-h);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

strong {
    color: var(--text-h);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* ═══════════════════════════════════════════
   ANIMATED BACKGROUND — TONED DOWN FOR READABILITY
   ═══════════════════════════════════════════ */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--grad-1);
    top: -10%;
    left: -5%;
    animation: float1 18s ease-in-out infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--grad-3);
    top: 30%;
    right: -10%;
    animation: float2 22s ease-in-out infinite alternate;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--grad-2);
    bottom: -5%;
    left: 30%;
    animation: float3 20s ease-in-out infinite alternate;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--grad-4);
    top: 60%;
    left: -10%;
    animation: float4 25s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(120px, 80px) scale(1.15);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, 60px) scale(1.1);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, -60px) scale(1.2);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, -40px) scale(0.9);
    }
}

.grid-overlay {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(123, 47, 242, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 47, 242, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

/* ═══════════════════════════════════════════
   GRADIENT TEXT
   ═══════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3), var(--grad-4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-subtle {
    background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.nav-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-m);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--grad-1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(123, 47, 242, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(123, 47, 242, 0.5);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(123, 47, 242, 0.1), rgba(232, 121, 249, 0.08));
    border: 1px solid rgba(123, 47, 242, 0.2);
    padding: 0.5rem 1.3rem;
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--grad-1);
    margin-bottom: 2rem;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    box-shadow: 0 0 10px rgba(123, 47, 242, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-h);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-p);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-m);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Hero image */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(123, 47, 242, 0.12);
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual:hover img {
    transform: scale(1.02) translateY(-4px);
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    filter: blur(80px);
    opacity: 0.12;
    z-index: 1;
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.08;
        transform: scale(1);
    }

    100% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

/* ═══════════════════════════════════════════
   CTA BUTTONS — MAGNETIC HOVER EFFECTS
   ═══════════════════════════════════════════ */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(123, 47, 242, 0.35);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--grad-3), var(--grad-4), var(--grad-1));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 50px rgba(123, 47, 242, 0.55);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: transparent;
    border: 2px solid rgba(123, 47, 242, 0.2);
    border-radius: 100px;
    color: var(--grad-1);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(123, 47, 242, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    border-color: var(--grad-1);
    background: rgba(123, 47, 242, 0.04);
    box-shadow: 0 0 30px rgba(123, 47, 242, 0.1);
    transform: translateY(-3px);
}

.btn-ghost:hover::before {
    transform: translateX(100%);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--grad-1);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(123, 47, 242, 0.1), rgba(232, 121, 249, 0.06));
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-h);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-m);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GLASS CARDS — SOLID, READABLE, WITH HOVER GLOW
   ═══════════════════════════════════════════ */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(123, 47, 242, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
            rgba(123, 47, 242, 0.5), rgba(232, 121, 249, 0.3), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(123, 47, 242, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* ═══════════════════════════════════════════
   PILARES
   ═══════════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.pillar-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(123, 47, 242, 0.12), rgba(232, 121, 249, 0.08));
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--grad-1);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-num {
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(123, 47, 242, 0.3);
}

.pillar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-h);
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-m);
}

/* ═══════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════ */
.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-wide {
    grid-column: span 2;
}

.bento-highlight {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(123, 47, 242, 0.12);
}

.card-label {
    display: inline-block;
    font-size: 0.74rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
}

.label-purple {
    color: var(--grad-1);
    background: rgba(123, 47, 242, 0.1);
}

.label-pink {
    color: #c2185b;
    background: rgba(244, 114, 182, 0.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-h);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.chip {
    font-size: 0.84rem;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    background: rgba(123, 47, 242, 0.06);
    border: 1px solid rgba(123, 47, 242, 0.12);
    color: var(--text-p);
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chip:hover {
    background: rgba(123, 47, 242, 0.14);
    border-color: rgba(123, 47, 242, 0.3);
    color: var(--grad-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 47, 242, 0.1);
}

.chip-accent {
    background: linear-gradient(135deg, rgba(123, 47, 242, 0.15), rgba(232, 121, 249, 0.12));
    border-color: rgba(123, 47, 242, 0.3);
    color: var(--grad-1);
    font-weight: 600;
}

.mini-list {
    list-style: none;
}

.mini-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--text-p);
}

.mini-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ═══════════════════════════════════════════
   BANNER
   ═══════════════════════════════════════════ */
.banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
    box-shadow: 0 20px 60px rgba(123, 47, 242, 0.08);
    transition: transform 0.5s ease;
}

.banner:hover {
    transform: scale(1.01);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
}

.banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #0a0a14;
}

.banner-overlay p {
    font-size: 1.15rem;
    color: #2a2a45;
    max-width: 450px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(123, 47, 242, 0.1);
    padding: 4rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from 0deg, var(--grad-1), var(--grad-3), var(--grad-4), var(--grad-2), var(--grad-1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.date-display {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--grad-1);
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(123, 47, 242, 0.06);
    border-radius: 16px;
}

.date-display .sep {
    opacity: 0.2;
}

.btn-xl {
    font-size: 1.15rem;
    padding: 1.3rem 3rem;
    width: 100%;
    max-width: 380px;
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-m);
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   COUNTDOWN TIMER
   ═══════════════════════════════════════════ */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    padding: 1rem 0.8rem;
    background: rgba(123, 47, 242, 0.05);
    border: 1px solid rgba(123, 47, 242, 0.12);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.countdown-block:hover {
    background: rgba(123, 47, 242, 0.1);
    border-color: rgba(123, 47, 242, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(123, 47, 242, 0.12);
}

.countdown-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-m);
    margin-top: 0.4rem;
}

.countdown-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(123, 47, 242, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

@media (max-width: 500px) {
    .countdown-block {
        min-width: 58px;
        padding: 0.7rem 0.4rem;
    }

    .countdown-num {
        font-size: 1.4rem;
    }

    .countdown-sep {
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    padding: 5rem 0 3rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: auto;
    width: min(380px, 60%);
    margin-bottom: 1.5rem;
}

.footer-inner p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-p);
}

.footer-line {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    background: linear-gradient(90deg, transparent, rgba(123, 47, 242, 0.1), transparent);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .btn-group {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .banner-overlay {
        padding: 2rem;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }

    .date-display {
        flex-direction: column;
        gap: 0.3rem;
    }

    .date-display .sep {
        display: none;
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-d {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children reveal */
.reveal.active .glass-card,
.reveal.active .pillar-card {
    animation: staggerIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.reveal.active .glass-card:nth-child(1),
.reveal.active .pillar-card:nth-child(1) {
    animation-delay: 0.05s;
}

.reveal.active .glass-card:nth-child(2),
.reveal.active .pillar-card:nth-child(2) {
    animation-delay: 0.12s;
}

.reveal.active .glass-card:nth-child(3),
.reveal.active .pillar-card:nth-child(3) {
    animation-delay: 0.19s;
}

.reveal.active .glass-card:nth-child(4),
.reveal.active .pillar-card:nth-child(4) {
    animation-delay: 0.26s;
}

.reveal.active .glass-card:nth-child(5) {
    animation-delay: 0.33s;
}

.reveal.active .glass-card:nth-child(6) {
    animation-delay: 0.40s;
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}