/* Search Onix — Nova-style landing (v4) */

.landing-page {
    font-family: 'Inter', system-ui, sans-serif;
}

.grid-bg {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

.purple-dot-bg {
    background-image: radial-gradient(#6366f1 1px, transparent 1px);
    background-size: 15px 15px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.landing-dropdown-panel {
    display: none;
}

.landing-dropdown-wrap.is-open .landing-dropdown-panel {
    display: block;
}

/* Inner pages */
.landing-page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.landing-legal {
    max-width: 40rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.landing-legal-box {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
}

.legal-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.75rem 0;
}

.legal-content a {
    color: #6366f1;
    font-weight: 500;
}

[data-animate-section] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate-section].is-visible {
    opacity: 1;
    transform: translateY(0);
}
