/*
 * Use Case — Loyalty & Rewards
 * Prefix: lr-
 */

body.baat-loyalty-rewards {
  background: #0B1120;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
}
body.baat-loyalty-rewards * { box-sizing: border-box; }
body.baat-loyalty-rewards a { text-decoration: none; }
body.baat-loyalty-rewards p { color: inherit; }

/* ── Shared tokens ── */
.lr-sec-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #0057FF; margin-bottom: 12px;
}
.lr-sec-h {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800; letter-spacing: -.03em; color: #fff; margin: 0; line-height: 1.2;
}
.lr-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; background: #0057FF; color: #fff;
  font-size: 14px; font-weight: 700; border-radius: 10px;
  transition: background .15s, box-shadow .15s;
}
.lr-btn-primary:hover { background: #0046CC; box-shadow: 0 0 24px rgba(0,87,255,.4); color: #fff; }
.lr-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 700; border-radius: 10px;
  transition: background .15s, color .15s, border-color .15s;
}
.lr-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.lr-hero {
  position: relative; padding: 120px 24px 80px;
  overflow: hidden; background: #0B1120;
}
.lr-hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,87,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.lr-hero-bg-orb {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,87,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.lr-hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 860px) {
  .lr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lr-hero-visual { order: -1; }
}

.lr-breadcrumb {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45);
  margin-bottom: 20px; transition: color .15s;
}
.lr-breadcrumb:hover { color: rgba(255,255,255,.75); }

