/* MedixHub Inspired Landing Page CSS for FitDesk/OmniPass */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #050814;
    --bg-surface: #0b1124;
    --bg-surface-elevated: #111a36;
    --bg-glass: rgba(13, 21, 45, 0.7);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 242, 254, 0.3);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #6366f1 100%);
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-indigo: #6366f1;
    --glow-primary: 0 10px 30px rgba(0, 242, 254, 0.25);
    --glow-strong: 0 0 50px rgba(79, 172, 254, 0.35);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.landing-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    margin: 0;
}

/* Ambient Background Glows */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: pulseOrb 10s ease-in-out infinite alternate;
}

.orb-1 {
    top: -100px;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, transparent 70%);
}

.orb-2 {
    top: 25%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    bottom: 10%;
    left: 20%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
}

@keyframes pulseOrb {
    0% { transform: scale(1) translate(0, 0); opacity: 0.45; }
    100% { transform: scale(1.15) translate(30px, -20px); opacity: 0.65; }
}

.landing-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Floating Pill Header */
.landing-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1140px;
    z-index: 1000;
}

.landing-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.landing-nav-links a:hover {
    color: var(--text-main);
}

/* Header CTA */
.header-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: #050814;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
}
.header-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.4);
}

/* Hero Section */
.landing-hero {
    padding: 180px 0 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--accent-cyan); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.landing-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 48px;
}

/* Dashboard Mockup / Video Container */
.dashboard-mockup {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 100px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup video {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Feature Grid */
.landing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

/* Footer */
.landing-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-muted);
}
