/* Landing Page Specific Styles */

.hero-section {
    padding: 6rem 0 4rem;
    background: url("/static/images/hero_bg.svg") no-repeat center center;
    background-size: cover;
    border-radius: 24px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;

    border: 1px solid var(--border-translucent);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-color), #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted-color);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-translucent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0.5rem 1rem;
}

/* Stats Ticker */
.stats-ticker {
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-translucent);
    border-radius: 16px;
    padding: 2rem 1.5rem;
}

.stat-item {
    padding: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-color);
    font-weight: 600;
}

/* Recent Filings Feed */
.recent-filings-feed {
    background: var(--bg-surface-secondary);
    border: 1px solid var(--border-translucent);
    border-radius: 16px;
    padding: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
}

.recent-filing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-translucent);
    transition: all 0.2s ease;
}

.recent-filing-item:last-child {
    border-bottom: none;
}

.recent-filing-item:hover {
    background: var(--bg-surface-hover);
    border-radius: 8px;
}

.filing-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.buy-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.sell-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.filing-content {
    flex: 1;
}

.filing-main {
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.ticker-link {
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.ticker-link:hover {
    text-decoration: underline;
}

.filing-time {
    font-size: 0.75rem;
}

/* Transaction Cards */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-color);
}

.transaction-card {
    background: rgba(var(--card-bg-rgb), 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-translucent);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transaction-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-translucent);
    box-shadow: var(--shadow-card);
}

.transaction-card.buy-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.02));
}

.transaction-card.buy-card:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.transaction-card.sell-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.02));
}

.transaction-card.sell-card:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--bg-surface-hover), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.transaction-card:hover .card-glow {
    opacity: 1;
}

.action-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}



.ticker-display {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
}

.date-display {
    font-size: 0.9rem;
    color: var(--text-muted-color);
}

.value-display {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
}

.value-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-color);
    font-weight: 600;
}

.owner-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-translucent);
}

.owner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.owner-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.owner-role {
    font-size: 0.85rem;
    color: var(--text-muted-color);
}

.shares-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-surface-secondary);
    border-radius: 12px;
}

.shares-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-color);
}

.shares-value {
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: auto;
}

/* Features Section */
.feature-card {
    background: rgba(var(--card-bg-rgb), 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-translucent);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted-color);
    line-height: 1.6;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

/* Responsive */



@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        border-radius: 12px;
        padding: 4rem 0 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .value-display {
        font-size: 1.75rem;
    }

    .ticker-display {
        font-size: 1.1rem;
    }

    .transaction-card {
        padding: 1.5rem;
    }
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}