/* ============================================================================
   /beamlanding — compact conversion page for the Beam (2026-08-16).
   Loads AFTER full-landing-v3.css and only adds this page's own pieces:
   top bar, hero tweaks, the phone mock, the privacy proof list, footer.
   All page colors ride the shared theme channels (light default, dark via a
   stored toggle choice from the main landing) — no new hardcoded darks
   OUTSIDE the phone mock, which depicts the app and the app is always dark.
   Mobile-first.
   ========================================================================== */

/* ----- hero -----
   (The static .bl-top brand header was replaced by the ported v7 .nav on
   2026-08-17 — all nav styling lives in full-landing-v3.css. The fixed bar
   is --v3-nav-h tall, so the hero pays for the clearance.) */
.bl-hero { padding-top: calc(var(--v3-nav-h) + 40px); }
/* Mobile: one centered column (pill > H1 > lede > phone > CTA > chips).
   Desktop >=900px: copy + CTA left, phone right, via grid areas. */
.bl-hero-grid { display: grid; gap: 4px; }
.bl-hero-copy, .bl-hero-mock, .bl-hero-act {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
/* Short two-beat slogan (2026-08-18, back from the long mom-sentence era):
   full display scale again. The mom story lives in #saying. */
.bl-h1 { font-size: clamp(2.1rem, 7.6vw, 3.4rem); max-width: 640px; }
/* Every headline's coral sentence gets its own line */
.bl .h2 .coral { display: block; }
.bl-hero .btn-coral,
#waitlist .btn-coral { min-width: min(320px, 100%); margin-top: 26px; text-decoration: none; }
#waitlist .btn-coral { margin-top: 6px; }
/* The chips' kicker: names who the no-app/no-account promise is for */
.bl-chips-kicker {
    margin: 18px 0 0;
    color: var(--v3-coral-ink);
    font-size: 0.74rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
}
/* Trust chips: the reassurance sentence as three scannable pills */
.bl-chips {
    list-style: none; margin: 10px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.bl-chips li {
    display: inline-flex; align-items: center; gap: 7px;
    border: 1px solid var(--v3-white-14); border-radius: 999px;
    padding: 6px 12px;
    color: var(--color-text-secondary);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap;
}
.bl-chips li::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--v3-coral); box-shadow: 0 0 8px var(--v3-coral-glow);
}
@media (min-width: 900px) {
    .bl-hero { padding-top: calc(var(--v3-nav-h) + 56px); }
    .bl-hero-grid {
        grid-template-areas: "copy mock" "act mock";
        grid-template-columns: 1.1fr 0.9fr;
        column-gap: 48px;
        align-content: center;
    }
    .bl-hero-copy { grid-area: copy; align-items: flex-start; text-align: left; align-self: end; }
    .bl-hero-mock { grid-area: mock; }
    .bl-hero-act { grid-area: act; align-items: flex-start; text-align: left; align-self: start; }
    .bl-hero-copy .lede { margin-left: 0; margin-right: 0; }
    .bl-chips { justify-content: flex-start; }
}

/* ----- the Beam mock: the REAL receiver screen (beam-view) in the shared
   .phone frame — geometry mirrors beam.css .bv-* scaled to the 290px screen.
   The phone shows the app and the app is ALWAYS dark: pin the dark theme
   channels inside the frame so the light landing can't relight it (the
   together.css .tg-phone precedent). ----- */
.bl-phone { margin: 26px auto 0; }
.bl-phone {
    --lp-ink-rgb: 255, 255, 255;
    --lp-paper-rgb: 26, 26, 26;
    --lp-surface-rgb: 37, 37, 37;
    --lp-deep-rgb: 10, 10, 10;
    --lp-panel: #1A1A1A;
    --v3-ink: #1A1A1A;
    --v3-coral-ink: var(--v3-coral);
    --v3-white-04: rgba(255, 255, 255, 0.04);
    --v3-white-08: rgba(255, 255, 255, 0.08);
    --v3-white-14: rgba(255, 255, 255, 0.14);
    --color-bg: #1A1A1A;
    --color-surface: #252525;
    --color-border: #333333;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A0A0A0;
    --color-text-muted: #777777;
    color: var(--color-text-primary);
}

/* The beamed video, full-bleed behind everything */
.bl-brick-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* The way out (beam.css .bv-exit): corner X above the PiP */
.bl-exit {
    position: absolute;
    top: 8px; right: 8px;
    z-index: 45;
    width: 25px; height: 25px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
}

/* The Tinfle mark, upper-left (mirrors the receiver page's .bv-logo) */
.bl-logo-mark {
    position: absolute;
    top: 14px; left: 12px;
    z-index: 30;
    height: 18px;
    opacity: 0.92;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
}

