:root {
    --lp-bg: #030712;
    --lp-primary: #3b82f6;
    --lp-secondary: #8b5cf6;
    --lp-accent: #06b6d4;
    --lp-text: #f8fafc;
    --lp-muted: #94a3b8;
    --lp-border: rgba(255, 255, 255, 0.08);
    --lp-glass: rgba(15, 23, 42, 0.7);
    --lp-font-header: 'Outfit', sans-serif;
    --lp-glow: 0 0 20px rgba(59, 130, 246, 0.15);
}

body {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.05), transparent 40%);
}

/* Animations Helpers */
.reveal-hidden { opacity: 0; transform: translateY(30px); }

/* Typography */
.section-kicker {
    display: inline-block;
    color: var(--lp-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Feature Cards & Boards */
.glass-card {
    background: var(--lp-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--lp-border);
    border-radius: 28px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: var(--lp-glow);
    transform: translateY(-8px);
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--lp-muted);
}

.feature-list i {
    color: var(--lp-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Specific Feature UI */
.clinical-tag {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp-border);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-text);
}

.beta-badge {
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.app-platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.app-platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--lp-primary);
}

/* Massive FAQ Styles */
.faq-group-title {
    color: var(--lp-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.faq-group-title::after {
    content: '';
    height: 1px;
    background: var(--lp-border);
    flex: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feature deep lists */
.deep-list {
    column-count: 2;
    column-gap: 2rem;
}
@media (max-width: 768px) { .deep-list { column-count: 1; } }

.deep-list-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Hero enhancements */
.hero {
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-item {
    background: var(--lp-glass);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 1.5rem;
}

.bento-item h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.bento-item p { font-size: 0.9rem; color: var(--lp-muted); margin: 0; }

/* Grid spanning */
.bento-item.large { grid-column: span 6; grid-row: span 2; }
.bento-item.medium { grid-column: span 6; }
.bento-item.small { grid-column: span 3; }

/* Pricing */
.price-card {
    padding: 3rem 2rem;
    text-align: center;
}

.price-card.featured {
    border-color: var(--lp-primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.price-amount { font-size: 2.5rem; font-weight: 900; }

/* Metrics */
.metric-box {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--lp-border);
}

/* Cockpit Mockup Styles */
.cockpit-mockup {
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.mockup-header {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-body {
    padding: 2rem;
}

.mockup-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--lp-primary);
}

.mockup-item-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.mockup-item-text {
    font-size: 0.9rem;
    color: var(--lp-muted);
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Forecasting Visuals */
.forecast-bar {
    background: linear-gradient(180deg, var(--lp-primary), rgba(59, 130, 246, 0.2));
    border-radius: 8px 8px 4px 4px;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.forecast-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
}