.lr-pill {
  display: inline-flex; align-items: center; padding: 5px 12px;
  background: rgba(0,87,255,.12); border: 1px solid rgba(0,87,255,.25);
  border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #4d8fff; margin-bottom: 20px;
}
.lr-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.12; color: #fff; margin: 0 0 18px;
}
.lr-hero-sub {
  font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.55);
  margin: 0 0 32px; max-width: 440px;
}
.lr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Phone ── */
.lr-hero-visual { position: relative; display: flex; justify-content: center; }
.lr-phone {
  width: 280px; background: #111C2E; border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 0 80px rgba(0,87,255,.2), 0 40px 80px rgba(0,0,0,.6);
}
.lr-phone-sm { width: 260px; }
.lr-phone-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: #25D366;
}
.lr-ph-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.lr-ph-name   { font-size: 13px; font-weight: 700; color: #fff; }
.lr-ph-status { font-size: 11px; color: rgba(255,255,255,.75); }

.lr-phone-chat {
  padding: 14px 12px; background: #0E1C2F;
  display: flex; flex-direction: column; gap: 8px; min-height: 280px;
}
.lr-chat-date { text-align: center; font-size: 10px; color: rgba(255,255,255,.3); margin-bottom: 2px; }
.lr-chat-date-later { margin-top: 4px; }

.lr-msg { display: flex; }
.lr-msg-in  { align-self: flex-start; max-width: 96%; }
.lr-msg-later { opacity: .85; }

.lr-msg-body {
  background: #1A2A40; border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px 14px 14px 14px; padding: 10px 12px;
}
.lr-msg-upgrade {
  border-color: rgba(251,191,36,.25); background: rgba(251,191,36,.06);
}
.lr-msg-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.lr-msg-text  { font-size: 11px; line-height: 1.6; color: rgba(255,255,255,.65); }
.lr-msg-text strong { color: rgba(255,255,255,.9); }
.lr-msg-time  { font-size: 10px; color: rgba(255,255,255,.3); text-align: right; margin-top: 6px; }
.lr-highlight { color: #FBBF24; font-weight: 600; }
.lr-link { color: #4d8fff; font-weight: 600; }

.lr-msg-progress { margin: 8px 0 4px; }
.lr-prog-bar {
  height: 6px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin-bottom: 4px;
}
.lr-prog-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #C0965A, #FBBF24);
}
.lr-prog-labels {
  display: flex; justify-content: space-between;
  font-size: 9px; color: rgba(255,255,255,.35);
}
.lr-prog-gold { color: #FBBF24; font-weight: 700; }

/* Floating stat */
.lr-hero-stat-card {
  position: absolute; bottom: -16px; right: -16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #111C2E; border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.5); white-space: nowrap;
}
.lr-hsc-icon { font-size: 22px; }
.lr-hsc-n { font-size: 18px; font-weight: 800; color: #FBBF24; line-height: 1; }
.lr-hsc-l { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; max-width: 120px; line-height: 1.3; }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.lr-stats {
  background: #0E1829;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06); padding: 40px 24px;
}
.lr-stats-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.lr-stat { flex: 1; min-width: 180px; text-align: center; padding: 12px 24px; }
.lr-stat-n {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.lr-stat-l { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 6px; line-height: 1.4; }
.lr-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.08); flex-shrink: 0; }
@media (max-width: 640px) {
  .lr-stat-sep { display: none; }
  .lr-stat { flex-basis: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .lr-stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.lr-how { padding: 96px 24px; background: #0B1120; }
.lr-how-inner { max-width: 1080px; margin: 0 auto; }
.lr-how-header { text-align: center; margin-bottom: 56px; }
.lr-how-sub {
  font-size: 15px; color: rgba(255,255,255,.45);
  max-width: 520px; margin: 16px auto 0; line-height: 1.65;
}
.lr-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; }
.lr-step {
  flex: 1; min-width: 200px; max-width: 300px;
  background: #111C2E; border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px 22px;
}
.lr-step h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.lr-step p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0; }
.lr-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(251,191,36,.15); border: 1px solid rgba(251,191,36,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #FBBF24; margin-bottom: 14px;
}
.lr-step-arrow { display: flex; align-items: center; padding: 0 12px; margin-top: 40px; }
@media (max-width: 720px) {
  .lr-steps { flex-direction: column; align-items: center; }
  .lr-step-arrow { transform: rotate(90deg); margin: 4px 0; padding: 4px 0; }
  .lr-step { max-width: 100%; width: 100%; }
}

/* ═══════════════════════════════════════════
   DEEP DIVE — shared
═══════════════════════════════════════════ */
.lr-dive { padding: 96px 24px; background: #0B1120; }
.lr-dive-alt { background: #0E1829; }
.lr-dive-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.lr-dive-rev { direction: rtl; }
.lr-dive-rev > * { direction: ltr; }
@media (max-width: 860px) {
  .lr-dive-inner { grid-template-columns: 1fr; gap: 40px; }
  .lr-dive-rev { direction: ltr; }
}
.lr-dive-h {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.2; color: #fff; margin: 0 0 16px;
}
.lr-dive-copy p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0 0 20px; }
.lr-dive-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lr-dive-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.5;
}
.lr-dive-list li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
  background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.25); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4L3.5 6L6.5 2.5' stroke='%23FBBF24' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.lr-dive-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #0057FF; margin-top: 24px; transition: gap .15s;
}
.lr-dive-link:hover { gap: 10px; color: #4d8fff; }

/* ── Tiers card ── */
.lr-tiers-card {
  background: #111C2E; border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lr-tc-header { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.lr-tiers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.lr-tier {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02);
}
.lr-tier-active {
  border-color: rgba(192,150,90,.3); background: rgba(192,150,90,.06);
}
.lr-tier-gold { border-color: rgba(251,191,36,.2); background: rgba(251,191,36,.04); }

.lr-tier-icon { font-size: 20px; flex-shrink: 0; }
.lr-tier-info { flex: 1; }
.lr-tier-name  { font-size: 13px; font-weight: 700; color: #fff; }
.lr-tier-range { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 1px; }
.lr-tier-members { font-size: 11px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.lr-tier-perks {
  font-size: 10px; color: #FBBF24; font-weight: 600;
  text-align: right; max-width: 120px; line-height: 1.3;
}

.lr-tc-footer {
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); text-align: center;
}
.lr-tc-stat { font-size: 12px; color: rgba(255,255,255,.4); }
.lr-tc-stat strong { color: #FBBF24; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.lr-cta {
  position: relative; overflow: hidden;
  padding: 96px 24px; background: #0B1120; text-align: center;
}
.lr-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(251,191,36,.12) 0%, transparent 70%);
  pointer-events: none;
}
.lr-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.lr-cta-h {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.15; color: #fff; margin: 0 0 16px;
}
.lr-cta-sub  { font-size: 16px; color: rgba(255,255,255,.5); margin: 0 0 32px; }
.lr-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.lr-cta-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.3); }
