/* ============================================
   URBot Network Landing Page
   Bright optimistic theme with category accents
   ============================================ */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-bright: rgba(37, 99, 235, 0.3);
    --text: #1a1a2e;
    --text-dim: #64748b;
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --font: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #f8fafc 100%);
    font-family: var(--font);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---- Header ---- */
.landing-header {
    text-align: center;
    padding: 3.5rem 2rem 2rem;
    position: relative;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
}

.landing-header-right {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.landing-header-auth {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: #FF6B35;
    color: #fff;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.header-login-btn:hover {
    background: #e55a28;
    transform: translateY(-1px);
}

.header-user-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: #1a1a2e;
    color: #fff;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.header-user-btn:hover { background: #2d2d50; }

.landing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.landing-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
}

.landing-logo img {
    width: 100%;
    height: 100%;
}

.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.landing-tagline {
    font-size: 1.15rem;
    color: var(--text-dim);
    letter-spacing: 0.15rem;
    font-weight: 300;
}

/* ---- CEO Contact Section ---- */
.ceo-contact {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.ceo-contact-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.ceo-avatar {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.ceo-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.ceo-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.ceo-email-btn {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ceo-email-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ---- Data Privacy Promise ---- */
.data-promise {
    max-width: 800px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
}

.data-promise-inner {
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-left: 4px solid #10b981;
    border-radius: 12px;
    padding: 2rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.08);
}

.data-promise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.data-promise-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.data-promise-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.data-promise-content p:last-child {
    margin-bottom: 0;
}

.data-promise-bottom {
    font-weight: 600;
    color: var(--text) !important;
    font-style: italic;
}

/* ---- Category Sections ---- */
.landing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.35rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--card-accent, var(--accent));
}

.category-subtitle {
    font-size: 0.9rem;
    color: var(--text-dim);
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

/* ---- Card Grid ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--card-accent, var(--accent));
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.bot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--card-shadow, rgba(37, 99, 235, 0.12));
}

.bot-card-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    color: var(--text);
}

.bot-card-subdomain {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--card-accent, var(--accent));
    opacity: 0.9;
}

.bot-card-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.bot-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--text-dim);
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.bot-card-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warning);
}

.bot-card-status .dot.active {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

/* ---- Price Badge ---- */
.bot-card-price {
    display: inline-block;
    background: var(--card-accent, var(--accent));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
    letter-spacing: 0.03rem;
}

/* ---- Category Accent Colors ---- */
.cat-education {
    --card-accent: #10b981;
    --card-shadow: rgba(16, 185, 129, 0.15);
}
.cat-health {
    --card-accent: #ef4444;
    --card-shadow: rgba(239, 68, 68, 0.15);
}
.cat-industry {
    --card-accent: #f59e0b;
    --card-shadow: rgba(245, 158, 11, 0.15);
}
.cat-creative {
    --card-accent: #8b5cf6;
    --card-shadow: rgba(139, 92, 246, 0.15);
}
.cat-security {
    --card-accent: #dc2626;
    --card-shadow: rgba(220, 38, 38, 0.15);
}
.cat-enterprise {
    --card-accent: #0ea5e9;
    --card-shadow: rgba(14, 165, 233, 0.15);
}
.cat-logistics {
    --card-accent: #f97316;
    --card-shadow: rgba(249, 115, 22, 0.15);
}
.cat-travel {
    --card-accent: #06b6d4;
    --card-shadow: rgba(6, 182, 212, 0.15);
}
.cat-legal {
    --card-accent: #6366f1;
    --card-shadow: rgba(99, 102, 241, 0.15);
}
.cat-business {
    --card-accent: #0d9488;
    --card-shadow: rgba(13, 148, 136, 0.15);
}
.cat-finance {
    --card-accent: #22c55e;
    --card-shadow: rgba(34, 197, 94, 0.15);
}
.cat-memory {
    --card-accent: #7c3aed;
    --card-shadow: rgba(124, 58, 237, 0.15);
}
.cat-management {
    --card-accent: #0d9488;
    --card-shadow: rgba(13, 148, 136, 0.15);
}
.cat-aimanagement {
    --card-accent: #8b5cf6;
    --card-shadow: rgba(139, 92, 246, 0.15);
}
.cat-childcare {
    --card-accent: #ec4899;
    --card-shadow: rgba(236, 72, 153, 0.15);
}
.cat-technology {
    --card-accent: #3b82f6;
    --card-shadow: rgba(59, 130, 246, 0.15);
}

/* ---- Avatar on card ---- */
.bot-card-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.bot-card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* ---- Chat Bubble ---- */
.bot-card-bubble {
    position: absolute;
    top: -2.5rem;
    left: 1rem;
    right: 1rem;
    background: var(--card-accent, var(--accent));
    color: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 10;
}

.bot-card-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.bot-card-chat-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    z-index: 5;
}

