/* Premium noise overlay */
.hero-noise {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .45;
}

.text-gradient {
    background: linear-gradient(90deg, #7CF6FF 0%, #D66BFF 40%, #7CFFB2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1.25rem;
}

.section-title {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-desc {
    color: rgba(255, 255, 255, .70);
    max-width: 52rem;
}

.glass-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.glass-mini {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
}

.stat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 1.25rem;
    padding: .9rem 1rem;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    min-height: 320px;
}

.showcase-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 20% 20%, rgba(124, 246, 255, .30), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(214, 107, 255, .28), transparent 55%),
        radial-gradient(circle at 40% 85%, rgba(124, 255, 178, .22), transparent 55%);
    filter: blur(18px);
}

.input {
    width: 100%;
    padding: .9rem 1rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .10);
    outline: none;
    color: white;
}

.input:focus {
    border-color: rgba(255, 255, 255, .25);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.1rem;
    border-radius: 1rem;
    font-weight: 800;
    color: #071018;
    background: linear-gradient(90deg, #7CF6FF, #D66BFF, #7CFFB2);
    box-shadow: 0 18px 45px rgba(214, 107, 255, .22);
}

.btn-primary:hover {
    opacity: .92;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: .85rem 1.1rem;
    border-radius: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
}

.cta-band {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

/* Reveal initial state */
.reveal {
    opacity: 0;
    transform: translateY(20px);
}