/* ============================================================
   MobileBlocker Landing Page Styles
   ============================================================ */

:root {
    --landing-dark: #0a1628;
    --landing-dark-end: #1a2744;
    --employer-primary: #1e40af;
    --employer-secondary: #2563eb;
    --employer-light: #dbeafe;
    --employee-primary: #065f46;
    --employee-secondary: #10b981;
    --employee-light: #d1fae5;
    --convergence: #4f46e5;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.1);
}

/* ---- Reset & Base ---- */
html {
    scroll-behavior: smooth;
}

body.landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--landing-dark);
    color: #e5e7eb;
    overflow-x: hidden;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #070d1a 0%, #0d1b36 40%, #132244 70%, #0a1628 100%);
    overflow: hidden;
    padding: 2rem;
}

/* Subtle grid pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.35));
    position: relative;
    z-index: 1;
}

.hero-logo-placeholder {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.15);
}

.hero-org-name {
    font-size: 2.75rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 1.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 520px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Floating decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    animation: heroDrift 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.hero-decoration-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation-delay: -5s;
}

.hero-decoration-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes heroDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 30px) rotate(5deg); }
    50% { transform: translate(0, 50px) rotate(0deg); }
    75% { transform: translate(-30px, 30px) rotate(-5deg); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #475569;
    font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
    z-index: 1;
}

.scroll-indicator:hover {
    color: #94a3b8;
}

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

/* ============================================================
   2. SPLIT-SCREEN SECTION
   ============================================================ */
.split-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0d1529 0%, #111d35 50%, #0f172a 100%);
    position: relative;
}

/* Top edge glow */
.split-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.split-container {
    display: flex;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
    position: relative;
}

.split-handshake {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 0.9), rgba(16, 185, 129, 0.12));
    border: 1px solid rgba(167, 139, 250, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: box-shadow 0.15s ease;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
    z-index: 3;
}

.split-handshake-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.split-panel {
    flex: 1;
    padding: 3rem 2.5rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
}

/* Inner glow effect */
.split-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    pointer-events: none;
}

.split-panel-employer {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.08), inset 0 1px 0 rgba(96, 165, 250, 0.1);
}

.split-panel-employer::before {
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
}

.split-panel-employee {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.2) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.08), inset 0 1px 0 rgba(52, 211, 153, 0.1);
}

.split-panel-employee::before {
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.split-panel .split-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.split-panel-employer .split-icon {
    color: #60a5fa;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.4));
}

.split-panel-employee .split-icon {
    color: #34d399;
    filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.4));
}

.split-panel h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.split-panel-employer h2 { color: #93bbfd; }
.split-panel-employee h2 { color: #6ee7b7; }

.split-panel p {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SHARED: Section Headers & Feature Cards
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7c8ba5;
    max-width: 550px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    will-change: border-color;
}

/* Top accent line on cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    border-radius: 0 0 2px 2px;
    opacity: 0.5;
}

.employer-features-section .feature-card::before {
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.employee-features-section .feature-card::before {
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.employer-features-section .feature-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.15);
}

.employee-features-section .feature-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

.feature-card .feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
}

.employer-features-section .feature-icon {
    color: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.3));
}

.employee-features-section .feature-icon {
    color: #34d399;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.3));
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #7c8ba5;
    line-height: 1.6;
    margin: 0;
}

/* Reveal animation */
.feature-card.anim-ready {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.anim-ready.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   3. EMPLOYER FEATURES SECTION
   ============================================================ */
.employer-features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #101c33 50%, #0c1526 100%);
    position: relative;
}

.employer-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(37, 99, 235, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* Section divider glow */
.employer-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.25), transparent);
}

.employer-features-section .section-header h2 { color: #93bbfd; }

/* ============================================================
   4. EMPLOYEE FEATURES SECTION
   ============================================================ */
.employee-features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0c1526 0%, #0d1a2d 50%, #0f172a 100%);
    position: relative;
}

.employee-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(16, 185, 129, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.employee-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
}

.employee-features-section .section-header h2 { color: #6ee7b7; }

.employee-features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
}

/* ============================================================
   5. CONVERGENCE SECTION
   ============================================================ */