.bot-card-chat-btn:hover {
    opacity: 1;
}

/* ---- Platform Plans Section ---- */
.plans-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.plans-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plans-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.plans-header p {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.plans-cascade-note {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text);
    margin-top: 0.75rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.plan-card.plan-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.plan-card.plan-enterprise {
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 100%);
    color: #e2e8f0;
    border-color: rgba(139, 92, 246, 0.4);
}

.plan-card.plan-enterprise .plan-name,
.plan-card.plan-enterprise .plan-price,
.plan-card.plan-enterprise .plan-tagline {
    color: #f1f5f9;
}

.plan-card.plan-enterprise .plan-features li {
    color: #cbd5e1;
}

.plan-card.plan-enterprise .plan-features li::before {
    color: #a78bfa;
}

.plan-badge {
    position: absolute;
    top: -0.7rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.plan-enterprise .plan-badge {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.plan-price-note {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    display: block;
}

.plan-enterprise .plan-price {
    color: #a78bfa;
}

.plan-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.plan-features li {
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
}

.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.plan-cta-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.plan-cta-outline:hover {
    background: var(--accent);
    color: #fff;
}

.plan-cta-primary {
    background: var(--accent);
    color: #fff;
}

.plan-cta-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.plan-cta-enterprise {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
}

.plan-cta-enterprise:hover {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.plan-memory-bar {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.plan-enterprise .plan-memory-bar {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.plan-memory-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    color: var(--text-dim);
    margin-bottom: 0.35rem;
    display: block;
}

.plan-memory-track {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.plan-enterprise .plan-memory-track {
    background: rgba(255, 255, 255, 0.1);
}

.plan-memory-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.plan-memory-fill.fill-basic { width: 2.5%; background: var(--success); }
.plan-memory-fill.fill-standard { width: 25%; background: var(--accent); }
.plan-memory-fill.fill-professional { width: 60%; background: #8b5cf6; }
.plan-memory-fill.fill-enterprise { width: 100%; background: linear-gradient(90deg, #8b5cf6, #6366f1, #a78bfa); }

.plan-memory-count {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    display: block;
}

/* ---- Discount Packs ---- */
.plans-packs {
    margin-top: 2.5rem;
    text-align: center;
}

.plans-packs h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pack-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pack-card.pack-featured {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.12);
}

.pack-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.pack-bots {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.pack-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.pack-savings {
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
}

/* ---- Footer ---- */
.landing-footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    background: var(--bg-secondary);
}

.landing-footer a {
    color: var(--accent);
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

.landing-footer-promise {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02rem;
}

.landing-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.landing-stat {
    text-align: center;
}

.landing-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.landing-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--text-dim);
}

/* ---- Hero Section ---- */
.hero-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02rem;
}

.hero-headline em {
    font-style: normal;
    color: var(--accent);
}

.hero-subline {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-builder-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #00ff88, #0088ff);
    color: #0a0e1a;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.2);
}

.hero-builder-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 255, 136, 0.35);
}

.hero-browse-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-browse-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-trust-strip {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
}

.hero-trust-strip span {
    white-space: nowrap;
}

.hero-trust-strip a {
    color: var(--accent);
    text-decoration: none;
}

.hero-trust-strip a:hover {
    text-decoration: underline;
}

/* ---- How It Works ---- */
.how-it-works {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 2.5rem;
}

.how-it-works h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.how-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.how-step-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.how-step-price {
    display: inline-block;
    background: var(--success);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* ---- Micro-LLM Training Section ---- */
.micro-llm-section {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
}

.micro-llm-inner {
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.micro-llm-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.micro-llm-header {
    text-align: center;
    margin-bottom: 2rem;
}

.micro-llm-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.micro-llm-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.micro-llm-gpu-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #a78bfa;
    font-weight: 600;
}

.micro-llm-gpu-badge .gpu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: gpu-pulse 2s ease-in-out infinite;
}

@keyframes gpu-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.micro-llm-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mlm-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.mlm-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #a78bfa;
    display: block;
}

.mlm-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: #64748b;
    margin-top: 0.25rem;
    display: block;
}

.micro-llm-queue {
    margin-bottom: 1.5rem;
}

.micro-llm-queue h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    margin-bottom: 0.75rem;
}

