/* Oricoms landing page */

.landing-page {
    --landing-pink: #EC2A7B;
    --landing-pink-dark: #D41F6A;
    --landing-purple: #7B61FF;
    --landing-orange: #F36523;
}

.landing-nav {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.landing-nav.is-scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.landing-hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(
        ellipse at 60% 30%,
        rgba(252, 231, 243, 0.85) 0%,
        rgba(250, 245, 255, 0.5) 40%,
        rgba(248, 249, 251, 0) 70%
    );
}

.landing-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #F8F9FB);
}

.landing-dots {
    background-image: radial-gradient(circle, #d4d8e0 1.1px, transparent 1.1px);
    background-size: 15px 15px;
}

.landing-hero-card {
    animation: landing-float 6s ease-in-out infinite;
}

.landing-hero-card:nth-child(2) {
    animation-delay: -2s;
}

.landing-hero-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes landing-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.landing-stat-bar {
    background: linear-gradient(135deg, rgba(236, 42, 123, 0.06) 0%, rgba(123, 97, 255, 0.06) 100%);
    border: 1px solid rgba(236, 42, 123, 0.08);
}

.landing-feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(236, 42, 123, 0.15);
}

.landing-module-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.landing-icon-pink {
    background: linear-gradient(135deg, #FCE7F3 0%, #FDF2F8 100%);
    color: var(--landing-pink);
}

.landing-icon-purple {
    background: linear-gradient(135deg, #EDE9FE 0%, #F5F3FF 100%);
    color: var(--landing-purple);
}

.landing-icon-orange {
    background: linear-gradient(135deg, #FFEDD5 0%, #FFF7ED 100%);
    color: var(--landing-orange);
}

.landing-icon-blue {
    background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
    color: #2563EB;
}

.landing-icon-green {
    background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
    color: #059669;
}

.landing-cta-section {
    background: linear-gradient(135deg, #EC2A7B 0%, #7B61FF 55%, #EC2A7B 100%);
    background-size: 200% 200%;
    animation: landing-gradient-shift 8s ease infinite;
}

@keyframes landing-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.landing-btn-primary {
    background: linear-gradient(135deg, #EC2A7B 0%, #D41F6A 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.landing-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(236, 42, 123, 0.35);
}

.landing-btn-outline {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-btn-outline:hover {
    background-color: rgba(236, 42, 123, 0.06);
    border-color: #EC2A7B;
    color: #EC2A7B;
}

.landing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-channel-pill {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-channel-pill:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.landing-mockup {
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.04),
        0 24px 64px rgba(15, 23, 42, 0.12),
        0 8px 24px rgba(236, 42, 123, 0.08);
}

.landing-mockup-bar {
    background: linear-gradient(90deg, #F1F5F9 0%, #E2E8F0 100%);
}

.landing-step-line {
    background: linear-gradient(90deg, #EC2A7B, #7B61FF);
    height: 2px;
}

@media (max-width: 768px) {
    .landing-nav.is-scrolled,
    .landing-nav {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    }
}
