/* ═══════════════════════════════════════════════════════════════
   BonusClub - Public Styles
   Green sustainability theme, mobile-first
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bl-primary: #16a34a;
    --bl-secondary: #15803d;
    --bl-accent: #fbbf24;
    --bl-bg: #f0fdf4;
    --bl-card: #ffffff;
    --bl-text: #1f2937;
    --bl-text-light: #6b7280;
    --bl-border: #e5e7eb;
    --bl-success: #16a34a;
    --bl-error: #dc2626;
    --bl-radius: 16px;
    --bl-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --bl-shadow-lg: 0 4px 6px rgba(0,0,0,0.07), 0 10px 24px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bl-bg);
    color: var(--bl-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ─────────────────────────────────────────────────── */
.bl-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px 32px;
}

.bl-section {
    margin-bottom: 24px;
    animation: blFadeIn 0.4s ease-out both;
}

.bl-section:nth-child(2) { animation-delay: 0.05s; }
.bl-section:nth-child(3) { animation-delay: 0.1s; }
.bl-section:nth-child(4) { animation-delay: 0.15s; }
.bl-section:nth-child(5) { animation-delay: 0.2s; }
.bl-section:nth-child(6) { animation-delay: 0.25s; }

@keyframes blFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ───────────────────────────────────────────────────── */
.bl-hero {
    background: linear-gradient(135deg, var(--bl-primary), var(--bl-secondary));
    color: #fff;
    padding: 40px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.bl-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.bl-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.bl-hero-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}

.bl-hero h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.bl-hero-slogan {
    font-size: 14px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* ── Cards ──────────────────────────────────────────────────── */
.bl-card {
    background: var(--bl-card);
    border-radius: var(--bl-radius);
    box-shadow: var(--bl-shadow);
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}

.bl-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.bl-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bl-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bl-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bl-text);
}

.bl-card-subtitle {
    font-size: 12px;
    color: var(--bl-text-light);
    margin-top: 1px;
}

/* ── Forms ──────────────────────────────────────────────────── */
.bl-form-group {
    margin-bottom: 14px;
}

.bl-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bl-text);
    margin-bottom: 5px;
}

.bl-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--bl-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--bl-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.bl-input:focus {
    border-color: var(--bl-primary);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}

.bl-input::placeholder {
    color: #9ca3af;
}

/* ── Buttons ────────────────────────────────────────────────── */
.bl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}

.bl-btn:active {
    transform: scale(0.97);
}

.bl-btn-primary {
    background: var(--bl-primary);
    color: #fff;
}

.bl-btn-primary:hover {
    background: var(--bl-secondary);
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.bl-btn-secondary {
    background: var(--bl-bg);
    color: var(--bl-primary);
    border: 1.5px solid rgba(22,163,74,0.2);
}

.bl-btn-secondary:hover {
    background: #dcfce7;
}

.bl-btn-accent {
    background: var(--bl-accent);
    color: #1f2937;
}

.bl-btn-accent:hover {
    background: #f59e0b;
}

.bl-btn-block {
    width: 100%;
}

.bl-btn-sm {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.bl-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Stamp Card ─────────────────────────────────────────────── */
.bl-stamp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 16px 0;
}

.bl-stamp-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2.5px solid var(--bl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    background: #fff;
}

.bl-stamp-dot.filled {
    background: var(--bl-primary);
    border-color: var(--bl-primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(22,163,74,0.35);
    animation: blStampPulse 0.5s ease-out;
}

.bl-stamp-dot.reward-dot {
    border-color: var(--bl-accent);
    background: #fffbeb;
}

.bl-stamp-dot.reward-dot.filled {
    background: var(--bl-accent);
    border-color: var(--bl-accent);
    color: #1f2937;
    box-shadow: 0 0 12px rgba(251,191,36,0.4);
}

@keyframes blStampPulse {
    0%   { transform: scale(0.7); opacity: 0.5; }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.bl-stamp-progress {
    text-align: center;
    font-size: 14px;
    color: var(--bl-text-light);
    margin-top: 8px;
}

.bl-stamp-progress strong {
    color: var(--bl-primary);
    font-size: 16px;
}

.bl-stamp-input-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.bl-stamp-input-row .bl-input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
}

/* ── Referral Section ───────────────────────────────────────── */
.bl-referral-link-box {
    background: var(--bl-bg);
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 14px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bl-referral-link-text {
    flex: 1;
    font-size: 13px;
    color: var(--bl-primary);
    word-break: break-all;
    font-weight: 500;
}

.bl-share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.bl-share-btn {
    flex: 1;
    min-width: 100px;
}

.bl-share-whatsapp {
    background: #25D366;
    color: #fff;
}

.bl-share-whatsapp:hover {
    background: #1da851;
}

.bl-share-email {
    background: #3b82f6;
    color: #fff;
}

.bl-share-email:hover {
    background: #2563eb;
}

.bl-share-copy {
    background: #f3f4f6;
    color: #374151;
}

.bl-share-copy:hover {
    background: #e5e7eb;
}

.bl-referral-stats {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.bl-stat-box {
    flex: 1;
    background: var(--bl-bg);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.bl-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--bl-primary);
    line-height: 1;
}

.bl-stat-label {
    font-size: 11px;
    color: var(--bl-text-light);
    margin-top: 4px;
}

/* ── Rewards Grid ───────────────────────────────────────────── */
.bl-rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 400px) {
    .bl-rewards-grid {
        grid-template-columns: 1fr;
    }
}

.bl-reward-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--bl-shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bl-reward-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bl-shadow-lg);
}