.convergence-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #12183a 40%, #131a30 60%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dual color side glows */
.convergence-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Top divider */
.convergence-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.convergence-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--employer-secondary), var(--convergence), var(--employee-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: #fff;
    box-shadow: 0 0 60px rgba(79, 70, 229, 0.35), 0 0 120px rgba(79, 70, 229, 0.15);
    animation: convergenceGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes convergenceGlow {
    0% { box-shadow: 0 0 40px rgba(79, 70, 229, 0.25), 0 0 80px rgba(79, 70, 229, 0.1); }
    100% { box-shadow: 0 0 60px rgba(79, 70, 229, 0.4), 0 0 120px rgba(79, 70, 229, 0.2); }
}

.convergence-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.convergence-section .convergence-subtitle {
    font-size: 1.1rem;
    color: #7c8ba5;
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.convergence-points {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.convergence-point {
    flex: 1;
    min-width: 230px;
    max-width: 270px;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    text-align: center;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.convergence-point:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}

.convergence-point i {
    font-size: 1.75rem;
    color: #a78bfa;
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.3));
}

.convergence-point h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.convergence-point p {
    font-size: 0.9rem;
    color: #7c8ba5;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   6. HOW IT WORKS SECTION
   ============================================================ */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #111d35 50%, #0a1628 100%);
    position: relative;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

/* Timeline connector */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -2px;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.4), rgba(99, 102, 241, 0.1));
    transform: translateX(50%);
}

.step-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    border: 2px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #a78bfa;
    position: relative;
    z-index: 1;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.step-item:hover .step-icon {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.2);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.step-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: #7c8ba5;
    line-height: 1.6;
}

/* ============================================================
   7. FOOTER
   ============================================================ */
.landing-footer {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #0a1628 0%, #060e1c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.footer-legal-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer-legal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.25rem;
}

.footer-powered {
    font-size: 0.75rem;
    color: #334155;
}

/* ---- Legal Modal ---- */
.legal-modal .modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.legal-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.legal-modal .modal-title {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Round close button */
.legal-close-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.legal-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
    transform: rotate(90deg);
}

.legal-modal .modal-body {
    padding: 1.75rem 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    max-height: 65vh;
}

.legal-modal .modal-body h1,
.legal-modal .modal-body h2,
.legal-modal .modal-body h3 {
    color: #e2e8f0;
    margin-top: 1.5rem;
}

.legal-modal .modal-body h2:first-child {
    margin-top: 0;
}

.legal-modal .modal-body h2 {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-modal .modal-body h3 {
    font-size: 1.05rem;
}

.legal-modal .modal-body ul {
    padding-left: 1.25rem;
}

.legal-modal .modal-body li {
    margin-bottom: 0.35rem;
}

.legal-modal .modal-body hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

.legal-modal .modal-body strong {
    color: #cbd5e1;
}

/* Modal backdrop */
.modal-backdrop.show {
    backdrop-filter: blur(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .employee-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-org-name {
        font-size: 2.2rem;
    }

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

    .convergence-points {
        gap: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .split-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .split-panel {
        transform: none !important;
        opacity: 1 !important;
    }

    .split-handshake {
        display: none;
    }

    .features-grid,
    .employee-features-section .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .step-item {
        max-width: 320px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .convergence-points {
        flex-direction: column;
        align-items: center;
    }

    .convergence-point {
        max-width: 100%;
        width: 100%;
    }

    .hero-org-name {
        font-size: 1.75rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .convergence-section h2 {
        font-size: 1.6rem;
    }

    .employer-features-section,
    .employee-features-section,
    .convergence-section,
    .how-it-works-section {
        padding: 4rem 0;
    }

    .split-section {
        padding: 4rem 0;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 1.5rem;
    }

    .hero-org-name {
        font-size: 1.5rem;
    }

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

    .split-panel {
        padding: 2rem 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-btn {
        width: 85%;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-decoration {
        animation: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .convergence-icon {
        animation: none;
    }

    .feature-card.anim-ready {
        opacity: 1;
        transform: none;
    }

    .feature-card.anim-ready.revealed {
        transition: none;
    }

    .split-panel {
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}
