/* ==========================================================================
   Body By Belmars — Marketing Site
   Design system mirrors the React Native app (constants/Colors.ts + Typography.ts)
   Tokens are documented in :root so a future Gutenberg theme.json can mirror them.
   ========================================================================== */

:root {
    /* Colors — mirrors constants/Colors.ts */
    --bbb-primary: #A4C639;
    --bbb-primary-dim: #8FB02E;
    --bbb-bg: #121212;
    --bbb-bg-elev: #1A1A1A;
    --bbb-card: #1E1E1E;
    --bbb-divider: #2A2A2A;
    --bbb-input-border: #333333;
    --bbb-text: #FFFFFF;
    --bbb-text-secondary: #AAAAAA;
    --bbb-placeholder: #666666;
    --bbb-button-text: #000000;
    --bbb-error: #FF4444;
    --bbb-warning: #FFA500;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Type scale — mirrors constants/Typography.ts (scaled up for web) */
    --fz-display: 72px;
    --fz-h1: 48px;
    --fz-h2: 34px;
    --fz-h3: 20px;
    --fz-body: 17px;
    --fz-body-sm: 15px;
    --fz-caption: 13px;

    /* Layout */
    --container: 1180px;
    --header-h: 72px;

    /* Effects */
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 60px rgba(164, 198, 57, 0.18);
}

@media (max-width: 760px) {
    :root {
        --fz-display: 48px;
        --fz-h1: 38px;
        --fz-h2: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --fz-display: 40px;
        --fz-h1: 32px;
        --fz-h2: 24px;
    }
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bbb-bg);
    color: var(--bbb-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--fz-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--bbb-primary); text-decoration: none; }
a:hover { color: var(--bbb-primary-dim); }

h1, h2, h3, h4 {
    color: var(--bbb-text);
    margin: 0 0 var(--space-4);
    line-height: 1.15;
    letter-spacing: 0;
}
h1 { font-size: var(--fz-h1); font-weight: 800; }
h2 { font-size: var(--fz-h2); font-weight: 800; }
h3 { font-size: var(--fz-h3); font-weight: 700; }
p  { margin: 0 0 var(--space-4); color: var(--bbb-text-secondary); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(164, 198, 57, 0.12);
    border: 1px solid rgba(164, 198, 57, 0.35);
    color: var(--bbb-primary);
    font-size: var(--fz-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--bbb-primary);
    box-shadow: 0 0 12px var(--bbb-primary);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: var(--fz-body);
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: var(--bbb-primary);
    color: var(--bbb-button-text);
}
.btn--primary:hover { background: var(--bbb-primary-dim); color: var(--bbb-button-text); }
.btn--ghost {
    background: transparent;
    color: var(--bbb-text);
    border-color: var(--bbb-input-border);
}
.btn--ghost:hover { border-color: var(--bbb-primary); color: var(--bbb-primary); }
.btn__icon { width: 20px; height: 20px; }

/* App-store dual button group used in hero/footer */
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: 1px solid #2A2A2A;
    border-radius: var(--radius-md);
    min-width: 180px;
    transition: border-color .15s ease, transform .15s ease;
}
.store-btn:hover { border-color: var(--bbb-primary); color: #fff; transform: translateY(-1px); }
.store-btn__icon { width: 28px; height: 28px; flex: none; }
.store-btn__sub { display: block; font-size: 11px; color: #ccc; letter-spacing: 0; }
.store-btn__main { display: block; font-size: 18px; font-weight: 700; line-height: 1.1; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--bbb-divider);
    height: var(--header-h);
    display: flex;
    align-items: center;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bbb-text);
    font-weight: 800;
    letter-spacing: 0;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand span { font-size: 16px; }
.brand span em { color: var(--bbb-primary); font-style: normal; }

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}
.nav a {
    color: var(--bbb-text-secondary);
    font-size: 15px;
    font-weight: 600;
}
.nav a:hover, .nav a.active { color: var(--bbb-text); }
.nav a.btn--primary { color: var(--bbb-button-text); }
.nav a.btn--primary:hover { color: var(--bbb-button-text); }

.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 820px) {
    .nav { display: none; }
    .nav.is-open {
        display: flex;
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        background: var(--bbb-bg-elev);
        padding: var(--space-5);
        border-bottom: 1px solid var(--bbb-divider);
    }
    .nav-toggle { display: inline-flex; }
}