.bl-reward-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: var(--bl-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl-reward-img-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--bl-bg), #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.bl-reward-body {
    padding: 12px;
}

.bl-reward-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--bl-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.bl-reward-desc {
    font-size: 12px;
    color: var(--bl-text-light);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-reward-cost {
    font-size: 12px;
    font-weight: 600;
    color: var(--bl-primary);
    margin-bottom: 8px;
}

.bl-reward-cost .bl-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background: var(--bl-bg);
    font-size: 11px;
}

/* ── Level Progress ─────────────────────────────────────────── */
.bl-level-bar-wrapper {
    margin: 16px 0;
}

.bl-level-bar-track {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.bl-level-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bl-primary), var(--bl-accent));
    border-radius: 5px;
    transition: width 0.6s ease-out;
}

.bl-level-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.bl-level-label {
    font-size: 11px;
    color: var(--bl-text-light);
    text-align: center;
    flex: 1;
    position: relative;
}

.bl-level-label.active {
    color: var(--bl-primary);
    font-weight: 700;
}

.bl-level-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bl-primary), var(--bl-secondary));
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.bl-level-next {
    font-size: 13px;
    color: var(--bl-text-light);
    margin-top: 10px;
    text-align: center;
}

/* ── Alerts ─────────────────────────────────────────────────── */
.bl-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bl-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.bl-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.bl-alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ── Tabs ───────────────────────────────────────────────────── */
.bl-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 3px;
}

.bl-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    color: var(--bl-text-light);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: center;
}

