/* Outbound Suite — public marketing landing page.
   Restrained navy/blue palette matching the app; strong type, generous space,
   purpose-built (SEO/CTR) but free of neon gradients, glassmorphism and other
   "AI-slop" visual clichés. */

:root {
    --lp-navy: #0f172a;
    --lp-navy-2: #1e293b;
    --lp-bg: #ffffff;
    --lp-bg-soft: #f5f7fb;
    --lp-border: #e6eaf1;
    --lp-text: #0f172a;
    --lp-muted: #5b6472;
    --lp-blue: #2563eb;
    --lp-blue-dark: #1d4ed8;
    --lp-blue-soft: #eef4ff;
    --lp-green: #16a34a;
    --lp-radius: 14px;
    --lp-font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.lp a { color: var(--lp-blue); text-decoration: none; }
.lp a:hover { text-decoration: underline; }
.lp img, .lp svg { max-width: 100%; }

.lp .container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- top navigation ---- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--lp-border);
}
.lp-nav .container {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}
.lp-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--lp-text); }
.lp-brand:hover { text-decoration: none; }
.lp-brand-mark {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(37,99,235,0.35);
}
.lp-brand-mark svg { width: 18px; height: 18px; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.lp-nav-links a {
    color: var(--lp-muted); font-size: 14.5px; font-weight: 500;
    padding: 8px 13px; border-radius: 8px; transition: color .12s ease, background .12s ease;
}
.lp-nav-links a:hover { color: var(--lp-text); background: var(--lp-bg-soft); text-decoration: none; }
.lp-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 14.5px; padding: 10px 18px; border-radius: 9px;
    cursor: pointer; text-decoration: none; transition: background .14s ease, border-color .14s ease, color .14s ease, box-shadow .14s ease;
    border: 1px solid transparent; white-space: nowrap;
}
.lp-btn:hover { text-decoration: none; }
.lp-btn-primary, a.lp-btn-primary { background: var(--lp-blue); color: #fff; }
.lp-btn-primary:hover { background: var(--lp-blue-dark); }
.lp-btn-ghost, a.lp-btn-ghost { background: #fff; color: var(--lp-text); border-color: var(--lp-border); }
.lp-btn-ghost:hover { border-color: #cbd5e1; background: var(--lp-bg-soft); color: var(--lp-text); }
.lp-btn-lg { padding: 14px 26px; font-size: 16px; border-radius: 10px; }

.lp-nav-toggle {
    display: none; margin-left: auto; background: none; border: 1px solid var(--lp-border);
    border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 18px; color: var(--lp-text);
}

/* ---- hero ---- */
.lp-hero {
    position: relative;
    padding: 96px 0 80px;
    text-align: center;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -220px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(closest-side, rgba(37,99,235,0.08), transparent 70%);
    pointer-events: none;
}
.lp-hero .container { position: relative; }
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--lp-blue-dark);
    background: var(--lp-blue-soft); border: 1px solid #dbe6fb;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.lp-hero h1 {
    font-size: 52px; line-height: 1.1; letter-spacing: -0.03em;
    font-weight: 800; margin: 0 auto 20px; max-width: 800px;
}
.lp-hero h1 .accent { color: var(--lp-blue); }
.lp-hero .lede {
    font-size: 19px; color: var(--lp-muted); max-width: 680px; margin: 0 auto 34px;
    line-height: 1.7;
}
.lp-hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.lp-hero-note { margin-top: 16px; font-size: 13px; color: #8a93a2; }

/* ---- social proof strip ---- */
.lp-proof {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-bg-soft);
    padding: 28px 0;
}
.lp-proof .container { text-align: center; }
.lp-proof-label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: #8a93a2; text-transform: uppercase; margin-bottom: 18px; }
.lp-proof-row { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: center; align-items: center; }
.lp-proof-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #5b6472; }

/* ---- section scaffolding ---- */
.lp-section { padding: 92px 0; }
.lp-section-alt { background: var(--lp-bg-soft); }
.lp-section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.lp-section-head .lp-eyebrow { margin-bottom: 16px; }
.lp-section-head h2 { font-size: 34px; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 14px; }
.lp-section-head p { color: var(--lp-muted); font-size: 17px; margin: 0; }

/* ---- feature grid ---- */
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-card {
    background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
    padding: 26px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.lp-card:hover { border-color: #d3dce8; box-shadow: 0 8px 24px rgba(15,23,42,0.06); transform: translateY(-2px); }
.lp-card-icon {
    width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
    font-size: 21px; margin-bottom: 18px;
}
.lp-card h3 { font-size: 18px; letter-spacing: -0.01em; margin: 0 0 8px; font-weight: 700; }
.lp-card p { color: var(--lp-muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ---- how it works ---- */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lp-step {
    background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
    padding: 24px 22px; position: relative; overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.lp-step:hover { border-color: #d3dce8; box-shadow: 0 8px 24px rgba(15,23,42,0.06); transform: translateY(-2px); }
.lp-step::before {
    content: attr(data-step);
    position: absolute; top: 10px; right: 16px;
    font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -0.02em;
    color: #eef2f8; pointer-events: none;
}
.lp-step-num {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--lp-blue); color: #fff; border-radius: 9px;
    font-size: 14px; font-weight: 700;
    margin-bottom: 14px; position: relative;
}
.lp-step:nth-child(2) .lp-step-num { background: #16a34a; }
.lp-step:nth-child(3) .lp-step-num { background: #b45309; }
.lp-step:nth-child(4) .lp-step-num { background: #7c3aed; }
.lp-step h3 { font-size: 16px; margin: 0 0 6px; font-weight: 700; position: relative; }
.lp-step p { color: var(--lp-muted); font-size: 13.5px; margin: 0; line-height: 1.6; position: relative; }

/* ---- pricing ---- */
.lp-pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-tier {
    background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
    padding: 28px 24px; display: flex; flex-direction: column; position: relative;
}
.lp-tier.popular { border: 2px solid var(--lp-blue); box-shadow: 0 12px 32px rgba(37,99,235,0.12); }
.lp-tier-flag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--lp-blue); color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 14px; border-radius: 999px; letter-spacing: 0.02em; white-space: nowrap;
}
.lp-tier-name { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.lp-tier-price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 2px; }
.lp-tier-price .per { font-size: 15px; font-weight: 500; color: var(--lp-muted); letter-spacing: 0; }
.lp-tier-desc { font-size: 13.5px; color: var(--lp-muted); margin: 8px 0 18px; min-height: 40px; }
.lp-tier-features { list-style: none; margin: 0 0 20px; padding: 0; font-size: 14px; flex: 1; }
.lp-tier-features li { padding: 6px 0 6px 24px; position: relative; color: #334155; }
.lp-tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--lp-green); font-weight: 700; }
.lp-tier .lp-btn { width: 100%; text-align: center; }
.lp-pricing-note { text-align: center; font-size: 13px; color: #8a93a2; margin-top: 24px; }

/* ---- testimonials ---- */
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-quote { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 26px; }
.lp-quote .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.lp-quote blockquote { margin: 0 0 18px; font-size: 15px; color: #334155; line-height: 1.65; }
.lp-quote cite { font-style: normal; display: flex; align-items: center; gap: 10px; }
.lp-quote .avatar {
    width: 34px; height: 34px; border-radius: 50%; background: var(--lp-blue-soft);
    color: var(--lp-blue-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.lp-quote .who { line-height: 1.25; }
.lp-quote .who b { display: block; font-size: 14px; }
.lp-quote .who span { font-size: 12.5px; color: var(--lp-muted); }

/* ---- contact ---- */
.lp-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.lp-field { margin-bottom: 16px; }
.lp-field label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; }
.lp-field input, .lp-field textarea {
    width: 100%; padding: 11px 13px; border: 1px solid var(--lp-border); border-radius: 9px;
    font-size: 14.5px; font-family: inherit; color: var(--lp-text); background: #fff;
    transition: border-color .14s ease, box-shadow .14s ease;
}
.lp-field input:focus, .lp-field textarea:focus {
    outline: none; border-color: var(--lp-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.lp-field textarea { resize: vertical; min-height: 120px; }
.lp-contact-form h3 { margin: 0 0 18px; font-size: 20px; }
.lp-form-error {
    background: #fdecec; border-left: 4px solid #dc2626; color: #991b1b;
    padding: 12px 14px; border-radius: 8px; font-size: 13.5px; margin-bottom: 16px;
}
.lp-form-success { text-align: center; padding: 20px 0; }
.lp-form-success h3 { margin: 14px 0 8px; }
.lp-form-success p { color: var(--lp-muted); font-size: 14.5px; margin: 0 0 20px; }
.lp-form-success .lp-btn { margin-top: 4px; }

/* ---- FAQ ---- */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq details {
    border: 1px solid var(--lp-border); border-radius: 12px; margin-bottom: 12px;
    background: #fff; overflow: hidden;
}
.lp-faq summary {
    list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: 15.5px;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; font-size: 22px; color: var(--lp-blue); font-weight: 500; transition: transform .15s ease; }
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq .faq-a { padding: 0 20px 18px; color: var(--lp-muted); font-size: 14.5px; line-height: 1.7; }

/* ---- final CTA ---- */
.lp-cta {
    background: linear-gradient(150deg, var(--lp-navy) 0%, var(--lp-navy-2) 60%, #1d3f8f 100%);
    border-radius: 20px; padding: 68px 40px; text-align: center; color: #fff;
}
.lp-cta h2 { font-size: 34px; letter-spacing: -0.02em; margin: 0 0 14px; font-weight: 800; }
.lp-cta p { color: #b6c2d4; font-size: 16.5px; margin: 0 auto 30px; max-width: 520px; }
.lp-cta .lp-btn-primary, .lp-cta a.lp-btn-primary { background: #fff; color: var(--lp-blue-dark); }
.lp-cta .lp-btn-primary:hover { background: #eef2ff; }

/* ---- footer ---- */
.lp-footer { background: var(--lp-navy); color: #94a3b8; padding: 64px 0 40px; }
.lp-footer > .container:first-child { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; }
.lp-footer-brand .lp-brand { color: #fff; margin-bottom: 14px; }
.lp-footer-brand p { font-size: 13.5px; color: #94a3b8; margin: 0 0 20px; max-width: 260px; line-height: 1.7; }
.lp-footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 16px; }
.lp-footer-col a { display: block; color: #94a3b8; font-size: 14px; padding: 5px 0; }
.lp-footer-col a:hover { color: #fff; text-decoration: none; }
.lp-footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(148,163,184,0.15); font-size: 13px; color: #64748b; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lp-footer-bottom > span:first-child { white-space: nowrap; }
.lp-footer-bottom a { color: #94a3b8; }
.lp-footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- legal pages ---- */
.lp-legal { max-width: 780px; }
.lp-legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.lp-legal-nav a {
    font-size: 13px; font-weight: 600; color: var(--lp-muted);
    padding: 7px 14px; border: 1px solid var(--lp-border); border-radius: 999px;
    transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.lp-legal-nav a:hover { color: var(--lp-text); border-color: #cbd5e1; background: var(--lp-bg-soft); text-decoration: none; }
.lp-legal-nav a.active { color: var(--lp-blue-dark); border-color: var(--lp-blue); background: var(--lp-blue-soft); }
.lp-legal-title { font-size: 34px; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 10px; }
.lp-legal-updated { color: #8a93a2; font-size: 13px; margin: 0 0 8px; }
.lp-legal .lp-prose { border-top: 1px solid var(--lp-border); padding-top: 24px; }
.lp-prose h2 { font-size: 21px; margin: 34px 0 12px; letter-spacing: -0.01em; font-weight: 700; }
.lp-prose h3 { font-size: 16px; margin: 22px 0 8px; font-weight: 700; }
.lp-prose p, .lp-prose li { color: #334155; font-size: 15px; line-height: 1.75; }
.lp-prose ul { padding-left: 22px; margin: 12px 0; }
.lp-prose li { margin-bottom: 8px; }
.lp-prose strong { color: var(--lp-text); }
.lp-prose a { color: var(--lp-blue); }

/* ---- GDPR / cookie consent banner (bottom, non-blocking, horizontal) ---- */
.lp-cookie {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    display: flex; justify-content: center;
    padding: 16px;
    pointer-events: none;
}
.lp-cookie[hidden] { display: none; }
.lp-cookie-card {
    pointer-events: auto;
    background: #fff; border: 1px solid var(--lp-border); border-radius: 14px;
    box-shadow: 0 -8px 40px rgba(15,23,42,0.18), 0 2px 10px rgba(15,23,42,0.06);
    width: 100%; max-width: 960px;
    display: flex; align-items: center; gap: 20px;
    padding: 18px 22px;
    animation: lp-cookie-in .3s ease;
}
@keyframes lp-cookie-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.lp-cookie-body { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 0; }
.lp-cookie-icon {
    width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
    background: var(--lp-blue-soft); color: var(--lp-blue-dark);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.lp-cookie-text { flex: 1; min-width: 0; }
.lp-cookie-text h3 { font-size: 16px; margin: 0 0 4px; letter-spacing: -0.01em; font-weight: 700; }
.lp-cookie-text p { color: var(--lp-muted); font-size: 13.5px; margin: 0; line-height: 1.6; }
.lp-cookie-links { display: flex; gap: 16px; font-size: 13px; margin-top: 8px; }
.lp-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lp-cookie-actions .lp-btn { padding: 10px 18px; font-size: 14px; }

@media (max-width: 720px) {
    .lp-cookie-card { flex-direction: column; align-items: stretch; gap: 14px; }
    .lp-cookie-actions { justify-content: flex-end; }
}

/* ---- responsive ---- */
@media (max-width: 960px) {
    .lp-grid { grid-template-columns: 1fr 1fr; }
    .lp-steps { grid-template-columns: 1fr 1fr; }
    .lp-pricing { grid-template-columns: 1fr 1fr; }
    .lp-quotes { grid-template-columns: 1fr 1fr; }
    .lp-footer > .container:first-child { grid-template-columns: 1fr 1fr; }
    .lp-contact-grid { grid-template-columns: 1fr; }
    .lp-hero h1 { font-size: 40px; }
}
@media (max-width: 720px) {
    .lp-nav-links { display: none; }
    .lp-nav .lp-nav-cta .lp-btn-ghost { display: none; }
    .lp-nav-toggle { display: inline-flex; }
    .lp-nav.open .lp-nav-links {
        display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
        position: absolute; top: 68px; left: 0; right: 0; background: #fff;
        border-bottom: 1px solid var(--lp-border); padding: 12px 24px;
    }
    .lp-hero h1 { font-size: 34px; }
    .lp-hero .lede { font-size: 17px; }
    .lp-grid, .lp-steps, .lp-pricing, .lp-quotes { grid-template-columns: 1fr; }
    .lp-section { padding: 64px 0; }
    .lp-section-head h2, .lp-cta h2 { font-size: 27px; }
    .lp-footer > .container:first-child { grid-template-columns: 1fr; gap: 28px; }
}