/* ── Section primitives ───────────────────────────────────────────────────── */
.section { padding: var(--space-9) 0; position: relative; }
.section--tight { padding: var(--space-8) 0; }
.section__head { max-width: 720px; margin: 0 auto var(--space-7); text-align: center; }
.section__head .eyebrow { margin-bottom: var(--space-4); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: var(--space-9) 0 var(--space-8);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto auto;
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(164, 198, 57, 0.22), transparent 60%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}
.hero__title {
    font-size: var(--fz-display);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    margin: var(--space-4) 0 var(--space-5);
}
.hero__title em { font-style: normal; color: var(--bbb-primary); }
.hero__sub {
    font-size: 19px;
    color: var(--bbb-text-secondary);
    max-width: 540px;
    margin-bottom: var(--space-6);
}
.hero__cta-note {
    margin: var(--space-3) 0 0;
    color: var(--bbb-text-secondary);
    font-size: var(--fz-body-sm);
}
.hero__phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone {
    position: relative;
    width: 320px;
    height: 640px;
    border-radius: 44px;
    background: #0a0a0a;
    border: 8px solid #1a1a1a;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    overflow: hidden;
}
.phone img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero__stats {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--bbb-divider);
}
.hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--bbb-text);
    letter-spacing: 0;
}
.hero__stat span { font-size: 13px; color: var(--bbb-text-secondary); text-transform: uppercase; letter-spacing: 0; }

@media (max-width: 880px) {
    .hero { padding: var(--space-8) 0; }
    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__stats { justify-content: center; flex-wrap: wrap; }
    .store-buttons { justify-content: center; }
}

/* ── Feature grid ─────────────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.feature-card {
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--bbb-primary);
}
.feature-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(164, 198, 57, 0.14);
    color: var(--bbb-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: var(--space-2); }
.feature-card p { margin: 0; font-size: var(--fz-body-sm); }

@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* Mid-page conversion strip */
.conversion-strip {
    background: #0c0c0c;
    border-top: 1px solid var(--bbb-divider);
    border-bottom: 1px solid var(--bbb-divider);
    padding: var(--space-7) 0;
}
.conversion-strip__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-6);
    align-items: center;
}
.conversion-strip .eyebrow { margin-bottom: var(--space-3); }
.conversion-strip h2 {
    max-width: 720px;
    margin-bottom: var(--space-3);
}
.conversion-strip p {
    max-width: 740px;
    margin: 0;
}
.conversion-strip__actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 880px) {
    .conversion-strip__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .conversion-strip h2,
    .conversion-strip p {
        margin-left: auto;
        margin-right: auto;
    }
    .conversion-strip__actions {
        justify-content: center;
    }
}

/* ── Showcase (alternating image + text) ──────────────────────────────────── */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-8);
}
.showcase:last-child { margin-bottom: 0; }
.showcase--reverse .showcase__media { order: 2; }
.showcase__media {
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bbb-placeholder);
    box-shadow: var(--shadow-card);
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }

/* When a showcase__media holds a phone mockup instead of a raw image,
   keep the phone shape and add padding around it. */
.showcase__media--phone {
    aspect-ratio: auto;
    padding: var(--space-7) var(--space-4);
    background: linear-gradient(160deg, var(--bbb-bg-elev) 0%, var(--bbb-card) 100%);
}
.showcase__media--phone .phone {
    width: 260px;
    height: 540px;
    border-width: 6px;
    border-radius: 36px;
}
@media (max-width: 600px) {
    .showcase__media--phone .phone { width: 220px; height: 460px; }
}
.showcase__text .eyebrow { margin-bottom: var(--space-3); }
.showcase__text h2 { margin-bottom: var(--space-3); }
.showcase__bullets { list-style: none; padding: 0; margin: var(--space-4) 0 0; }
.showcase__bullets li {
    padding-left: 28px;
    position: relative;
    margin-bottom: var(--space-3);
    color: var(--bbb-text);
}
.showcase__bullets li::before {
    content: "";
    position: absolute;
    left: 0; top: 6px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(164, 198, 57, 0.2);
    border: 1px solid var(--bbb-primary);
}
.showcase__bullets li::after {
    content: "";
    position: absolute;
    left: 5px; top: 11px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--bbb-primary);
    border-bottom: 2px solid var(--bbb-primary);
    transform: rotate(-45deg);
}