.bl-tab.active {
    background: #fff;
    color: var(--bl-primary);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ── Auth toggle ────────────────────────────────────────────── */
.bl-auth-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.bl-auth-toggle-btn {
    flex: 1;
    padding: 9px 12px;
    border: 1.5px solid var(--bl-border);
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    color: var(--bl-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.bl-auth-toggle-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.bl-auth-toggle-btn:last-child {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.bl-auth-toggle-btn.active {
    background: var(--bl-primary);
    border-color: var(--bl-primary);
    color: #fff;
    font-weight: 600;
}

/* ── Dashboard ──────────────────────────────────────────────── */
.bl-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bl-dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.bl-dashboard-stat {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    box-shadow: var(--bl-shadow);
}

.bl-list {
    list-style: none;
}

.bl-list-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--bl-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bl-list-item:last-child {
    border-bottom: none;
}

.bl-list-item-left {
    flex: 1;
    min-width: 0;
}

.bl-list-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--bl-text);
}

.bl-list-item-sub {
    font-size: 12px;
    color: var(--bl-text-light);
    margin-top: 1px;
}

.bl-list-item-right {
    flex-shrink: 0;
}

.bl-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.bl-badge-pending { background: #fef3c7; color: #92400e; }
.bl-badge-completed { background: #dcfce7; color: #166534; }
.bl-badge-confirmed { background: #dbeafe; color: #1e40af; }
.bl-badge-cancelled { background: #fef2f2; color: #991b1b; }
.bl-badge-rewarded { background: #f3e8ff; color: #6b21a8; }
.bl-badge-contacted { background: #e0f2fe; color: #075985; }
.bl-badge-delivered { background: #dcfce7; color: #166534; }

.bl-points-positive { color: var(--bl-success); font-weight: 600; }
.bl-points-negative { color: var(--bl-error); font-weight: 600; }

/* ── Empty state ────────────────────────────────────────────── */
.bl-empty {
    text-align: center;
    padding: 24px;
    color: var(--bl-text-light);
    font-size: 14px;
}

.bl-empty-icon {
    font-size: 36px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* ── Loading spinner ────────────────────────────────────────── */
.bl-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: blSpin 0.6s linear infinite;
}

@keyframes blSpin {
    to { transform: rotate(360deg); }
}

/* ── Customer bar ───────────────────────────────────────────── */
.bl-customer-bar {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--bl-shadow);
    margin-bottom: 16px;
}

.bl-customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bl-customer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bl-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.bl-customer-name {
    font-weight: 600;
    font-size: 14px;
}

.bl-customer-level {
    font-size: 12px;
    color: var(--bl-text-light);
}

/* ── Footer ─────────────────────────────────────────────────── */
.bl-footer {
    text-align: center;
    padding: 24px 16px;
    color: var(--bl-text-light);
    font-size: 12px;
}

.bl-footer a {
    color: var(--bl-primary);
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   INFO / LANDING PAGE
   ═══════════════════════════════════════════════════════════════ */

.bl-landing {
    overflow-x: hidden;
}

.bl-landing-hero {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 40%, #166534 100%);
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bl-landing-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.bl-landing-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.bl-landing-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
}

.bl-landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bl-landing-nav-logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--bl-primary);
    text-decoration: none;
}

.bl-landing-section {
    padding: 60px 24px;
    max-width: 960px;
    margin: 0 auto;
}

.bl-landing-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bl-text);
}

.bl-landing-section .bl-section-subtitle {
    text-align: center;
    color: var(--bl-text-light);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.bl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .bl-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .bl-features-grid { grid-template-columns: 1fr; }
    .bl-landing-hero h1 { font-size: 28px; }
    .bl-landing-hero p { font-size: 16px; }
}

.bl-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--bl-shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bl-shadow-lg);
}

.bl-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bl-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
}

.bl-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--bl-text);
}

.bl-feature-card p {
    font-size: 13px;
    color: var(--bl-text-light);
    line-height: 1.5;
}

.bl-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.bl-step-card {
    text-align: center;
    padding: 24px;
}

.bl-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bl-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 14px;
}

.bl-step-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.bl-step-card p {
    font-size: 13px;
    color: var(--bl-text-light);
    line-height: 1.5;
}

.bl-cta-section {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 60px 24px;
    text-align: center;
    border-radius: 0;
}

.bl-cta-section h2 {
    color: #fff;
    margin-bottom: 12px;
}

.bl-cta-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 16px;
}

.bl-contact-form {
    max-width: 420px;
    margin: 0 auto;
}

.bl-contact-form .bl-input {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.bl-contact-form .bl-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.bl-contact-form .bl-input:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.bl-contact-form .bl-btn {
    background: #fff;
    color: var(--bl-primary);
    font-weight: 700;
}

.bl-contact-form .bl-btn:hover {
    background: #f0fdf4;
}

.bl-landing-footer {
    text-align: center;
    padding: 32px 24px;
    color: var(--bl-text-light);
    font-size: 13px;
    background: #fff;
    border-top: 1px solid var(--bl-border);
}

/* ── Utility ────────────────────────────────────────────────── */
.bl-text-center { text-align: center; }
.bl-mt-8  { margin-top: 8px; }
.bl-mt-12 { margin-top: 12px; }
.bl-mt-16 { margin-top: 16px; }
.bl-mb-12 { margin-bottom: 12px; }
.bl-mb-16 { margin-bottom: 16px; }
.bl-hidden { display: none !important; }
.bl-text-sm { font-size: 13px; }
.bl-text-xs { font-size: 12px; }
.bl-text-muted { color: var(--bl-text-light); }
.bl-fw-600 { font-weight: 600; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 641px) {
    .bl-container {
        padding: 0 24px 40px;
    }

    .bl-hero {
        padding: 48px 32px 36px;
        border-radius: 0 0 24px 24px;
    }

    .bl-hero h1 {
        font-size: 28px;
    }
}
