/**
 * BY BANKS — Critical CSS (above-the-fold only)
 * 
 * This is the ONLY render-blocking stylesheet on landing pages.
 * Must stay under 14KB uncompressed.
 * Contains ONLY: font-face, reset for visible elements, nav, hero, primary CTA.
 * Everything else loads async via landing-pages.css and global.css.
 */

/* Font — self-hosted Manrope */
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Variable.woff2') format('woff2');
    font-weight: 200 800;
    font-display: swap;
    font-style: normal;
}

/* Minimal reset — above-fold elements only */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #171617;
    color: #f1ede4;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Landing page hero */
.lp-hero {
    padding: 120px 0 80px;
    position: relative;
}
.lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.lp-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #f1ede4;
    margin-bottom: 20px;
    max-width: 720px;
}
.lp-hero__desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(241, 237, 228, 0.75);
    max-width: 600px;
    margin-bottom: 32px;
}
.lp-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-hero__image {
    margin-top: 48px;
}
.lp-hero__image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Primary CTA buttons */
.lp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.lp-cta:hover {
    transform: translateY(-1px);
}
.lp-cta--whatsapp {
    background: #25D366;
    color: #fff;
}
.lp-cta--whatsapp:hover {
    background: #1fba59;
}
.lp-cta--whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.lp-cta--secondary {
    background: rgba(241, 237, 228, 0.1);
    color: #f1ede4;
    border: 1px solid rgba(241, 237, 228, 0.2);
}
.lp-cta--secondary:hover {
    background: rgba(241, 237, 228, 0.15);
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .lp-hero {
        padding: 100px 0 48px;
    }
    .lp-hero__title {
        font-size: 1.75rem;
    }
    .lp-hero__desc {
        font-size: 1rem;
    }
    .lp-hero__cta {
        flex-direction: column;
    }
    .lp-cta {
        justify-content: center;
        width: 100%;
    }
}