@media (max-width: 880px) {
    .showcase { grid-template-columns: 1fr; gap: var(--space-5); }
    .showcase--reverse .showcase__media { order: 0; }
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    counter-reset: step;
}
.step {
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: var(--space-4); right: var(--space-5);
    font-size: 48px;
    font-weight: 900;
    color: rgba(164, 198, 57, 0.18);
    letter-spacing: 0;
}
.step h3 { margin-bottom: var(--space-2); }
.step p { margin: 0; font-size: var(--fz-body-sm); }

@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
/* Testimonials */
.testimonials-section {
    background: var(--bbb-bg);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.testimonial-card {
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-card);
}
.testimonial-card blockquote {
    margin: 0 0 var(--space-4);
    color: var(--bbb-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}
.testimonial-card p {
    margin: 0;
    font-size: var(--fz-body-sm);
}
.testimonial-note {
    max-width: 760px;
    margin: var(--space-5) auto 0;
    text-align: center;
    font-size: var(--fz-caption);
}

@media (max-width: 920px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.download-section {
    background: linear-gradient(135deg, #101706 0%, #0e0e0e 100%);
    border-top: 1px solid rgba(164, 198, 57, 0.28);
    border-bottom: 1px solid rgba(164, 198, 57, 0.28);
    padding: var(--space-8) 0;
}
.download-cta,
.cta-band {
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
}
.download-cta h2,
.cta-band h2 { margin-bottom: var(--space-3); }
.download-cta p,
.cta-band p { margin-bottom: var(--space-5); color: #d8e3b9; }
.download-cta .store-buttons,
.cta-band .store-buttons { justify-content: center; }

/* ── Forms (Contact / Support) ────────────────────────────────────────────── */
.form {
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    max-width: 640px;
    margin: 0 auto;
}
.form__row { display: grid; gap: var(--space-2); margin-bottom: var(--space-4); }
.form__row label {
    font-size: var(--fz-body-sm);
    font-weight: 600;
    color: var(--bbb-text);
}
.form__row input,
.form__row textarea,
.form__row select {
    background: var(--bbb-bg-elev);
    border: 1px solid var(--bbb-input-border);
    color: var(--bbb-text);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font: inherit;
    width: 100%;
    transition: border-color .15s ease;
}
.form__row input:focus,
.form__row textarea:focus,
.form__row select:focus {
    border-color: var(--bbb-primary);
    outline: none;
}
.form__row textarea { resize: vertical; min-height: 140px; }
.form__actions { display: flex; justify-content: flex-end; }

/* ── Legal / long-form content (Privacy, Terms) ───────────────────────────── */
.legal {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
}
.legal h1 { margin-bottom: var(--space-2); }
.legal .updated { color: var(--bbb-text-secondary); font-size: var(--fz-body-sm); margin-bottom: var(--space-6); }
.legal h2 { font-size: 22px; margin: var(--space-6) 0 var(--space-3); }
.legal p, .legal li { color: var(--bbb-text-secondary); }
.legal ul { padding-left: 20px; }

/* ── Page header (non-home) ───────────────────────────────────────────────── */
.page-hero {
    padding: var(--space-8) 0 var(--space-6);
    text-align: center;
    border-bottom: 1px solid var(--bbb-divider);
}
.page-hero h1 { font-size: 56px; margin-bottom: var(--space-3); }
.page-hero p { max-width: 640px; margin: 0 auto; }

@media (max-width: 760px) {
    .page-hero h1 { font-size: 40px; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 34px; }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: #0c0c0c;
    border-top: 1px solid var(--bbb-divider);
    padding: var(--space-8) 0 var(--space-5);
    margin-top: var(--space-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}
.footer-grid h4 {
    color: var(--bbb-text);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
    margin-bottom: var(--space-3);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--space-2); }
.footer-grid a { color: var(--bbb-text-secondary); font-size: var(--fz-body-sm); }
.footer-grid a:hover { color: var(--bbb-primary); }
.footer-grid p { font-size: var(--fz-body-sm); margin-top: var(--space-3); }
.footer-bottom {
    padding-top: var(--space-5);
    border-top: 1px solid var(--bbb-divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    color: var(--bbb-text-secondary);
    font-size: var(--fz-caption);
}

@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ── Trust strip (numbers row used on About page) ─────────────────────────── */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-card);
}
.trust-stat { text-align: center; }
.trust-stat strong {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--bbb-primary);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: var(--space-2);
}
.trust-stat span {
    display: block;
    font-size: var(--fz-body-sm);
    color: var(--bbb-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0;
}
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .trust-stat strong { font-size: 34px; } }

/* ── Founder card ─────────────────────────────────────────────────────────── */
.founder {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-7);
    align-items: center;
    background: var(--bbb-card);
    border: 1px solid var(--bbb-divider);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    box-shadow: var(--shadow-card);
}
.founder__photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1c1c1c, #262626);
    border: 3px solid var(--bbb-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bbb-text-secondary);
    font-size: 14px;
    box-shadow: var(--shadow-glow);
    margin: 0 auto;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__name { font-size: 28px; font-weight: 800; margin-bottom: var(--space-1); letter-spacing: 0; }
.founder__role { color: var(--bbb-primary); font-weight: 700; font-size: var(--fz-body-sm); text-transform: uppercase; letter-spacing: 0; margin-bottom: var(--space-4); }
.founder__creds {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}
.founder__cred {
    background: rgba(164, 198, 57, 0.12);
    border: 1px solid rgba(164, 198, 57, 0.35);
    color: var(--bbb-primary);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: var(--fz-caption);
    font-weight: 700;
    letter-spacing: 0;
}
@media (max-width: 760px) {
    .founder { grid-template-columns: 1fr; text-align: center; gap: var(--space-5); padding: var(--space-6); }
    .founder__creds { justify-content: center; }
}

/* ── Pull quote / tagline banner ──────────────────────────────────────────── */
.tagline-banner {
    position: relative;
    text-align: center;
    padding: var(--space-9) var(--space-5);
    border-top: 1px solid var(--bbb-divider);
    border-bottom: 1px solid var(--bbb-divider);
    background:
        radial-gradient(ellipse at center, rgba(164, 198, 57, 0.22) 0%, transparent 60%),
        linear-gradient(180deg, var(--bbb-bg-elev) 0%, var(--bbb-bg) 100%);
    overflow: hidden;
}
.tagline-banner__mark {
    width: 180px;
    height: auto;
    margin: 0 auto var(--space-5);
    display: block;
    filter: drop-shadow(0 0 28px rgba(164, 198, 57, 0.45));
}
.tagline-banner blockquote {
    margin: 0;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    color: var(--bbb-text);
    text-shadow: 0 0 32px rgba(164, 198, 57, 0.18);
}
.tagline-banner blockquote em {
    color: var(--bbb-primary);
    font-style: normal;
    text-shadow: 0 0 24px rgba(164, 198, 57, 0.6);
}
.tagline-banner cite {
    display: block;
    margin-top: var(--space-3);
    color: var(--bbb-text-secondary);
    font-size: var(--fz-body-sm);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0;
}

@media (max-width: 760px) {
    .tagline-banner blockquote { font-size: 34px; }
}

@media (max-width: 480px) {
    .tagline-banner blockquote { font-size: 30px; }
}

/* ── WordPress integration overrides ──────────────────────────────────────────
   WP block themes wrap post content in containers that constrain width and
   add stray padding. These rules let our full-width sections work correctly
   inside .wp-block-post-content / .entry-content. */
.wp-block-post-content,
.entry-content {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.wp-block-post-content > *,
.entry-content > * {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Re-assert the form's narrow centered layout inside post-content wrappers. */
.wp-block-post-content .form,
.entry-content .form {
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Re-assert the legal article container width too. */
.wp-block-post-content .legal,
.entry-content .legal {
    max-width: 820px;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Strip any root padding the block theme injects so our edge-to-edge sections
   reach the actual viewport edges. */
main.wp-block-group {
    padding: 0 !important;
    --wp--style--root--padding-left: 0;
    --wp--style--root--padding-right: 0;
    --wp--style--root--padding-top: 0;
    --wp--style--root--padding-bottom: 0;
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.muted { color: var(--bbb-text-secondary); }
.divider { height: 1px; background: var(--bbb-divider); margin: var(--space-6) 0; border: 0; }
