/* Landing page navbar */
.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.landing-nav-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e3a5f;
    text-decoration: none;
}
.landing-nav-logo span { color: #f59e0b; }
.landing-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.landing-nav-links a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}
.landing-nav-links a:hover { color: #1e3a5f; }

/* Hero section */
.landing-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1d2f 100%);
    color: white;
    padding: 100px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
}
.landing-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 20px;
    position: relative;
}
.landing-hero h1 span { color: #f59e0b; }
.landing-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 300;
}
.landing-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}

/* Shared button styles */
.landing-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
}
.landing-btn-accent { background: #f59e0b; color: #1a1a1a; }
.landing-btn-accent:hover { background: #d97706; color: #1a1a1a; }
.landing-btn-ghost { background: rgba(255,255,255,0.15); color: white; }
.landing-btn-ghost:hover { background: rgba(255,255,255,0.25); color: white; }
.landing-btn-outline { background: transparent; border: 2px solid #1e3a5f; color: #1e3a5f; padding: 12px 28px; }
.landing-btn-outline:hover { background: #1e3a5f; color: white; }
.landing-btn-dark { background: #1e3a5f; color: white; }
.landing-btn-dark:hover { background: #15304f; color: white; }

/* Features section */
.landing-features {
    padding: 80px 48px;
    background: #f8fafc;
}
.landing-features h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 8px;
}
.landing-features .landing-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 48px;
    font-size: 1.05rem;
}
.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.landing-feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.landing-feature-icon { font-size: 2rem; margin-bottom: 16px; }
.landing-feature-card h3 { font-size: 1.1rem; color: #1e3a5f; margin-bottom: 8px; }
.landing-feature-card p { color: #64748b; font-size: 0.9rem; margin: 0; }

/* How it works */
.landing-how-it-works {
    padding: 80px 48px;
    max-width: 1000px;
    margin: 0 auto;
}
.landing-how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 48px;
}
.landing-steps {
    display: flex;
    gap: 40px;
}
.landing-step { flex: 1; text-align: center; }
.landing-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f59e0b;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.landing-step h3 { font-size: 1rem; color: #1e3a5f; margin-bottom: 8px; }
.landing-step p { color: #64748b; font-size: 0.85rem; }

/* Differentiator section */
.landing-differentiator {
    padding: 80px 48px;
    background: #f8fafc;
}
.landing-diff-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.landing-diff-text h2 { font-size: 2rem; color: #1e3a5f; margin-bottom: 16px; }
.landing-diff-text p { color: #64748b; margin-bottom: 20px; font-size: 1rem; }
.landing-diff-list { list-style: none; padding: 0; }
.landing-diff-list li { padding: 8px 0; color: #334155; font-size: 0.95rem; }
.landing-diff-list li::before { content: '\2713'; color: #f59e0b; font-weight: 700; margin-right: 12px; }
.landing-diff-mockup {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.landing-vote-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.landing-vote-option.active {
    border-color: #f59e0b;
    background: #fef3c7;
}
.landing-vote-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e3a5f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}
.landing-vote-option.active .landing-vote-rank {
    background: #f59e0b;
    color: #1a1a1a;
}
.landing-vote-grip { color: #cbd5e1; margin-right: 12px; font-size: 1.1rem; }

/* Stats bar */
.landing-stats {
    background: linear-gradient(135deg, #0f1d2f 0%, #1e3a5f 100%);
    color: white;
    padding: 60px 48px;
}
.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.landing-stat-value { font-size: 2.5rem; font-weight: 700; color: #f59e0b; }
.landing-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* CTA section */
.landing-cta {
    padding: 80px 48px;
    text-align: center;
}
.landing-cta h2 { font-size: 2rem; color: #1e3a5f; margin-bottom: 12px; }
.landing-cta p { color: #64748b; margin-bottom: 32px; font-size: 1.05rem; }
.landing-cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* Footer */
.landing-footer {
    background: #0f1d2f;
    color: rgba(255,255,255,0.5);
    padding: 32px 48px;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .landing-hero { padding: 60px 24px 50px; }
    .landing-hero h1 { font-size: 2.2rem; }
    .landing-feature-grid { grid-template-columns: 1fr; }
    .landing-steps { flex-direction: column; gap: 24px; }
    .landing-diff-content { grid-template-columns: 1fr; }
    .landing-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-nav { padding: 12px 24px; }
    .landing-nav-links { gap: 16px; }
}
@media (max-width: 575.98px) {
    .landing-hero h1 { font-size: 1.8rem; }
    .landing-hero-buttons { flex-direction: column; align-items: center; }
    .landing-cta-buttons { flex-direction: column; align-items: center; }
    .landing-nav-links a:not(.landing-btn) { display: none; }
}
