/* ── RESET & BASE ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #050D1A;
  color: #E8F0F7;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── VARIABLES ───────────────────────────────── */
:root {
  --navy: #050D1A;
  --navy2: #0A1628;
  --navy3: #0F2040;
  --teal: #00B8A9;
  --teal-dim: #009B8D;
  --gold: #F5A623;
  --white: #E8F0F7;
  --gray: #7A90A8;
  --lgray: #1A2840;
  --card: #0D1E35;
  --border: rgba(0,184,169,0.15);
  --glow: 0 0 40px rgba(0,184,169,0.15);
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY ──────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title em {
  font-style: normal;
  color: var(--teal);
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 40px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #00d4c3; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,184,169,0.35); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-hero {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 0 rgba(0,184,169,0);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,184,169,0.4); }
.btn-outline-hero {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-outline-hero:hover { border-color: var(--teal); color: var(--teal); }

/* ── NAV ─────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px; height: 68px;
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
  text-decoration: none; display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.logo-n { color: var(--teal); font-size: 1.6rem; }
.logo-rest { color: var(--white); }
.logo-dot { color: var(--teal); margin: 0 4px; font-size: 0.5rem; }
.logo-africa { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.88rem;
  padding: 6px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 40px 20px;
  border-top: 1px solid var(--border); background: rgba(5,13,26,0.97);
}
.mobile-menu a { color: var(--gray); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
.mobile-cta { margin-top: 16px; text-align: center; }
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ── HERO ────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
}
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, #00B8A9, transparent); top: -100px; left: -100px; animation: drift1 12s ease-in-out infinite; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, #0A2540, transparent); top: 20%; right: 10%; animation: drift2 15s ease-in-out infinite; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, #F5A623, transparent); bottom: -100px; left: 40%; opacity: 0.15; animation: drift3 10s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,184,169,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,184,169,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 60px 40px;
  flex: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,184,169,0.1); border: 1px solid rgba(0,184,169,0.25);
  color: var(--teal); font-size: 0.8rem; font-family: 'DM Mono', monospace;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
.hero-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95; margin-bottom: 28px;
}
.hero-title .line1 { display: block; color: var(--gray); font-size: 0.55em; animation: fadeUp 0.7s 0.1s ease both; }
.hero-title .line2 { display: block; color: var(--white); animation: fadeUp 0.7s 0.2s ease both; }
.hero-title .line3 { display: block; color: var(--teal); animation: fadeUp 0.7s 0.3s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-sub {
  font-size: 1.15rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 36px; max-width: 460px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.6s ease both;
}
.stat { text-align: left; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--teal); }
.stat span { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--teal); }
.stat p { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* HERO PHONE */
.hero-phone {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  z-index: 2; animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 12px))} }
.phone-frame {
  width: 280px; background: #0A1628;
  border: 2px solid rgba(0,184,169,0.3);
  border-radius: 32px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,184,169,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-screen { background: #050D1A; border-radius: 24px; overflow: hidden; }
.phone-ui { padding: 20px 16px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ph-greeting { font-size: 0.72rem; color: var(--gray); }
.ph-avatar { width: 28px; height: 28px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--navy); }
.phone-balance { background: linear-gradient(135deg, #0F2040, #1a3560); border-radius: 16px; padding: 16px; margin-bottom: 16px; border: 1px solid rgba(0,184,169,0.15); }
.bal-label { font-size: 0.65rem; color: var(--gray); margin-bottom: 4px; }
.bal-amount { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.bal-amount span { font-size: 0.9rem; color: var(--gray); }
.bal-sub { font-size: 0.6rem; color: var(--teal); margin-top: 6px; }
.phone-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 16px; }
.pa { text-align: center; }
.pa-icon { width: 36px; height: 36px; background: var(--lgray); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 4px; font-size: 0.9rem; }
.pa p { font-size: 0.6rem; color: var(--gray); }
.phone-insight { background: rgba(0,184,169,0.08); border: 1px solid rgba(0,184,169,0.2); border-radius: 10px; padding: 8px 10px; display: flex; gap: 8px; margin-bottom: 12px; }
.insight-icon { font-size: 0.8rem; flex-shrink: 0; }
.phone-insight p { font-size: 0.62rem; color: var(--gray); line-height: 1.4; }
.phone-insight p strong { color: var(--teal); }
.phone-txns { display: flex; flex-direction: column; gap: 8px; }
.txn { display: flex; align-items: center; gap: 8px; }
.txn-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.txn-dot.food { background: #00B8A9; }
.txn-dot.inc { background: #27AE60; }
.txn-dot.trans { background: #F5A623; }
.txn-info { flex: 1; }
.txn-info p { font-size: 0.62rem; color: var(--white); }
.txn-info span { font-size: 0.55rem; color: var(--gray); }
.txn-amt { font-size: 0.68rem; font-weight: 600; font-family: 'DM Mono', monospace; flex-shrink: 0; }
.txn-amt.out { color: #E74C3C; }
.txn-amt.in { color: #27AE60; }
@media(max-width:1100px) { .hero-phone { display: none; } }

/* ── TRUST STRIP ─────────────────────────────── */
.trust-strip {
  background: var(--lgray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden;
}
.trust-inner {
  display: flex; gap: 32px; align-items: center;
  white-space: nowrap;
  animation: scrollTrust 20s linear infinite;
  width: max-content;
  font-size: 0.82rem; color: var(--gray);
}
@keyframes scrollTrust { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ts-div { opacity: 0.3; }

/* ── PROBLEMS ────────────────────────────────── */
#problems { background: var(--navy2); }
.problems-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.problem-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.problem-card:hover { transform: translateY(-4px); border-color: rgba(0,184,169,0.3); box-shadow: var(--glow); }
.problem-card:hover::before { opacity: 1; }
.pc-num { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--teal); margin-bottom: 12px; }
.problem-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.problem-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
@media(max-width:900px) { .problems-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .problems-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ────────────────────────────── */
#how { background: var(--navy); }
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.how-step {
  display: flex; gap: 32px; padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover .step-num { color: var(--teal); }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,0.08); line-height: 1; flex-shrink: 0; width: 80px;
  transition: color 0.3s;
}
.step-body h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-body p { color: var(--gray); line-height: 1.7; font-size: 0.92rem; }
.step-body strong { color: var(--teal); }

/* ── PRODUCTS ────────────────────────────────── */
#products { background: var(--navy2); }
.products-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.ptab {
  background: var(--card); border: 1px solid var(--border);
  color: var(--gray); font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  padding: 8px 18px; border-radius: 100px; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.ptab:hover { color: var(--white); border-color: rgba(0,184,169,0.3); }
.ptab.active { background: var(--teal); color: var(--navy); border-color: var(--teal); font-weight: 600; }
.products-content { position: relative; }
.product-panel {
  display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  animation: fadeIn 0.3s ease;
}
.product-panel.active { display: grid; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.pp-text h3 { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.pp-text p { color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.pp-text ul { list-style: none; margin-bottom: 28px; }
.pp-text ul li { color: var(--gray); font-size: 0.88rem; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pp-text ul li::before { content: ''; }
.pp-visual { display: flex; justify-content: center; }
@media(max-width:900px) { .product-panel { grid-template-columns: 1fr; } }

/* NexaIQ visual */
.iq-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 360px; }
.iq-month { font-size: 0.78rem; color: var(--teal); font-family: 'DM Mono', monospace; margin-bottom: 16px; }
.iq-bars { display: flex; flex-direction: column; gap: 12px; }
.iq-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; }
.iq-bar-row span:first-child { width: 80px; color: var(--gray); flex-shrink: 0; }
.iq-bar-row span:last-child { width: 50px; color: var(--white); text-align: right; font-family: 'DM Mono', monospace; font-size: 0.7rem; }
.iq-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.iq-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.unaccounted .iq-bar-row span:first-child, .unaccounted .iq-bar-row span:last-child { color: var(--gold); }
.iq-insight { background: rgba(0,184,169,0.08); border-radius: 8px; padding: 10px 12px; margin-top: 16px; font-size: 0.78rem; color: var(--gray); display: flex; gap: 8px; }

/* Score visual */
.score-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 300px; text-align: center; }
.score-card > p { font-size: 0.78rem; color: var(--gray); margin-bottom: 8px; }
.gauge-svg { width: 100%; max-width: 200px; }
.gauge-fill { transition: stroke-dashoffset 1.5s ease; }
.score-factors { display: flex; flex-direction: column; gap: 6px; margin: 12px 0; text-align: left; }
.sf { font-size: 0.78rem; padding: 4px 8px; border-radius: 4px; }
.sf.good { color: #27AE60; background: rgba(39,174,96,0.1); }
.sf.med { color: var(--gold); background: rgba(245,166,35,0.1); }
.score-loan { background: rgba(0,184,169,0.1); border: 1px solid rgba(0,184,169,0.2); border-radius: 8px; padding: 10px; font-size: 0.8rem; color: var(--gray); }
.score-loan strong { color: var(--teal); }

/* Shield visual */
.shield-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 360px; }
.shield-icon { font-size: 2rem; margin-bottom: 8px; }
.shield-card h4 { font-family: 'Syne', sans-serif; color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.shield-alerts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.alert-row { display: flex; align-items: flex-start; gap: 10px; padding: 10px; border-radius: 8px; }
.alert-row.blocked { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.2); }
.alert-row.safe { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.2); }
.alert-row.warn { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); }
.ar-status { font-size: 0.65rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; padding-top: 2px; }
.blocked .ar-status { color: #E74C3C; }
.safe .ar-status { color: #27AE60; }
.warn .ar-status { color: var(--gold); }
.ar-info p { font-size: 0.78rem; color: var(--white); }
.ar-info small { font-size: 0.68rem; color: var(--gray); }
.shield-foot { font-size: 0.75rem; color: #27AE60; text-align: center; }

/* NeXchange visual */
.xchange-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 340px; }
.xc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.xc-country { text-align: center; }
.flag { font-size: 2rem; }
.xc-country p { font-size: 0.75rem; color: var(--gray); }
.xc-country strong { font-family: 'DM Mono', monospace; font-size: 0.9rem; color: var(--white); }
.xc-arrow { font-size: 1.4rem; color: var(--teal); }
.xc-comparison { display: flex; gap: 10px; margin-bottom: 14px; }
.xc-them, .xc-us { flex: 1; padding: 10px; border-radius: 8px; text-align: center; }
.xc-them { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.2); }
.xc-us { background: rgba(0,184,169,0.1); border: 1px solid rgba(0,184,169,0.2); }
.xc-them span, .xc-us span { font-size: 0.7rem; color: var(--gray); display: block; margin-bottom: 4px; }
.bad { color: #E74C3C; font-size: 0.82rem; }
.good { color: var(--teal); font-size: 0.82rem; }
.xc-save { background: rgba(0,184,169,0.1); border-radius: 8px; padding: 10px; text-align: center; font-size: 0.8rem; color: var(--gray); }
.xc-save strong { color: var(--teal); }

/* NexaLearn visual */
.learn-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 320px; }
.learn-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.78rem; color: var(--gray); }
.learn-pts { background: var(--teal); color: var(--navy); padding: 2px 8px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; }
.learn-card h4 { font-family: 'Syne', sans-serif; color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.learn-progress { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-bottom: 12px; overflow: hidden; }
.lp-fill { height: 100%; background: var(--teal); border-radius: 2px; }
.learn-body { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 16px; }
.learn-langs { display: flex; gap: 6px; margin-bottom: 12px; }
.ll { padding: 3px 8px; background: var(--lgray); border-radius: 4px; font-size: 0.68rem; color: var(--gray); cursor: pointer; }
.ll.active { background: var(--teal); color: var(--navy); font-weight: 700; }
.learn-points { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--gray); }
.redeem { color: var(--teal); cursor: pointer; font-size: 0.75rem; }

/* NexaAgric visual */
.agric-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 340px; }
.agric-header { font-size: 0.78rem; color: var(--teal); font-family: 'DM Mono', monospace; margin-bottom: 16px; }
.agric-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.ag-stat { background: var(--lgray); border-radius: 8px; padding: 10px 8px; text-align: center; }
.ag-stat span { font-size: 0.65rem; color: var(--gray); display: block; margin-bottom: 4px; }
.ag-stat strong { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--white); }
.agric-alert, .agric-weather { display: flex; gap: 8px; padding: 10px; border-radius: 8px; margin-bottom: 8px; font-size: 0.78rem; }
.agric-alert { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); color: var(--gray); }
.agric-weather { background: rgba(0,184,169,0.08); border: 1px solid rgba(0,184,169,0.15); color: var(--gray); }

/* ── TIERS ───────────────────────────────────── */
#tiers { background: var(--navy); }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.tier-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px;
  position: relative; transition: all 0.3s;
}
.tier-card:hover { transform: translateY(-4px); border-color: rgba(0,184,169,0.25); }
.tier-featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--glow); }
.tier-badge {
  display: inline-block; font-size: 0.7rem; font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 4px; margin-bottom: 12px;
  background: rgba(0,184,169,0.1); color: var(--teal);
}
.tier-badge.pop { background: var(--teal); color: var(--navy); }
.tier-badge.elite { background: rgba(245,166,35,0.1); color: var(--gold); }
.tier-card h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.tier-price { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--teal); margin-bottom: 8px; }
.tier-price span { font-size: 0.85rem; color: var(--gray); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.tier-desc { font-size: 0.83rem; color: var(--gray); margin-bottom: 20px; line-height: 1.5; }
.tier-features { list-style: none; margin-bottom: 28px; }
.tier-features li { font-size: 0.83rem; color: var(--gray); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.btn-tier {
  display: block; width: 100%; text-align: center;
  background: var(--lgray); color: var(--white);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem;
  padding: 12px; border-radius: 8px; text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s; cursor: pointer;
}
.btn-tier:hover { background: var(--navy3); border-color: var(--teal); }
.featured-btn { background: var(--teal) !important; color: var(--navy) !important; border-color: var(--teal) !important; }
.featured-btn:hover { background: #00d4c3 !important; box-shadow: 0 8px 24px rgba(0,184,169,0.35); }
@media(max-width:900px) { .tiers-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ── DEMO ────────────────────────────────────── */
#demo { background: var(--navy2); }
.demo-intro { color: var(--gray); margin-bottom: 36px; font-size: 0.95rem; }
.demo-box { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.demo-inputs h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--white); margin-bottom: 10px; }
.demo-input, .exp-amt, .modal-input {
  width: 100%; background: var(--lgray); border: 1px solid var(--border);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  padding: 10px 14px; border-radius: 8px; outline: none; transition: border-color 0.2s;
  margin-bottom: 12px;
}
.demo-input:focus, .modal-input:focus { border-color: var(--teal); }
.expense-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.exp-row { display: flex; gap: 8px; }
.exp-cat {
  flex: 1; background: var(--lgray); border: 1px solid var(--border);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  padding: 10px 12px; border-radius: 8px; outline: none;
}
.exp-amt { flex: 1; margin-bottom: 0; }
.add-exp { width: 100%; margin-bottom: 12px; font-size: 0.85rem; padding: 8px; }
.analyse-btn { width: 100%; margin-top: 4px; }
.demo-output { min-height: 300px; display: flex; align-items: flex-start; }
.demo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 200px; gap: 12px; }
.dp-icon { font-size: 3rem; }
.demo-placeholder p { color: var(--gray); text-align: center; font-size: 0.9rem; line-height: 1.6; }
.analysis-result { width: 100%; }
.ar-header { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 16px; }
.ar-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.ar-bar-row { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; }
.ar-bar-row span:first-child { width: 100px; color: var(--gray); flex-shrink: 0; }
.ar-bar-row span:last-child { width: 60px; text-align: right; color: var(--white); font-family: 'DM Mono', monospace; font-size: 0.72rem; flex-shrink: 0; }
.ar-bar { flex: 1; height: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.ar-fill { height: 100%; border-radius: 5px; background: var(--teal); }
.ar-insights { background: rgba(0,184,169,0.08); border: 1px solid rgba(0,184,169,0.15); border-radius: 10px; padding: 14px; }
.ar-insight-item { font-size: 0.8rem; color: var(--gray); padding: 4px 0; line-height: 1.5; }
.ar-insight-item strong { color: var(--teal); }
.ar-score { background: var(--lgray); border-radius: 8px; padding: 10px 14px; margin-top: 12px; font-size: 0.82rem; color: var(--gray); }
.ar-score strong { color: var(--white); }
@media(max-width:800px) { .demo-box { grid-template-columns: 1fr; } }

/* ── IMPACT ──────────────────────────────────── */
#impact { background: var(--navy); }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.impact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.imp-icon { font-size: 2rem; margin-bottom: 12px; }
.impact-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.impact-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
@media(max-width:900px) { .impact-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .impact-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ────────────────────────────── */
#testimonials { background: var(--navy2); }
.testi-slider { overflow: hidden; border-radius: 12px; }
.testi-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.testi-card {
  flex-shrink: 0; width: calc(33.33% - 14px);
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
}
.testi-quote { font-size: 0.92rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '"'; color: var(--teal); font-size: 1.5rem; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.ta-avatar { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.testi-author span { font-size: 0.75rem; color: var(--gray); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: all 0.2s; }
.testi-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }
@media(max-width:900px) { .testi-card { width: calc(60% - 10px); } }
@media(max-width:600px) { .testi-card { width: calc(90% - 10px); } }

/* ── ABOUT ───────────────────────────────────── */
#about { background: var(--navy); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 0.93rem; }
.about-stats { display: flex; gap: 32px; margin-top: 36px; }
.as span { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--teal); display: block; }
.as p { font-size: 0.78rem; color: var(--gray); }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.3s; }
.pillar:hover { border-color: rgba(0,184,169,0.3); transform: translateY(-2px); }
.pillar-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.pillar h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pillar p { font-size: 0.78rem; color: var(--gray); }
@media(max-width:900px) { .about-inner { grid-template-columns: 1fr; } }

/* ── USSD STRIP ──────────────────────────────── */
.ussd-strip { background: var(--teal); padding: 40px; }
.ussd-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.ussd-inner h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.ussd-inner p { color: rgba(5,13,26,0.6); font-size: 0.9rem; margin-top: 4px; }
.ussd-code { display: flex; align-items: center; gap: 12px; }
.ussd-code span { color: rgba(5,13,26,0.6); font-size: 0.88rem; }
.ussd-code strong { font-family: 'DM Mono', monospace; font-size: 1.6rem; font-weight: 700; color: var(--navy); background: rgba(5,13,26,0.1); padding: 8px 16px; border-radius: 8px; }

/* ── CTA ─────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, #0A1628, #0F2040);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 100px 40px; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.cta-inner p { color: var(--gray); margin-bottom: 36px; font-size: 1rem; }
.cta-sub { font-size: 0.8rem; color: var(--gray); margin-top: 16px; }

/* ── FOOTER ──────────────────────────────────── */
#footer { background: #020810; padding-top: 60px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px 40px; display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; background: var(--lgray); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; font-size: 0.8rem; transition: all 0.2s; }
.footer-socials a:hover { background: var(--teal); color: var(--navy); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fl-col h5 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.fl-col a { display: block; color: var(--gray); text-decoration: none; font-size: 0.8rem; padding: 3px 0; transition: color 0.2s; }
.fl-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 40px; max-width: 1240px; margin: 0 auto; }
.footer-bottom p { font-size: 0.75rem; color: rgba(122,144,168,0.6); line-height: 1.6; }
@media(max-width:900px) { .footer-inner { grid-template-columns: 1fr; } .footer-links { grid-template-columns: repeat(2,1fr); } }

/* ── MODALS ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(2,8,16,0.85);
  backdrop-filter: blur(10px); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px; width: 100%; max-width: 480px;
  margin: 20px; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-sm { max-width: 380px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--lgray); border: none; color: var(--gray); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--navy3); color: var(--white); }
.modal-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal); margin-bottom: 8px; }
.modal h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.modal-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-tier-select { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tier-opt { display: block; cursor: pointer; }
.tier-opt input { display: none; }
.tier-opt-inner {
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
  transition: all 0.2s; background: var(--lgray);
}
.tier-opt input:checked ~ .tier-opt-inner { border-color: var(--teal); background: rgba(0,184,169,0.08); }
.tier-opt-inner strong { display: block; color: var(--white); font-size: 0.9rem; }
.tier-opt-inner span { font-size: 0.78rem; color: var(--gray); }
.modal-next, .modal-back { width: 100%; margin-bottom: 8px; }
.modal-nav { display: flex; gap: 10px; }
.modal-nav .modal-next { width: 70%; margin-bottom: 0; }
.modal-nav .modal-back { width: 30%; margin-bottom: 0; }
.modal-login { font-size: 0.82rem; color: var(--gray); text-align: center; margin-top: 12px; }
.modal-login a { color: var(--teal); text-decoration: none; }
.modal-id-note { background: rgba(0,184,169,0.08); border: 1px solid rgba(0,184,169,0.15); border-radius: 8px; padding: 10px 12px; font-size: 0.8rem; color: var(--gray); display: flex; gap: 8px; margin-bottom: 8px; }
.face-btn { width: 100%; margin-bottom: 12px; font-size: 0.85rem; }
.pin-input-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; }
.pin-box {
  width: 46px; height: 56px; background: var(--lgray); border: 1px solid var(--border);
  border-radius: 10px; text-align: center; font-size: 1.4rem; color: var(--teal);
  font-family: 'DM Mono', monospace; outline: none; transition: all 0.2s;
}
.pin-box:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(0,184,169,0.2); }
.modal-form { display: flex; flex-direction: column; }
.success-icon { font-size: 3.5rem; text-align: center; margin-bottom: 16px; }
.success-details { background: var(--lgray); border-radius: 10px; padding: 16px; margin-bottom: 20px; font-size: 0.82rem; color: var(--gray); line-height: 1.8; }
#done-btn { width: 100%; }

/* ── DASHBOARD ───────────────────────────────── */
.dashboard-overlay {
  position: fixed; inset: 0; background: var(--navy); z-index: 8000;
  display: none; opacity: 0; transition: opacity 0.3s;
}
.dashboard-overlay.open { display: flex; opacity: 1; }
.dashboard { display: flex; width: 100%; height: 100vh; }
.db-sidebar {
  width: 220px; flex-shrink: 0; background: var(--card);
  border-right: 1px solid var(--border); display: flex; flex-direction: column;
  padding: 24px 0;
}
.db-logo { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--teal); padding: 0 20px; margin-bottom: 32px; }
.db-nav { display: flex; flex-direction: column; flex: 1; }
.db-link {
  display: block; padding: 12px 20px; color: var(--gray); text-decoration: none;
  font-size: 0.85rem; border-left: 2px solid transparent; transition: all 0.2s;
}
.db-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.db-link.active { color: var(--teal); border-left-color: var(--teal); background: rgba(0,184,169,0.08); }
.db-logout {
  margin: 20px; background: none; border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray); border-radius: 8px; padding: 8px; cursor: pointer;
  font-size: 0.8rem; transition: all 0.2s;
}
.db-logout:hover { border-color: #E74C3C; color: #E74C3C; }
.db-content { flex: 1; overflow-y: auto; padding: 32px; }
.db-panel { display: none; }
.db-panel.active { display: block; }
.db-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.db-header h2 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.db-date { font-size: 0.8rem; color: var(--gray); }
.db-balance-card {
  background: linear-gradient(135deg, #0F2040, #1a3560);
  border: 1px solid rgba(0,184,169,0.2); border-radius: 20px; padding: 28px;
  margin-bottom: 20px;
}
.db-balance-card > p { font-size: 0.8rem; color: var(--gray); margin-bottom: 6px; }
.db-balance-card h1 { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.db-health { font-size: 0.82rem; color: var(--teal); margin-bottom: 20px; }
.db-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dca-btn {
  background: rgba(0,184,169,0.1); border: 1px solid rgba(0,184,169,0.2);
  color: var(--teal); padding: 8px 16px; border-radius: 8px; cursor: pointer;
  font-size: 0.82rem; transition: all 0.2s;
}
.dca-btn:hover { background: rgba(0,184,169,0.2); }
.db-iq-alert {
  background: rgba(0,184,169,0.08); border: 1px solid rgba(0,184,169,0.15);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--gray);
}
.db-iq-alert strong { color: var(--teal); }
.db-txns h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--white); margin-bottom: 12px; }
.db-txn-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.db-txn-dot { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.db-txn-info { flex: 1; }
.db-txn-info p { font-size: 0.85rem; color: var(--white); }
.db-txn-info span { font-size: 0.75rem; color: var(--gray); }
.db-txn-amt { font-family: 'DM Mono', monospace; font-size: 0.88rem; font-weight: 600; }
.transfer-form { max-width: 480px; }
.tf-group { margin-bottom: 16px; }
.tf-group label { display: block; font-size: 0.8rem; color: var(--gray); margin-bottom: 6px; }
.tf-group input, .tf-group select {
  width: 100%; background: var(--lgray); border: 1px solid var(--border);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  padding: 10px 14px; border-radius: 8px; outline: none;
}
.tf-group input:focus, .tf-group select:focus { border-color: var(--teal); }
.tf-breakdown { background: var(--lgray); border-radius: 10px; padding: 14px; margin-bottom: 16px; font-size: 0.82rem; line-height: 1.8; color: var(--gray); display: none; }
.tf-breakdown.show { display: block; }
.analytics-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.an-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.an-card label { font-size: 0.72rem; color: var(--gray); display: block; margin-bottom: 4px; }
.an-card strong { font-family: 'Syne', sans-serif; font-size: 1.2rem; color: var(--white); }
.an-card .an-sub { font-size: 0.72rem; color: var(--teal); }
.analytics-chart { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.savings-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sg-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.sg-top { display: flex; justify-content: space-between; margin-bottom: 8px; }
.sg-top strong { font-size: 0.9rem; color: var(--white); }
.sg-top span { font-size: 0.8rem; color: var(--teal); }
.sg-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.sg-fill { height: 100%; background: var(--teal); border-radius: 3px; }
.sg-sub { font-size: 0.75rem; color: var(--gray); }
.savings-form h4 { font-family: 'Syne', sans-serif; font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.loans-content { max-width: 480px; }
.loan-score-big { text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin-bottom: 20px; }
.lsb-num { font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800; color: var(--teal); }
.lsb-label { font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.loan-eligible { background: rgba(0,184,169,0.1); border: 1px solid rgba(0,184,169,0.2); border-radius: 10px; padding: 16px; margin-bottom: 16px; text-align: center; }
.loan-eligible p { font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; }
.loan-eligible strong { font-family: 'Syne', sans-serif; font-size: 1.4rem; color: var(--teal); display: block; margin-bottom: 12px; }
.learn-lessons { display: flex; flex-direction: column; gap: 16px; }
.lesson-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; gap: 16px; align-items: flex-start; cursor: pointer; transition: all 0.2s; }
.lesson-card:hover { border-color: rgba(0,184,169,0.3); }
.lesson-icon { font-size: 1.6rem; flex-shrink: 0; }
.lesson-info { flex: 1; }
.lesson-info h5 { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.lesson-info p { font-size: 0.78rem; color: var(--gray); }
.lesson-pts { background: var(--teal); color: var(--navy); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; flex-shrink: 0; }

/* Receive modal content */
.receive-info { text-align: center; padding: 20px 0; }
.receive-account { font-family: 'DM Mono', monospace; font-size: 2rem; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; margin: 12px 0; }
.receive-bank { font-size: 0.85rem; color: var(--gray); }
