/* Landing Page */

/* ===== NAVBAR ON LANDING ===== */
body > .navbar {
    background: rgba(0,0,0,0.35) !important;
    box-shadow: none !important;
}
body > .navbar .navbar-brand span {
    color: #fff !important;
}
body > .navbar .nav-link {
    color: #fff !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://prodmedia.tyga.host/public/tyga.cloud/landing/vipallowed.com/vipallowed-hero-1.jpg') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
    max-width: 720px;
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-logo {
    height: 72px;
    width: auto;
    flex-shrink: 0;
}

.hero-brand {
    font-size: 3.9rem;
    font-weight: 700;
    line-height: 72px;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 48px;
        width: auto;
    }
    .hero-brand {
        font-size: 2.4rem;
        line-height: 48px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 36px;
        width: auto;
    }
    .hero-brand {
        font-size: 1.8rem;
        line-height: 36px;
    }
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-tagline .gold {
    color: #D4AF37;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-ctas .btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.hero-ctas .btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: gleam 1.2s ease-in-out 0.8s forwards;
}

@keyframes gleam {
    0% { left: -100%; }
    100% { left: 150%; }
}

.hero-ctas .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
    color: #fff;
}

.hero-ctas .btn-outline-light {
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border-width: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ===== PILLARS ===== */
.pillars-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: #6B6B6B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.pillar-card {
    background: #FAFAF8;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(212,175,55,0.2);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pillar-icon.gold { background: rgba(212,175,55,0.12); color: #D4AF37; }
.pillar-icon.blue { background: rgba(59,130,246,0.12); color: #3B82F6; }
.pillar-icon.purple { background: rgba(139,92,246,0.12); color: #8B5CF6; }

.pillar-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: #6B6B6B;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: #4A4A4A;
    display: flex;
    align-items: center;
}

.pillar-features li ion-icon {
    color: #D4AF37;
    margin-right: 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 6rem 0;
    background: #F5F5F3;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-card h5 {
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #6B6B6B;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== FEATURES SHOWCASE ===== */
.features-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.feature-row {
    padding: 3rem 0;
}

.feature-row + .feature-row {
    border-top: 1px solid #F0F0F0;
}

.feature-visual {
    background: #F5F5F3;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.feature-visual ion-icon {
    font-size: 5rem;
    color: #D4AF37;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.feature-text p {
    color: #6B6B6B;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(212,175,55,0.1);
    color: #B8860B;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

/* ===== FEE COMPARISON ===== */
.compare-section {
    padding: 6rem 0;
    background: #F5F5F3;
}

.compare-bars {
    max-width: 640px;
    margin: 0 auto;
}

.compare-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.compare-name {
    width: 120px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4A4A;
    flex-shrink: 0;
    text-align: right;
    padding-right: 1rem;
}

.compare-track {
    flex: 1;
    height: 32px;
    background: #E8E8E4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.compare-fill {
    height: 100%;
    background: #9CA3AF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    min-width: 48px;
    transition: width 0.6s ease;
}

.compare-fill.gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.compare-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.compare-row.highlight .compare-name {
    color: #B8860B;
    font-weight: 800;
}

.compare-row.highlight {
    padding: 0.25rem 0;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .compare-name {
        width: 90px;
        font-size: 0.8rem;
        padding-right: 0.75rem;
    }
    .compare-track {
        height: 28px;
    }
}

/* ===== CREATORS ===== */
.creators-section {
    padding: 6rem 0;
    background: #F5F5F3;
}

.creators-wrapper {
    margin: 0 -0.5rem;
}

/* ===== FINAL CTA ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 2.5rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero {
        min-height: 90vh;
    }
    .pillars-section,
    .how-section,
    .features-section,
    .creators-section,
    .cta-section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .feature-visual {
        min-height: 200px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .pillars-section,
    .how-section,
    .features-section,
    .creators-section,
    .compare-section,
    .cta-section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .feature-visual {
        min-height: 160px;
    }
    .hero-sub {
        max-width: 100%;
    }
    .hero-tagline {
        font-size: 1.8rem;
    }
}