/* The receiver's face (beam.css .bv-pip): top-right, 9:16, white border */
.bl-pip {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 30;
    width: 34%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: block;
}
.bl-pip-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Recording, never concealed (beam.css .bv-rec-dot): blinking coral,
   top-left, to the right of the Tinfle mark */
.bl-rec-dot {
    position: absolute;
    top: 18px; left: 40px;
    z-index: 30;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--v3-coral);
    animation: bl-blink 1.4s ease-in-out infinite;
}
@keyframes bl-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
    .bl-rec-dot { animation: none; }
}

/* The receiver's control pill (beam.css .bv-controls):
   pause / back 10 / start over / loop / hide me */
.bl-controls {
    position: absolute;
    left: 50%; bottom: 16px;
    transform: translateX(-50%);
    z-index: 30;
    display: flex; align-items: center; gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}
.bl-ctrl {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}
.bl-ctrl svg { width: 16px; height: 16px; }

/* The one-breath loop line under the mock */
.bl-caption {
    font-family: var(--v3-font-display);
    font-weight: 800;
    font-size: clamp(1.05rem, 4vw, 1.3rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
    text-wrap: balance;
    max-width: 420px;
    margin: 20px auto 0;
}

/* Inline Noto emoji in body copy (no native emoji in copy). The .bl-story
   variant outguns the kit's .founder img avatar rule (96px circle), which
   otherwise swallows any inline emoji inside the founder card. */
.bl-emoji { width: 1.1em; height: 1.1em; vertical-align: -0.16em; }
.bl-story .bl-emoji {
    width: 1.1em; height: 1.1em;
    border-radius: 0; margin: 0;
    display: inline; vertical-align: -0.16em;
}

/* ----- how it works: 3 brick cards (kit .how-wall/.how-brick) -----
   The kit goes 2-col at 720px, which orphans a third card; keep one narrow
   column until 900px, then all three across. Later-stylesheet cascade wins
   over the kit's same-specificity media rule. */
.bl-how-wall { grid-template-columns: 1fr; max-width: 560px; width: 100%; }
/* cards read left-aligned even inside the section's .center-col */
.bl-how-wall .how-brick { text-align: left; }
@media (min-width: 900px) {
    .bl-how-wall { grid-template-columns: repeat(3, 1fr); max-width: none; align-items: start; }
}

/* ----- the founder story (kit .founder card + .pull-quote inside) ----- */
.bl-founder { max-width: 560px; width: 100%; margin-top: 28px; }
.bl-story {
    text-align: left;
    margin-top: 16px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.bl-story > p { margin: 0 0 14px; }
.bl-story .pull-quote { margin: 18px 0 0; }
/* ----- before / after: the real receipts (2026-08-17) -----
   Side by side ALWAYS (the comparison is the point), even on small phones. */
.bl-ba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 560px;
    width: 100%;
    margin-top: 28px;
    align-items: start;
}
.bl-ba-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.bl-ba-label {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--v3-white-14);
    border-radius: 999px;
    padding: 5px 12px;
    color: var(--color-text-secondary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.bl-ba-label--coral {
    color: var(--v3-coral-ink);
    border-color: var(--v3-coral-ink);
}
.bl-ba-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--v3-white-14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    background: #000;
}
.bl-ba-line {
    margin: 0;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.86rem;
    line-height: 1.45;
}

/* ----- privacy proof: 2x2 icon cards (1-col on small phones) ----- */
.bl-proof {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    max-width: 560px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .bl-proof { grid-template-columns: 1fr 1fr; }
}
.bl-proof li {
    background: rgba(var(--lp-surface-rgb), 0.6);
    border: 1px solid var(--v3-white-08);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
    align-content: start;
}
.bl-proof li svg {
    grid-row: 1 / span 2;
    width: 22px; height: 22px;
    margin-top: 2px;
    color: var(--v3-coral-ink);
}
.bl-proof li b {
    color: var(--color-text-primary);
    font-weight: 800;
    font-size: 0.96rem;
}
.bl-proof li p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ----- member path under the final CTA ----- */
.bl-member { margin: 18px 0 0; font-size: 0.92rem; font-weight: 600; }
.bl-member a { color: var(--color-text-secondary); text-decoration: underline; }
.bl-member a:hover { color: var(--v3-coral-ink); }

/* ----- footer ----- */
.bl-footer {
    border-top: 1px solid var(--v3-white-08);
    padding: 26px 20px 34px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}
.bl-footer a { color: var(--color-text-secondary); text-decoration: none; }
.bl-footer a:hover { color: var(--v3-coral-ink); }
