/* MLP Marketing Site */
:root {
    --bg: #070b14;
    --bg-card: #111827;
    --bg-elevated: #1a2332;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.35);
    --success: #22c55e;
    --border: rgba(148, 163, 184, 0.15);
    --radius: 14px;
    --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #93c5fd; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.nav-main { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

.nav-main a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-main a:hover { color: var(--text); }

.header-cta { display: flex; gap: 0.65rem; align-items: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: #fff;
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover { color: #fff; box-shadow: 0 12px 36px var(--accent-glow); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--bg-elevated); color: var(--text); }

/* Hero */
.hero {
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .nav-main { display: none; }
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    background: linear-gradient(90deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-trust strong { color: var(--text); display: block; }

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-card h3 { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--bg-elevated);
    border-radius: 10px;
}

.stat-item .num { font-size: 1.5rem; font-weight: 800; color: #93c5fd; }
.stat-item .lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: 2rem; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(59, 130, 246, 0.4); }

.feature-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.step-card { position: relative; padding-left: 0.5rem; }
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); font-size: 0.9rem; }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 20px 50px var(--accent-glow);
    transform: scale(1.02);
}

.plan-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.plan-card h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.plan-summary { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; min-height: 2.8em; }

.plan-price { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-yearly { font-size: 0.85rem; color: var(--muted); margin: 0.35rem 0 1.25rem; }

.plan-features { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.plan-features li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.plan-card .btn { width: 100%; margin-top: auto; }

.pricing-faq {
    max-width: 720px;
    margin: 3rem auto 0;
}

.pricing-faq h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.faq-item { margin-bottom: 1.25rem; }
.faq-item h4 { font-size: 1rem; margin-bottom: 0.35rem; color: #e2e8f0; }
.faq-item p { color: var(--muted); font-size: 0.92rem; }

/* CTA band */
.cta-band {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.12));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.cta-band h2 { font-size: 1.85rem; margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Legal */
.legal-wrap { padding: 3rem 0 5rem; }
.legal-wrap .container { max-width: 780px; }
.legal-wrap h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-body h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: #e2e8f0; }
.legal-body h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.legal-body p, .legal-body li { color: #cbd5e1; margin-bottom: 0.85rem; font-size: 0.95rem; }
.legal-body ul { padding-left: 1.35rem; margin-bottom: 1rem; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 1rem; }
.footer-col a { display: block; color: #cbd5e1; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: var(--muted); padding-top: 1.5rem; border-top: 1px solid var(--border); }
