/* ==========================================================================
   MyPasses - Consumer Vault Styling Sheet
   Color Palette: Electric Blue, Cyan, Slate Dark, Warm Accent
   ========================================================================== */

:root {
    --bg-dark: #070a12;
    --bg-surface: #0f1626;
    --bg-glass: rgba(15, 22, 38, 0.85);
    --border-color: rgba(59, 130, 246, 0.25);
    --border-glow: rgba(59, 130, 246, 0.5);
    
    --color-text-primary: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-blue: #3b82f6;
    --color-cyan: #06b6d4;
    --color-emerald: #10b981;
    --color-gold: #c5a880;

    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-dark); }
body { font-family: var(--font-body); color: var(--color-text-primary); line-height: 1.6; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-blue); }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-blue);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.1);
}

.metrics-row { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 1.5rem; }
.badge-proof { font-size: 0.75rem; font-weight: 800; color: var(--color-emerald); background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3); padding: 6px 12px; border-radius: 50px; }

/* Header */
.app-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--bg-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15); height: 72px;
}
.header-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo-link { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; }
.header-logo { height: 38px; width: auto; }
.logo-accent { color: var(--color-blue); }
.logo-main { color: var(--color-text-primary); }

.main-nav { display: flex; gap: 2rem; }
.nav-item { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 500; }
.nav-item:hover { color: var(--color-blue); }

/* Hero */
.hero-section {
    padding: 160px 2rem 100px; text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
}
.hero-container { max-width: 850px; margin: 0 auto; }
.hero-title { font-size: 3.6rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--color-text-muted); margin-bottom: 2.5rem; font-weight: 300; }

.cta-group { display: flex; gap: 1rem; justify-content: center; }
.btn { padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition-smooth); }
.btn-primary { background: var(--color-blue); color: #fff; }
.btn-primary:hover { background: #2563eb; transform: translateY(-2px); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.15); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* Sections */
.features-section, .uhaep-section, .patents-section, .pricing-section {
    padding: 90px 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.4rem; margin-bottom: 1rem; margin-top: 0.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-muted); max-width: 800px; margin-bottom: 3rem; font-weight: 300; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 2rem; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.2rem; color: var(--color-blue); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.92rem; color: var(--color-text-muted); }

/* UHAEP Section */
.uhaep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.uhaep-card { background: var(--bg-surface); border: 1px solid rgba(6, 182, 212, 0.2); border-radius: 14px; padding: 2rem; }
.uhaep-icon { font-size: 2rem; margin-bottom: 1rem; }
.uhaep-card h4 { color: var(--color-cyan); font-size: 1.15rem; margin-bottom: 0.75rem; }
.uhaep-card p { color: var(--color-text-muted); font-size: 0.92rem; }

/* UHAEP Statute Feature Box */
.uhaep-statute-box {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(15, 22, 38, 0.9) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
}

.statute-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.statute-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.statute-content p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: 1.75rem;
    max-width: 900px;
    line-height: 1.7;
}

.statute-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.statute-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 12px 24px;
}

/* Consumer Patent Grid */
.consumer-patent-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
.patent-card { background: var(--bg-surface); border: 1px solid rgba(59, 130, 246, 0.15); border-radius: 14px; padding: 1.75rem; transition: var(--transition-smooth); }
.patent-card:hover { border-color: var(--color-blue); transform: translateY(-3px); }

.card-status-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.tag-status { font-size: 0.7rem; font-weight: 800; padding: 4px 8px; border-radius: 4px; background: rgba(16, 185, 129, 0.15); color: var(--color-emerald); border: 1px solid rgba(16, 185, 129, 0.3); }
.status-spec { background: rgba(6, 182, 212, 0.15); color: var(--color-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }
.tag-serial { font-family: monospace; font-size: 0.75rem; color: var(--color-text-muted); }

.patent-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.patent-card p { font-size: 0.9rem; color: var(--color-text-muted); }
.card-spec { background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, var(--bg-surface) 100%); }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.pricing-card { background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 2.5rem; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.featured-plan { border-color: var(--color-blue); box-shadow: 0 0 40px rgba(59, 130, 246, 0.15); }

.popular-tag { position: absolute; top: -12px; right: 24px; font-size: 0.7rem; font-weight: 800; padding: 4px 12px; background: var(--color-blue); color: #fff; border-radius: 50px; }

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.price span { font-size: 0.9rem; font-weight: 400; color: var(--color-text-muted); }
.plan-desc { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; }

.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.75rem; padding-left: 1.25rem; position: relative; }
.plan-features li::before { content: "✓"; color: var(--color-emerald); position: absolute; left: 0; font-weight: 800; }
.plan-btn { width: 100%; text-align: center; }

/* Footer */
.app-footer { padding: 50px 2rem 30px; background: #04060c; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-info h5 { color: var(--color-blue); font-size: 1.1rem; margin-bottom: 0.5rem; }
.office-address { color: var(--color-text-muted); font-size: 0.88rem; }
.footer-copyright { color: var(--color-text-muted); font-size: 0.85rem; opacity: 0.6; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .main-nav { display: none; }
}
