/* ============================================
   Mediso India — Landing Page Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0e356c 0%, #1a4f9e 50%, #2563eb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

.landing-wrapper {
    padding: 24px;
    width: 100%;
    max-width: 520px;
}

.landing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.landing-header {
    text-align: center;
    margin-bottom: 36px;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    color: #0e356c;
    letter-spacing: -1px;
}

.logo span {
    color: #10b981;
}

.tagline {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
    font-weight: 500;
}

/* Role Cards */
.roles-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.25s ease;
    cursor: pointer;
}

.role-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.role-card.customer:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.role-card.admin:hover {
    border-color: #8b5cf6;
    background: #f5f3ff;
}

.role-card.tracker:hover {
    border-color: #10b981;
    background: #ecfdf5;
}

.role-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer .role-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.admin .role-icon {
    background: #ede9fe;
    color: #8b5cf6;
}

.tracker .role-icon {
    background: #d1fae5;
    color: #10b981;
}

.role-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.role-desc {
    font-size: 13px;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* Footer */
.landing-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.landing-footer p {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

@media (max-width: 480px) {
    .landing-card {
        padding: 28px 20px;
    }

    .logo {
        font-size: 28px;
    }
}