.mlm-bot-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mlm-bot-row:last-child {
    border-bottom: none;
}

.mlm-bot-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    min-width: 100px;
}

.mlm-bot-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.mlm-bot-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.mlm-bot-fill.status-training {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    animation: training-shimmer 2s ease-in-out infinite;
}

.mlm-bot-fill.status-complete {
    background: #22c55e;
}

.mlm-bot-fill.status-queued {
    background: #64748b;
}

@keyframes training-shimmer {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.mlm-bot-status {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: #64748b;
    min-width: 80px;
    text-align: right;
}

.mlm-bot-status.status-training { color: #a78bfa; }
.mlm-bot-status.status-complete { color: #22c55e; }
.mlm-bot-status.status-queued { color: #64748b; }

.micro-llm-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
}

.micro-llm-footer a {
    color: #a78bfa;
    text-decoration: none;
}

.micro-llm-footer a:hover {
    text-decoration: underline;
}

/* ---- Bot Card Score Badge & Stats Link ---- */
.bot-card {
    position: relative;
}

.bot-card-score {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    z-index: 2;
}
.bot-card-score.score-high {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.bot-card-score.score-mid {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.25);
}
.bot-card-score.score-low {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.bot-card-stats-link {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    transition: color 0.2s;
}
.bot-card-stats-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ---- Hero Corral CTA ---- */
.hero-corral-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    margin-left: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}
.hero-corral-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.35);
}

/* ---- Hero Guide CTA ---- */
.hero-guide-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #10b981, #2563eb);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}
.hero-guide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
}

/* ---- Outdoors Category ---- */
.cat-outdoors {
    --card-accent: #B4B4FF;
    --card-shadow: rgba(180, 180, 255, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .packs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 1.8rem;
        letter-spacing: 0.15rem;
    }
    .landing-tagline {
        font-size: 0.95rem;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .landing-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    .landing-main {
        padding: 1.5rem;
    }
    .landing-stats {
        gap: 1.5rem;
    }
    .ceo-contact-inner {
        flex-direction: column;
        text-align: center;
    }
    .ceo-contact {
        padding: 0 1.5rem;
    }
    .data-promise {
        padding: 0 1.5rem;
    }
    .data-promise-inner {
        flex-direction: column;
        text-align: center;
    }
    .category-title {
        font-size: 1.15rem;
    }
    .plans-section {
        padding: 0 1.5rem;
    }
    .plans-header h2 {
        font-size: 1.4rem;
    }
    .hero-headline {
        font-size: 1.6rem;
    }
    .hero-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .micro-llm-status {
        grid-template-columns: 1fr;
    }
    .micro-llm-section {
        padding: 0 1.5rem;
    }
    .hero-section {
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-logo {
        width: 60px;
        height: 60px;
    }
    .landing-title {
        font-size: 1.4rem;
    }
    .bot-card {
        padding: 1.25rem;
    }
    .landing-header-right {
        position: static;
        justify-content: center;
        margin-top: .5rem;
    }
}

/* ============================================
   Language Switcher Component
   ============================================ */
.lang-switcher {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .75rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-family: var(--font);
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    background: #fff;
    border-color: var(--accent);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-label {
    font-size: .8rem;
}

.lang-chevron {
    font-size: .55rem;
    opacity: .6;
    transition: transform .2s;
}

.lang-switcher-btn[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    padding: .25rem 0;
    margin: 0;
    z-index: 1001;
}

.lang-option {
    padding: .5rem .75rem;
    font-size: .85rem;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--bg-secondary);
}

.lang-option.lang-active {
    background: var(--accent-glow);
    font-weight: 700;
    color: var(--accent);
}

/* ============================================
   RTL Support (Phase 2: Arabic, Hebrew, Farsi)
   ============================================ */
[dir="rtl"] .landing-header-right {
    right: auto;
    left: 1.5rem;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .bot-card-chat-btn {
    right: auto;
    left: .5rem;
}

[dir="rtl"] .hero-pillars,
[dir="rtl"] .card-grid,
[dir="rtl"] .plans-grid,
[dir="rtl"] .packs-grid,
[dir="rtl"] .how-steps {
    direction: rtl;
}

[dir="rtl"] .bot-card-bubble {
    text-align: right;
}

[dir="rtl"] .plan-features {
    padding-right: 1.2rem;
    padding-left: 0;
}
