/* ============================================================================
   BullionPlus — Marketing site (modern redesign)
   Scoped under `.bp-landing` so it never affects the dashboard, admin, or the
   legacy frontend pages that still use the old theme. Uses its own `bpl-*`
   class namespace; existing routes/forms/bindings are preserved in the Blade.
   ============================================================================ */

.bp-landing {
  /* Spec design tokens */
  --bpl-blue: #1283FD;        /* primary CTA */
  --bpl-blue-600: #0E6FE0;    /* hover */
  --bpl-deep: #0B2E8C;
  --bpl-logo: #4466AF;        /* brand swoosh-b on light */
  --bpl-ink: #10182B;
  --bpl-ink-2: #4A5565;
  --bpl-muted: #6B7280;
  --bpl-bg: #ffffff;
  --bpl-border: #EEF1F5;

  --bpl-lavender: #E0EBFC;    /* light-blue feature card */
  --bpl-peri: #8F84AF;        /* purple feature card */
  --bpl-peri-hero: #A6BAFF;   /* hero periwinkle */
  --bpl-peach-1: #E8C9A0;     /* gift-card tan */
  --bpl-peach-2: #DCB888;
  --bpl-sky-1: #E0EBFC;
  --bpl-sky-2: #EAF1FF;
  --bpl-mint: #E9FBF3;
  --bpl-gold: #16A34A;        /* green accent */
  --bpl-footer: #1A1A1A;

  --bpl-radius: 28px;
  --bpl-radius-sm: 16px;
  --bpl-radius-pill: 999px;
  --bpl-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 18px 40px rgba(16, 24, 40, 0.08);
  --bpl-shadow-lg: 0 30px 70px rgba(16, 24, 40, 0.18);
  --bpl-ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--bpl-ink-2);
  background: var(--bpl-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bp-landing img { max-width: 100%; height: auto; }
.bp-landing .bpl-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Serif display for headings */
.bp-landing h1, .bp-landing h2, .bp-landing h3,
.bp-landing .bpl-serif {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  color: var(--bpl-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.bp-landing p { line-height: 1.65; }
.bp-landing a { text-decoration: none; color: inherit; transition: color 0.2s var(--bpl-ease); }

/* ---- Buttons ------------------------------------------------------------ */
.bp-landing .bpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--bpl-radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--bpl-ease), box-shadow 0.18s var(--bpl-ease), background 0.18s var(--bpl-ease);
}
.bp-landing .bpl-btn--primary {
  background: var(--bpl-blue);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(18, 131, 253, 0.65);
}
.bp-landing .bpl-btn--primary:hover {
  background: var(--bpl-blue-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(18, 131, 253, 0.7);
}
.bp-landing .bpl-btn--ghost {
  background: transparent;
  color: var(--bpl-ink);
  border-color: var(--bpl-border);
}
.bp-landing .bpl-btn--ghost:hover { border-color: var(--bpl-blue); color: var(--bpl-blue); }
.bp-landing .bpl-btn--light { background: #fff; color: var(--bpl-ink); }

/* ---- Header ------------------------------------------------------------- */
.bp-landing .bpl-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
}
.bp-landing .bpl-header.is-stuck {
  position: fixed;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--bpl-border);
  padding: 12px 0;
  animation: bplDrop 0.35s var(--bpl-ease);
}
@keyframes bplDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.bp-landing .bpl-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.bp-landing .bpl-logo img { height: 40px; width: auto; }
.bp-landing .bpl-menu { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.bp-landing .bpl-menu a { color: #fff; font-weight: 500; font-size: 1.02rem; opacity: 0.92; }
.bp-landing .bpl-menu a:hover, .bp-landing .bpl-menu a.active { opacity: 1; color: var(--bpl-gold); }
.bp-landing .bpl-nav-actions { display: flex; align-items: center; gap: 18px; }
.bp-landing .bpl-signin { color: #fff; font-weight: 600; }
.bp-landing .bpl-header.is-stuck .bpl-menu a,
.bp-landing .bpl-header.is-stuck .bpl-signin { color: var(--bpl-ink); opacity: 1; }
.bp-landing .bpl-header.is-stuck .bpl-menu a:hover { color: var(--bpl-blue); }
.bp-landing .bpl-burger { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }
/* Logo swap: white over the hero, full-colour once the header sticks */
.bp-landing .bpl-logo .logo-dark { display: none; }
.bp-landing .bpl-header.is-stuck .bpl-logo .logo-white { display: none; }
.bp-landing .bpl-header.is-stuck .bpl-logo .logo-dark { display: inline-block; }
.bp-landing .bpl-header.is-stuck .bpl-burger { color: var(--bpl-ink); }

/* ---- Solid header (inner pages on light backgrounds) ------------------- */
.bp-landing.nav-solid .bpl-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--bpl-border);
  padding: 14px 0;
}
.bp-landing.nav-solid .bpl-menu a,
.bp-landing.nav-solid .bpl-signin { color: var(--bpl-ink); opacity: 1; }
.bp-landing.nav-solid .bpl-menu a:hover { color: var(--bpl-blue); }
.bp-landing.nav-solid .bpl-burger { color: var(--bpl-ink); }
.bp-landing.nav-solid .bpl-logo .logo-white { display: none; }
.bp-landing.nav-solid .bpl-logo .logo-dark { display: inline-block; }

/* Inner-page intro band */
.bp-landing .bpl-page-intro { padding: 130px 0 10px; }
.bp-landing .bpl-page-intro.tinted { background: linear-gradient(180deg, #f6f8ff, #fff); }
.bp-landing .bpl-page-intro h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 0 0 16px; }
.bp-landing .bpl-lead { font-size: 1.16rem; color: var(--bpl-ink-2); max-width: 46em; }
.bp-landing .bpl-eyebrow { color: var(--bpl-blue); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; }
.bp-landing .bpl-center { text-align: center; margin: 0 auto; }

/* ---- Why: feature cards ------------------------------------------------- */
.bp-landing .bpl-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bp-landing .bpl-feature-card {
  background: #fff;
  border: 1px solid var(--bpl-border);
  border-radius: var(--bpl-radius-sm);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--bpl-shadow);
  transition: transform 0.22s var(--bpl-ease), box-shadow 0.22s var(--bpl-ease);
}
.bp-landing .bpl-feature-card:hover { transform: translateY(-4px); box-shadow: var(--bpl-shadow-lg); }
.bp-landing .bpl-feature-ico {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.7rem; color: var(--bpl-blue);
  background: linear-gradient(135deg, #e7efff, #f3f7ff); border: 1px solid #e2ebff;
}
.bp-landing .bpl-feature-card h3 { font-size: 1.3rem; margin: 0 0 10px; }
.bp-landing .bpl-feature-card p { font-size: 0.98rem; margin: 0 0 16px; }
.bp-landing .bpl-link { color: var(--bpl-blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.bp-landing .bpl-link:hover { color: var(--bpl-blue-600); }

/* ---- Products cards ----------------------------------------------------- */
.bp-landing .bpl-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bp-landing .bpl-product-card {
  background: #fafbff; border: 1px solid var(--bpl-border); border-radius: 20px;
  padding: 40px 34px; min-height: 380px; display: flex; flex-direction: column;
  transition: transform 0.22s var(--bpl-ease), box-shadow 0.22s var(--bpl-ease);
}
.bp-landing .bpl-product-card:hover { transform: translateY(-4px); box-shadow: var(--bpl-shadow-lg); }
.bp-landing .bpl-product-card h3 { font-size: 2rem; line-height: 1.05; margin: 0 0 18px; }
.bp-landing .bpl-product-card h3 .brand { color: var(--bpl-ink); display: block; }
.bp-landing .bpl-product-card h3 .accent { display: block; }
.bp-landing .bpl-product-card.sms .accent { color: var(--bpl-blue); }
.bp-landing .bpl-product-card.voice .accent { color: #2563eb; }
.bp-landing .bpl-product-card.whatsapp .accent { color: #16a34a; }
.bp-landing .bpl-product-card p { font-size: 0.98rem; margin: 0 0 24px; }
.bp-landing .bpl-product-card .bpl-link { margin-top: auto; }

/* ---- FAQ ---------------------------------------------------------------- */
.bp-landing .bpl-faq { max-width: 880px; margin: 0 auto; }
.bp-landing .bpl-faq-item { border-bottom: 1px solid var(--bpl-border); }
.bp-landing .bpl-faq-q {
  display: flex; align-items: center; gap: 18px; width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer; padding: 24px 4px; font-family: inherit;
}
.bp-landing .bpl-faq-q .num { color: var(--bpl-muted); font-weight: 600; font-variant-numeric: tabular-nums; }
.bp-landing .bpl-faq-q .q { flex: 1; font-size: 1.12rem; font-weight: 600; color: var(--bpl-ink); }
.bp-landing .bpl-faq-q .ico {
  width: 34px; height: 34px; border-radius: 50%; background: #f1f3f9; color: var(--bpl-ink);
  display: grid; place-items: center; flex: 0 0 auto; transition: all 0.2s var(--bpl-ease);
}
.bp-landing .bpl-faq-item.open .bpl-faq-q .ico { background: var(--bpl-ink); color: #fff; transform: rotate(45deg); }
.bp-landing .bpl-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--bpl-ease); }
.bp-landing .bpl-faq-a p { padding: 0 56px 24px; margin: 0; color: var(--bpl-ink-2); }
.bp-landing .bpl-faq-item.open .bpl-faq-a { max-height: 320px; }

/* ---- Contact ------------------------------------------------------------ */
.bp-landing .bpl-contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.bp-landing .bpl-contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 14px; }
.bp-landing .bpl-contact-channel { display: flex; gap: 16px; align-items: flex-start; margin-top: 26px; }
.bp-landing .bpl-contact-channel .ico { width: 44px; height: 44px; border-radius: 12px; background: #eaf1ff; color: var(--bpl-blue); display: grid; place-items: center; font-size: 1.2rem; flex: 0 0 auto; }
.bp-landing .bpl-contact-channel strong { display: block; color: var(--bpl-ink); font-size: 1.05rem; }
.bp-landing .bpl-contact-card {
  background: #131a2b; color: #fff; border-radius: var(--bpl-radius); padding: 40px;
  box-shadow: var(--bpl-shadow-lg);
}
.bp-landing .bpl-contact-card h2 { color: #fff; font-size: 1.9rem; margin: 0 0 8px; }
.bp-landing .bpl-contact-card .sub { color: rgba(255,255,255,0.7); margin: 0 0 26px; }
.bp-landing .bpl-field { margin-bottom: 18px; }
.bp-landing .bpl-field label { display: block; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.bp-landing .bpl-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 14px 16px; color: #fff; font-family: inherit; font-size: 1rem;
  transition: border-color 0.18s var(--bpl-ease), box-shadow 0.18s var(--bpl-ease);
}
.bp-landing .bpl-input::placeholder { color: rgba(255,255,255,0.4); }
.bp-landing .bpl-input:focus { outline: none; border-color: var(--bpl-blue); box-shadow: 0 0 0 4px rgba(47,107,255,0.25); }
.bp-landing textarea.bpl-input { min-height: 130px; resize: vertical; }
.bp-landing .bpl-contact-card .bpl-btn { width: 100%; justify-content: center; }

/* ---- Auth (sign in / sign up) ------------------------------------------ */
.bp-landing .bpl-auth { min-height: 100vh; display: grid; place-items: center; padding: 120px 0 60px; background: linear-gradient(180deg, #fbfaf7, #fff); }
.bp-landing .bpl-auth-card {
  width: 100%; max-width: 460px; background: #fff; border: 1px solid var(--bpl-border);
  border-radius: var(--bpl-radius); box-shadow: var(--bpl-shadow-lg); padding: 40px;
}
.bp-landing .bpl-auth-card.wide { max-width: 1040px; }
.bp-landing .bpl-auth-logo { text-align: center; margin-bottom: 14px; }
.bp-landing .bpl-auth-logo img { height: 46px; }
.bp-landing .bpl-auth-card h1 { text-align: center; font-size: 1.9rem; margin: 0 0 6px; }
.bp-landing .bpl-auth-card .sub { text-align: center; color: var(--bpl-ink-2); margin: 0 0 24px; }
.bp-landing .bpl-field-light label { display: block; color: var(--bpl-ink); font-weight: 600; font-size: 0.9rem; margin: 0 0 8px; }
.bp-landing .bpl-input-light {
  width: 100%; background: #fff; border: 1px solid #dfe3ec; border-radius: 12px;
  padding: 13px 15px; color: var(--bpl-ink); font-family: inherit; font-size: 1rem;
  transition: border-color 0.18s var(--bpl-ease), box-shadow 0.18s var(--bpl-ease);
}
.bp-landing .bpl-input-light:focus { outline: none; border-color: var(--bpl-blue); box-shadow: 0 0 0 4px rgba(47,107,255,0.15); }
.bp-landing .bpl-field-light { margin-bottom: 18px; }
.bp-landing .bpl-oauth { width: 100%; justify-content: center; border: 1px solid #dfe3ec; background: #fff; color: var(--bpl-ink); margin-bottom: 20px; }
.bp-landing .bpl-divider { display: flex; align-items: center; gap: 14px; color: var(--bpl-muted); font-size: 0.85rem; margin: 18px 0; }
.bp-landing .bpl-divider::before, .bp-landing .bpl-divider::after { content: ""; flex: 1; height: 1px; background: var(--bpl-border); }
.bp-landing .bpl-auth-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; margin: 6px 0 20px; }
.bp-landing .bpl-auth-card .bpl-btn--primary { width: 100%; justify-content: center; }
.bp-landing .bpl-auth-foot { text-align: center; margin-top: 18px; color: var(--bpl-ink-2); font-size: 0.95rem; }
.bp-landing .bpl-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bp-landing .bpl-benefit { display: flex; gap: 14px; margin-bottom: 22px; }
.bp-landing .bpl-benefit .chk { color: var(--bpl-blue); font-size: 1.3rem; flex: 0 0 auto; }
.bp-landing .bpl-benefit strong { display: block; color: var(--bpl-ink); }

@media (max-width: 991.98px) {
  .bp-landing .bpl-why-grid, .bp-landing .bpl-products { grid-template-columns: 1fr; }
  .bp-landing .bpl-contact, .bp-landing .bpl-auth-grid { grid-template-columns: 1fr; }
  .bp-landing .bpl-faq-a p { padding-left: 4px; }
}

/* ---- Hero --------------------------------------------------------------- */
.bp-landing .bpl-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  /* Periwinkle hero (kept deep on the left for legible white headline; no hero photo yet) */
  background:
    radial-gradient(1100px 700px at 80% 18%, rgba(255, 255, 255, 0.28), transparent 58%),
    linear-gradient(108deg, #4d5fc9 0%, #6c7ce0 36%, #8ea2f0 68%, var(--bpl-peri-hero) 100%);
}
.bp-landing .bpl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.bp-landing .bpl-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin: 0 0 20px;
}
.bp-landing .bpl-hero h1 .accent { color: #EAF0FE; font-style: italic; }
.bp-landing .bpl-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  max-width: 30em;
  margin: 0 0 30px;
}
.bp-landing .bpl-hero-media {
  position: relative;
  border-radius: var(--bpl-radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--bpl-shadow-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.04));
}
.bp-landing .bpl-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Country ticker ----------------------------------------------------- */
.bp-landing .bpl-ticker {
  background: #fff;
  border-top: 1px solid var(--bpl-border);
  border-bottom: 1px solid var(--bpl-border);
  overflow: hidden;
  padding: 16px 0;
}
.bp-landing .bpl-ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: bplMarquee 32s linear infinite;
  white-space: nowrap;
}
.bp-landing .bpl-ticker:hover .bpl-ticker-track { animation-play-state: paused; }
.bp-landing .bpl-ticker-item { display: inline-flex; align-items: center; gap: 8px; color: var(--bpl-ink-2); font-weight: 500; font-size: 0.95rem; }
.bp-landing .bpl-ticker-item small { color: var(--bpl-muted); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; }
.bp-landing .bpl-ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bpl-blue); }
@keyframes bplMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Sections / panels -------------------------------------------------- */
.bp-landing .bpl-section { padding: 80px 0; }
.bp-landing .bpl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bp-landing .bpl-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--bpl-radius);
  padding: 44px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.bp-landing .bpl-panel h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 16px; }
.bp-landing .bpl-panel p { font-size: 1.06rem; max-width: 30em; }
.bp-landing .bpl-panel--lavender { background: var(--bpl-lavender); }
.bp-landing .bpl-panel--peri { background: var(--bpl-peri); }
.bp-landing .bpl-panel--peri h2, .bp-landing .bpl-panel--peri p { color: #fff; }
.bp-landing .bpl-panel--sky { background: linear-gradient(135deg, var(--bpl-sky-2), var(--bpl-sky-1)); }
.bp-landing .bpl-panel--peach {
  background: radial-gradient(700px 400px at 0% 10%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, var(--bpl-peach-1), var(--bpl-peach-2));
}
.bp-landing .bpl-panel--peach h2 { color: #6b3f1d; font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.bp-landing .bpl-panel--peach p { color: #6b3f1d; }
.bp-landing .bpl-panel-media { margin-top: auto; }
.bp-landing .bpl-panel-media img { display: block; max-height: 320px; width: auto; margin-top: 24px; }

/* Split panel (image beside text, e.g. gift cards / simple-sleek) */
.bp-landing .bpl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-radius: var(--bpl-radius);
  overflow: hidden;
}
.bp-landing .bpl-split .bpl-split-text { padding: 56px; }
.bp-landing .bpl-split .bpl-split-media { align-self: stretch; min-height: 360px; }
.bp-landing .bpl-split .bpl-split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Flexible plans banner */
.bp-landing .bpl-flex {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  padding: 12px 0 40px;
}
.bp-landing .bpl-flex h2 { font-size: clamp(2rem, 4vw, 3rem); }
.bp-landing .bpl-flex p { font-size: 1.06rem; }

/* Phone mockup frame fallback (when no image asset present) */
.bp-landing .bpl-phone {
  border-radius: 36px;
  background: #0f1729;
  padding: 10px;
  box-shadow: var(--bpl-shadow-lg);
  max-width: 280px;
}
.bp-landing .bpl-phone img { border-radius: 28px; display: block; }

/* ---- Footer ------------------------------------------------------------- */
.bp-landing .bpl-footer { background: var(--bpl-footer); color: rgba(255, 255, 255, 0.66); padding: 70px 0 28px; }
.bp-landing .bpl-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.bp-landing .bpl-footer-brand img { height: 38px; margin-bottom: 18px; }
.bp-landing .bpl-footer-brand p { max-width: 30em; font-size: 0.95rem; }
.bp-landing .bpl-footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 18px; }
.bp-landing .bpl-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bp-landing .bpl-footer ul a { color: rgba(255, 255, 255, 0.66); font-size: 0.95rem; }
.bp-landing .bpl-footer ul a:hover { color: #fff; }
.bp-landing .bpl-footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.bp-landing .bpl-footer-contact i { color: var(--bpl-blue); }
.bp-landing .bpl-socials { display: flex; gap: 12px; margin-top: 22px; }
.bp-landing .bpl-socials a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: #fff; transition: all 0.2s var(--bpl-ease);
}
.bp-landing .bpl-socials a:hover { background: var(--bpl-blue); }
.bp-landing .bpl-footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem;
}
.bp-landing .bpl-footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---- Download the app --------------------------------------------------- */
.bp-landing .bpl-download {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 30px; align-items: center;
  border-radius: var(--bpl-radius); padding: 56px;
  background: linear-gradient(135deg, var(--bpl-sky-2), #fff 70%);
  border: 1px solid var(--bpl-border);
}
.bp-landing .bpl-download h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 8px 0 14px; }
.bp-landing .bpl-download p { font-size: 1.06rem; max-width: 34em; margin: 0 0 26px; }
.bp-landing .bpl-store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.bp-landing .bpl-store {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; border-radius: 14px;
  background: var(--bpl-ink); color: #fff; transition: transform 0.18s var(--bpl-ease), box-shadow 0.18s var(--bpl-ease);
}
.bp-landing .bpl-store:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(16,24,43,0.6); color: #fff; }
.bp-landing .bpl-store i { font-size: 1.9rem; }
.bp-landing .bpl-store span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: 1.05rem; }
.bp-landing .bpl-store small { font-weight: 400; font-size: 0.7rem; opacity: 0.8; }
.bp-landing .bpl-download-art {
  align-self: stretch; min-height: 200px; border-radius: 22px; display: grid; place-items: center;
  background: radial-gradient(420px 280px at 70% 20%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(150deg, var(--bpl-peri-hero), #6c7ce0);
}
.bp-landing .bpl-download-art span {
  font-family: "Fraunces", serif; font-weight: 700; font-size: 9rem; color: #fff; line-height: 1;
  text-shadow: 0 12px 40px rgba(11,46,140,0.35);
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991.98px) {
  .bp-landing .bpl-download { grid-template-columns: 1fr; padding: 36px; }
  .bp-landing .bpl-menu, .bp-landing .bpl-nav-actions .bpl-signin { display: none; }
  .bp-landing .bpl-burger { display: inline-block; }
  .bp-landing .bpl-hero-grid,
  .bp-landing .bpl-grid-2,
  .bp-landing .bpl-split,
  .bp-landing .bpl-flex,
  .bp-landing .bpl-footer-top { grid-template-columns: 1fr; }
  .bp-landing .bpl-split .bpl-split-media { min-height: 280px; }
  .bp-landing .bpl-footer-top { gap: 32px; }
}
@media (max-width: 991.98px) {
  .bp-landing .bpl-menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--bpl-border);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--bpl-shadow-lg);
  }
  .bp-landing .bpl-menu.is-open a { color: var(--bpl-ink); opacity: 1; }
}
@media (max-width: 575.98px) {
  .bp-landing .bpl-hero { padding: 130px 0 70px; }
  .bp-landing .bpl-panel { padding: 32px; min-height: 0; }
  .bp-landing .bpl-split .bpl-split-text { padding: 36px; }
  .bp-landing .bpl-section { padding: 56px 0; }
}
