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

:root {
    --primary: #3B82F6;
    /* Electric Blue */
    --primary-dark: #2563EB;
    --secondary: #10B981;
    /* Emerald */
    --accent: #8B5CF6;
    /* Violet */
    --gold: #F59E0B;
    --bg-deep: #050A1F;
    /* Richer Deep Navy */
    --bg-card: rgba(15, 23, 42, 0.4);
    /* More transparent for glassmorphism */
    --bg-input: rgba(30, 41, 59, 0.4);
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    /* Lighter for best contrast */
    --border-light: rgba(255, 255, 255, 0.08);
    /* More subtle */
    --border-glow: rgba(59, 130, 246, 0.4);
    --glass-blur: blur(16px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --gradient-text: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #34D399 100%);
    --gradient-btn: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0E1A;
    /* Luxury Black */
    background-image:
        radial-gradient(circle at 15% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.mockmate-page {
    min-height: 100vh;
    padding-bottom: 5rem;
}

.mm-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    /* BOLD */
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 40px rgba(255, 255, 255, 0.1);
    /* Premium Glow */
}

.mm-title span {
    background: linear-gradient(135deg, #8B5CF6, #6366F1, #06B6D4);
    /* Updated Gradient */
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.05em;
    /* Expanded spacing */
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mm-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    /* Better contrast */
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.mm-subtitle strong {
    color: #F8FAFC;
    font-weight: 600;
}

/* --- ANIMATIONS --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-soft {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* --- MAIN CONTAINER --- */
.mm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- CTA BUTTONS --- */
.mm-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease-out 0.5s both;
    margin-bottom: 2rem;
}

.mm-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 36px;
    /* Specific 16px 36px padding */
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    /* Specific Gradient */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    /* Specific radius */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    /* Multi-layer shadow */
    border: none;
}

.mm-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.mm-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4);
    filter: brightness(1.05);
}

.mm-cta-primary i {
    font-size: 1.5rem;
    /* ~24px as requested */
    transition: transform 0.3s ease;
}

.mm-cta-primary:hover i {
    transform: translateX(4px) rotate(-10deg);
}

.mm-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 36px;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.3);
    /* Thicker border */
    color: #B8BFCC;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mm-cta-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

/* --- TIER BADGES --- */
.mm-tiers-preview {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    z-index: 10;
    animation: slide-up 0.8s ease-out 0.6s both;
}

.mm-tier-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    /* Increased padding */
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    /* 2px border */
    border-radius: 50px;
    color: #B8BFCC;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.mm-tier-pill:hover {
    transform: scale(1.05);
    /* Hover scale */
    background: rgba(30, 41, 59, 0.7);
}

.mm-tier-pill i {
    font-size: 1.3em;
    /* ~20px */
}

/* Badge colors */
.mm-tier-service {
    border-color: rgba(16, 185, 129, 0.3);
    color: #8DE8C6;
}

.mm-tier-service:hover {
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.3), 0 0 30px rgba(16, 185, 129, 0.4);
}

.mm-tier-service i {
    color: #10B981;
}

.mm-tier-product {
    border-color: rgba(59, 130, 246, 0.3);
    color: #93C5FD;
}

.mm-tier-product:hover {
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.4);
}

.mm-tier-product i {
    color: #3B82F6;
}

.mm-tier-maang {
    border-color: rgba(245, 158, 11, 0.3);
    color: #FDE68A;
}

.mm-tier-maang:hover {
    box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.3), 0 0 30px rgba(245, 158, 11, 0.4);
}

.mm-tier-maang i {
    color: #F59E0B;
}

/* --- SOCIAL PROOF --- */
.mm-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #B8BFCC;
    animation: fadeInDown 0.8s ease-out 0.1s backwards;
}

.mm-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.mm-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-deep);
    background: linear-gradient(135deg, #334155, #1E293B);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mm-avatar:first-child {
    margin-left: 0;
}

.mm-social-highlight {
    color: #F8FAFC;
    font-weight: 700;
}

/* --- STATS ROW --- */
.mm-stats-row {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5rem;
    z-index: 10;
    animation: slide-up 0.8s ease-out 0.65s both;
}

.mm-stat-item {
    text-align: center;
    padding: 0 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-stat-value {
    font-size: 3.5rem;
    /* Increased size */
    font-weight: 700;
    /* Bold */
    background: linear-gradient(135deg, #A78BFA, #818CF8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.mm-stat-label {
    font-size: 0.9rem;
    color: #B8BFCC;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* --- FEATURES GRID --- */
.mm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.mm-feat-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.mm-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.mm-feat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
    border: none;
}

.mm-feat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #F8FAFC;
}

.mm-feat-card p {
    line-height: 1.7;
    color: #CBD5E1;
    font-size: 1rem;
}

/* --- NAVBAR OVERRIDES --- */
.navbar {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

.navbar-brand img {
    transform: scale(1.15);
}

/* Distinct Login Button */
a[href*="login"] {
    background: transparent !important;
    border: 1px solid rgba(139, 92, 246, 0.5) !important;
    color: #A78BFA !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1) !important;
}

a[href*="login"]:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3) !important;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6) !important;
    color: #fff !important;
}

/* --- FOOTER OVERRIDES --- */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5)) !important;
    background-color: #020617 !important;
    padding-top: 5rem !important;
}

.footer h4 {
    color: #fff !important;
    font-weight: 800 !important;
}

.footer a {
    color: #B8BFCC !important;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #A78BFA !important;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer input[type="email"] {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 2px solid rgba(139, 92, 246, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.footer input[type="email"]:focus {
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2) !important;
}

.footer button {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%) !important;
    border: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
}

.footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6) !important;
}

/* --- UTILITIES --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Depth */
/* Background Depth */
body {
    background: #0A0E1A;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}