/* ═══════════════════════════════════════════════
   Mr. Money — marketing site
   Design tokens mirror the app's dark theme
   ═══════════════════════════════════════════════ */

:root {
  /* surfaces — soft "light dark" charcoal (not pure black) */
  --bg:        #13161e;
  --bg-2:      #191d27;
  --card:      #212533;
  --card-2:    #272c3b;
  --surface:   #303748;
  --line:      rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.055);

  /* text */
  --text:  #eef2ff;
  --sub:   #9aa5bd;
  --muted: #6b7488;

  /* brand */
  --accent:       #10B981;   /* primary brand green (matches the logo) */
  --accent-hover: #0fa574;
  --purple:       #F43F5E;   /* secondary accent — now red, for the red+green theme */
  --purple-light: #FB7185;
  --green:        #10B981;
  --green-light:  #34D399;
  --red:          #EF4444;
  --red-light:    #F87171;
  --yellow:       #FBBF24;
  --blue:         #45B7D1;
  --teal:         #4ECDC4;
  --rose:         #F43F5E;

  /* gradients */
  --grad-brand: linear-gradient(120deg, #34D399 0%, #10B981 40%, #F43F5E 100%);
  --grad-bal:   linear-gradient(135deg, #06423a 0%, #0a5f4e 52%, #0f766e 100%);
  --grad-in:    linear-gradient(135deg, #10B981, #059669);
  --grad-ex:    linear-gradient(135deg, #F43F5E, #E11D48);
  --grad-purple:linear-gradient(135deg, #F43F5E, #FB7185);

  /* motion + shape */
  --r-sm: 10px;  --r: 16px;  --r-lg: 22px;  --r-xl: 30px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1180px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Manrope', var(--font);
  --mono: 'Space Grotesk', var(--font);
}

/* ── reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(16,185,129,0.35); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* solid, bold brand-green emphasis (no gradient / multi-colour text) */
.grad-text {
  color: var(--accent);
  -webkit-text-fill-color: currentColor;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.1px;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 18px -10px rgba(16,185,129,0.55), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-hover); box-shadow: 0 12px 24px -12px rgba(16,185,129,0.65); }
.btn--ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

.store-badge {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff; padding: 15px 30px 15px 24px; border-radius: 18px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s, filter .25s;
}
.store-badge svg { width: 30px; height: 30px; color: #fff; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge small { font-size: 11.5px; color: rgba(255,255,255,0.82); letter-spacing: .3px; }
.store-badge strong { font-size: 19px; font-weight: 700; letter-spacing: -0.2px; }

/* colourful, oversized store buttons — green App Store, red Google Play */
.store-badge--app  { background: linear-gradient(135deg, #12C48B 0%, #059669 100%); box-shadow: 0 14px 30px -12px rgba(16,185,129,0.7); }
.store-badge--play { background: linear-gradient(135deg, #FB7185 0%, #E11D48 100%); box-shadow: 0 14px 30px -12px rgba(244,63,94,0.7); }
.store-badge:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.07) saturate(1.05); }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(19,22,30,0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); }
.brand__logo { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 4px 14px -4px rgba(16,185,129,0.5); }
.brand__name { font-weight: 700; font-size: 17px; letter-spacing: -0.3px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 14.5px; color: var(--sub); font-weight: 500; transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cta { padding: 9px 18px; font-size: 14px; }
.nav__burger { display: none; width: 40px; height: 40px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); }
.nav__burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 8px 24px 22px;
  background: rgba(19,22,30,0.96); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 12px 4px; color: var(--sub); font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.nav__mobile a:last-child { margin-top: 10px; border: none; justify-content: center; }

/* ═══════════ HERO ═══════════ */
.hero { position: relative; padding: 112px 0 84px; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 40%, transparent 80%);
  pointer-events: none;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; pointer-events: none; }
.hero__glow--a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(16,185,129,0.28), transparent 70%); top: -160px; left: -120px; }
.hero__glow--b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(244,63,94,0.20), transparent 70%); top: 40px; right: -150px; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  padding: 7px 15px 7px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--sub); margin-bottom: 26px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 0 4px rgba(52,211,153,0.18); }

.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(46px, 7vw, 82px); line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
/* animated red↔green shimmer on the highlighted headline words */
.hero__title .grad-text {
  background: linear-gradient(100deg, #34D399 0%, #10B981 22%, #FB7185 50%, #10B981 78%, #34D399 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: titleFlow 6s linear infinite;
}
@keyframes titleFlow { 0% { background-position: 0% 50%; } 100% { background-position: -220% 50%; } }
.hero__sub { font-size: 18px; color: var(--sub); max-width: 500px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__meta { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 2px solid var(--bg); font-size: 15px; margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.hero__meta p { font-size: 13.5px; color: var(--muted); }
.hero__meta strong { color: var(--text); font-weight: 600; }

/* ═══════════ PHONE COMPONENT ═══════════ */
.phone { position: relative; width: 300px; margin: 0 auto; }
.phone--hero { width: 330px; }
.phone__frame {
  position: relative; background: #05060b; border-radius: 46px;
  padding: 11px; border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 40px 80px -24px rgba(0,0,0,0.9),
    inset 0 0 0 2px rgba(255,255,255,0.04),
    0 0 46px -20px rgba(16,185,129,0.22);
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #05060b; border-radius: 14px; z-index: 5;
}
.phone__screen {
  position: relative; background: var(--bg); border-radius: 36px; overflow: hidden;
  aspect-ratio: 300 / 640; padding: 40px 14px 16px;
}
.phone__fab {
  position: absolute; right: 20px; bottom: 20px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-purple); color: #fff; display: grid; place-items: center;
  font-size: 26px; font-weight: 300; z-index: 8;
  box-shadow: 0 10px 24px -6px rgba(244,63,94,0.6);
}
.phone__shadow {
  position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
  width: 70%; height: 40px; background: radial-gradient(ellipse, rgba(16,185,129,0.22), transparent 70%);
  filter: blur(24px); z-index: -1;
}
.phone--hero .phone__screen { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── shared app screen bits ── */
.s-status { display: flex; justify-content: space-between; align-items: center; padding: 0 8px 6px; font-size: 11px; font-weight: 600; color: var(--text); }
.s-status__r { letter-spacing: 1px; font-size: 9px; opacity: .8; }

/* screen scroll fade at bottom */
.phone__screen::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 60px;
  background: linear-gradient(transparent, var(--bg)); pointer-events: none; z-index: 6;
}

/* ── HOME screen ── */
.sh-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 2px 6px 8px; }
.sh-hi { font-size: 11px; color: var(--sub); font-weight: 500; }
.sh-name { font-size: 22px; font-weight: 800; font-family: var(--display); letter-spacing: -0.4px; }
.sh-actions { display: flex; align-items: center; gap: 6px; }
.sh-icon { width: 28px; height: 28px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; font-size: 12px; color: var(--text); }
.sh-chip { height: 28px; padding: 0 9px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; font-size: 10.5px; font-weight: 700; }
.sh-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: 10px; padding: 3px; margin: 2px 6px 10px; }
.sh-tabs span { flex: 1; text-align: center; padding: 5px 0; font-size: 11px; font-weight: 600; color: var(--sub); border-radius: 7px; }
.sh-tabs .on { background: var(--green); color: #fff; }

.sh-bal { margin: 0 6px; background: var(--grad-bal); border-radius: 22px; padding: 16px 16px 15px; box-shadow: 0 14px 30px -14px rgba(6,95,70,0.9); }
.sh-bal__label { font-size: 8.5px; font-weight: 800; letter-spacing: .8px; color: rgba(255,255,255,0.6); }
.sh-bal__amt { font-size: 32px; font-weight: 800; letter-spacing: -1px; color: #fff; margin: 4px 0 2px; }
.sh-bal__amt span { font-size: 17px; opacity: .55; }
.sh-bal__sav { font-size: 10px; color: rgba(255,255,255,0.72); margin-bottom: 12px; }
.sh-bal__row { display: flex; gap: 8px; }
.sh-inx { flex: 1; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.1); border-radius: 11px; padding: 8px; }
.sh-inx__i { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.sh-inx__i--in { background: rgba(52,211,153,0.22); color: var(--green-light); }
.sh-inx__i--ex { background: rgba(248,113,113,0.22); color: var(--red-light); }
.sh-inx small { font-size: 8.5px; color: rgba(255,255,255,0.6); display: block; }
.sh-inx b { font-size: 12.5px; color: #fff; font-weight: 800; }

.sh-act { display: flex; gap: 8px; margin: 12px 6px 0; }
.sh-act__btn { flex: 1; text-align: center; padding: 11px 0; border-radius: 13px; font-size: 12.5px; font-weight: 700; color: #fff; }
.sh-act__btn--in { background: var(--grad-in); }
.sh-act__btn--ex { background: var(--grad-ex); }

.sh-sec { margin: 16px 6px 0; }
.sh-sec__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.sh-sec__head b { font-size: 13px; font-weight: 800; letter-spacing: -0.2px; }
.sh-sec__head span { font-size: 11px; font-weight: 700; color: var(--purple-light); }
.sh-count { background: rgba(255,255,255,0.08); color: var(--sub) !important; padding: 1px 8px; border-radius: 8px; }

.sh-wallets, .sh-goals { display: flex; gap: 8px; }
.sh-wal { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 10px; }
.sh-wal__i { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.06); font-size: 14px; margin-bottom: 7px; }
.sh-wal small { display: block; font-size: 9.5px; color: var(--sub); margin-bottom: 2px; }
.sh-wal b { font-size: 12.5px; font-weight: 800; color: var(--green-light); }
.sh-wal b.neg { color: var(--red-light); }

.sh-goal { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 11px; }
.sh-goal__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; font-size: 15px; }
.sh-goal__top b { font-size: 11px; color: var(--green-light); font-weight: 800; }
.sh-goal__name { font-size: 11.5px; font-weight: 700; margin-bottom: 7px; }
.sh-goal__bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 7px; }
.sh-goal__bar i { display: block; height: 100%; background: var(--green-light); border-radius: 3px; }
.sh-goal__amt { font-size: 11px; font-weight: 800; }
.sh-goal__amt small { color: var(--muted); font-weight: 600; }

.sh-txn { display: flex; align-items: center; gap: 10px; padding: 9px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; margin-bottom: 7px; }
.sh-txn__i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.sh-txn__m { flex: 1; min-width: 0; }
.sh-txn__m b { font-size: 12px; font-weight: 700; display: block; }
.sh-txn__m small { font-size: 9.5px; color: var(--muted); }
.sh-txn > b { font-size: 12.5px; font-weight: 800; }

.pos { color: var(--green-light); } .neg { color: var(--red-light); }
.screen-home--compact { padding-bottom: 16px; }

/* ── ANALYTICS screen ── */
.sa-title { font-size: 20px; font-weight: 800; font-family: var(--display); padding: 2px 6px 10px; letter-spacing: -0.4px; }
.sa-subtabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: 10px; padding: 3px; margin: 0 6px 12px; }
.sa-subtabs span { flex: 1; text-align: center; padding: 6px 0; font-size: 10.5px; font-weight: 600; color: var(--sub); border-radius: 7px; }
.sa-subtabs .on { background: var(--surface); color: var(--text); }
.sa-stats { display: flex; gap: 7px; margin: 0 6px 12px; }
.sa-stat { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 11px 8px; text-align: center; }
.sa-stat b { font-size: 15px; font-weight: 800; display: block; letter-spacing: -0.3px; }
.sa-stat small { font-size: 9.5px; color: var(--sub); }
.sa-card { margin: 0 6px 11px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.sa-card__h { font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.sa-donut { display: flex; align-items: center; gap: 14px; }
.donut { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.donut__hole { width: 60px; height: 60px; border-radius: 50%; background: var(--card); display: grid; place-items: center; text-align: center; }
.donut__hole small { font-size: 7.5px; color: var(--muted); font-weight: 800; letter-spacing: .5px; }
.donut__hole b { font-size: 12.5px; font-weight: 800; }
.sa-legend { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.sa-legend li { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--sub); font-weight: 600; }
.sa-legend i { width: 8px; height: 8px; border-radius: 3px; flex-shrink: 0; }
.sa-legend span { margin-left: auto; color: var(--text); font-weight: 800; font-size: 10.5px; }
.sa-line { width: 100%; height: 78px; }

/* ── ADD screen ── */
.screen-add { padding-top: 40px; }
.sad-grip { width: 36px; height: 4px; border-radius: 2px; background: var(--line); margin: 2px auto 12px; }
.sad-title { font-size: 17px; font-weight: 800; font-family: var(--display); text-align: center; margin-bottom: 14px; }
.sad-amount { background: var(--grad-ex); border-radius: 18px; padding: 16px; text-align: center; margin: 0 6px 16px; box-shadow: 0 12px 26px -12px rgba(244,63,94,0.7); }
.sad-amount small { font-size: 9px; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
.sad-amount__v { font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-top: 2px; }
.sad-amount__v span { font-size: 18px; opacity: .6; }
.sad-label { font-size: 11px; font-weight: 800; color: var(--sub); margin: 0 8px 8px; letter-spacing: .3px; }
.sad-cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin: 0 6px 16px; }
.sad-cat { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 9px 4px; text-align: center; font-size: 8.5px; font-weight: 600; color: var(--sub); }
.sad-cat span { display: block; font-size: 17px; margin-bottom: 3px; }
.sad-cat.on { background: rgba(244,63,94,0.14); border-color: rgba(244,63,94,0.5); color: var(--red-light); }
.sad-wallets { display: flex; gap: 7px; margin: 0 6px 16px; }
.sad-w { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 10px 4px; text-align: center; font-size: 10px; font-weight: 700; color: var(--sub); }
.sad-w.on { background: rgba(244,63,94,0.14); border-color: rgba(244,63,94,0.5); color: var(--purple-light); }
.sad-note { margin: 0 6px 14px; background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 11px; font-size: 11px; color: var(--sub); }
.sad-save { margin: 0 6px; background: var(--grad-purple); color: #fff; text-align: center; padding: 13px; border-radius: 14px; font-size: 13px; font-weight: 800; box-shadow: 0 10px 24px -8px rgba(244,63,94,0.6); }

/* ═══════════ TRUST STRIP ═══════════ */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.trust__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.trust__item { text-align: center; padding: 34px 16px; border-right: 1px solid var(--line-soft); }
.trust__item:last-child { border-right: none; }
.trust__item b { display: block; font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -0.4px; color: var(--text); margin-bottom: 5px; }
.trust__item span { font-size: 13px; color: var(--sub); }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 100px 0; position: relative; }
.section--tint { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__head--left { text-align: left; margin-left: 0; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section__title { font-family: var(--display); font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.section__lead { font-size: 17px; color: var(--sub); margin-top: 18px; }

/* ═══════════ FEATURES BENTO ═══════════ */
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.4); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.7); }
.card--wide { grid-column: span 2; display: flex; align-items: center; gap: 24px; }
.card--wide .card__body { flex: 1; }
.card--alt { background: linear-gradient(180deg, #1c3228, var(--bg-2)); }
.ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.24); }
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; font-family: var(--display); }
.card p { font-size: 14.5px; color: var(--sub); }

/* feature art */
.card__art { flex-shrink: 0; }
.card__art--balance { width: 210px; }
.mini-bal { background: var(--grad-bal); border-radius: 18px; padding: 18px; box-shadow: 0 16px 34px -16px rgba(6,95,70,0.9); }
.mini-bal small { font-size: 9px; font-weight: 800; letter-spacing: .8px; color: rgba(255,255,255,0.6); }
.mini-bal__amt { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -1px; margin: 6px 0 12px; }
.mini-bal__pills { display: flex; gap: 8px; }
.mini-bal__pills span { flex: 1; text-align: center; padding: 8px; border-radius: 10px; font-size: 12px; font-weight: 800; background: rgba(255,255,255,0.1); }
.mini-bal__pills .pos { color: var(--green-light); } .mini-bal__pills .neg { color: var(--red-light); }
.card__art--report { width: 200px; }
.mini-report { display: flex; align-items: flex-end; gap: 10px; height: 120px; padding: 16px; background: var(--card-2); border: 1px solid var(--line); border-radius: 16px; }
.mini-report__bar { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--accent); opacity: .9; }

/* personalized insights art */
.card__art--insight { width: 232px; }
.mini-insight { background: var(--card-2); border: 1px solid var(--line); border-radius: 16px; padding: 15px; display: flex; flex-direction: column; gap: 11px; }
.mini-insight__row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--sub); font-weight: 500; }
.mini-insight__row span { font-size: 17px; }
.mini-insight__row b { margin-left: auto; font-weight: 800; }

/* ═══════════ SHOWCASE ═══════════ */
.showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; align-items: start; justify-items: center; }
.showcase__phone { display: flex; flex-direction: column; align-items: center; }
.showcase__phone--lift { transform: translateY(-28px); }
.showcase__cap { text-align: center; margin-top: 28px; max-width: 260px; }
.showcase__cap b { font-size: 16px; font-weight: 700; font-family: var(--display); }
.showcase__cap p { font-size: 13.5px; color: var(--sub); margin-top: 6px; }

/* ═══════════ SPOTLIGHT ═══════════ */
.spotlight { display: grid; grid-template-columns: 1fr 1.18fr; gap: 56px; align-items: center; }
.spotlight .section__title { font-size: clamp(30px, 3.6vw, 44px); }
.checklist { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 8px; background: rgba(16,185,129,0.15); color: var(--green-light); display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 2px; }
.checklist b { color: var(--text); font-weight: 700; }
.checklist div { font-size: 15px; color: var(--sub); }

.spotlight__art { position: relative; min-height: 520px; }
.glass-card {
  position: absolute; background: rgba(18,23,40,0.75); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9);
}
.gc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.gc-head b { font-size: 14px; font-weight: 800; } .gc-head span { font-size: 16px; }
.glass-card--a { top: 0; left: 0; width: 300px; animation: floatA 7s ease-in-out infinite; }
.gc-row { display: flex; align-items: center; gap: 11px; padding: 8px 0; border-top: 1px solid var(--line-soft); }
.gc-row:first-of-type { border-top: none; }
.gc-rank { width: 22px; height: 22px; border-radius: 7px; background: var(--surface); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: var(--sub); }
.gc-txt { flex: 1; } .gc-txt b { font-size: 13px; font-weight: 700; display: block; } .gc-txt small { font-size: 10px; color: var(--muted); }
.gc-row > b { font-size: 13px; font-weight: 800; }

.glass-card--b { top: 158px; right: 0; width: 270px; animation: floatB 8s ease-in-out infinite; }
.gc-compare { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.gc-cmp { text-align: center; } .gc-cmp b { font-size: 19px; font-weight: 800; } .gc-cmp small { font-size: 10px; color: var(--muted); }
.gc-cmp__vs { font-size: 11px; font-weight: 800; color: var(--red-light); background: rgba(239,68,68,0.12); padding: 4px 8px; border-radius: 8px; }
.gc-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.gc-bars i { flex: 1; background: var(--surface); border-radius: 4px; }
.gc-bars i.hl { background: var(--grad-purple); }

.glass-card--c { bottom: 0; left: 20px; width: 290px; display: flex; align-items: center; gap: 12px; animation: floatA 9s ease-in-out infinite; }
.glass-card--c span { font-size: 24px; }
.glass-card--c p { font-size: 13.5px; color: var(--sub); } .glass-card--c b { color: var(--green-light); font-weight: 800; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }

/* ═══════════ MULTI-CURRENCY ═══════════ */
.currency-field { position: relative; height: 400px; max-width: 760px; margin: 30px auto 0; }
.currency-field__glow { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(16,185,129,0.16), transparent 66%); filter: blur(18px); pointer-events: none; }
.currency-rings { position: absolute; inset: 0; pointer-events: none; }
.currency-rings span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid var(--line-soft); border-radius: 50%; }
.currency-rings span:nth-child(1) { width: 250px; height: 250px; }
.currency-rings span:nth-child(2) { width: 410px; height: 410px; }

.currency-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.currency-hub img { width: 78px; height: 78px; border-radius: 20px; box-shadow: 0 14px 32px -8px rgba(16,185,129,0.5); }
.currency-hub b { font-size: 12.5px; font-weight: 700; color: var(--text); background: var(--card); border: 1px solid var(--line); padding: 5px 13px; border-radius: 999px; }

.cur-orb {
  position: absolute; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; width: 64px; height: 64px;
  border-radius: 50%; background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 14px 26px -12px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.05);
}
.cur-orb b { font-size: 17px; font-weight: 800; color: var(--accent); line-height: 1; }
.cur-orb small { font-size: 8px; font-weight: 700; color: var(--sub); margin-top: 3px; letter-spacing: .4px; }

.cur-orb--1 { top: 4%;   left: 36%;  animation: floatA 6.5s ease-in-out infinite; }
.cur-orb--2 { top: 4%;   left: 56%;  animation: floatB 7.5s ease-in-out infinite .3s; }
.cur-orb--3 { top: 22%;  left: 14%;  animation: floatB 6.8s ease-in-out infinite .1s; }
.cur-orb--4 { top: 22%;  right: 14%; animation: floatA 7.2s ease-in-out infinite .5s; }
.cur-orb--5 { top: 44%;  left: 5%;   animation: floatA 8s   ease-in-out infinite .2s; }
.cur-orb--6 { top: 44%;  right: 5%;  animation: floatB 6.6s ease-in-out infinite .4s; }
.cur-orb--7 { bottom: 20%; left: 14%;  animation: floatB 7.8s ease-in-out infinite; }
.cur-orb--8 { bottom: 20%; right: 14%; animation: floatA 6.9s ease-in-out infinite .6s; }
.cur-orb--9 { bottom: 3%;  left: 45%;  animation: floatA 8.4s ease-in-out infinite .2s; }

@media (max-width: 760px) {
  .currency-field { height: auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; max-width: 360px; }
  .currency-field__glow, .currency-rings { display: none; }
  .cur-orb { position: static; animation: none !important; }
  .currency-hub { position: static; transform: none; order: -1; width: 100%; margin-bottom: 6px; }
}

/* ═══════════ PRICING ═══════════ */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), border-color .3s;
}
.price:hover { transform: translateY(-4px); }
.price--featured {
  border-color: rgba(16,185,129,0.6);
  background: linear-gradient(180deg, #17362a, var(--bg-2));
  box-shadow: 0 30px 70px -28px rgba(16,185,129,0.45);
}
.price__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 800;
  letter-spacing: .4px; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price__badge--limited { background: var(--red); color: #fff; }
.price__name { font-size: 15px; font-weight: 700; color: var(--sub); }
.price__amt { font-family: var(--display); font-size: 44px; font-weight: 800; letter-spacing: -1.5px; margin: 8px 0 4px; }
.price__amt span { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-left: 4px; }
.price__sub { font-size: 13.5px; color: var(--sub); margin-bottom: 20px; }
.price__sub b { color: var(--text); }

/* features you unlock after purchase */
.price__unlock { font-size: 10.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; }
.price__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price__features li { position: relative; padding-left: 27px; font-size: 13.5px; color: var(--sub); line-height: 1.35; }
.price__features li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center;
  background: rgba(16,185,129,0.16); color: var(--green-light); font-size: 11px; font-weight: 800;
}
.price__features li.price__features--plus { color: var(--text); font-weight: 600; }
.price__features li.price__features--plus::before { content: '★'; background: rgba(244,63,94,0.16); color: var(--purple-light); }

.price__cta { width: 100%; margin-top: auto; }

.pricing__note { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 28px; }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(160deg, #163529 0%, var(--card) 60%);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 66px 32px;
}
.cta__glow { position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(16,185,129,0.26), transparent 70%); filter: blur(50px); pointer-events: none; }
.cta__logo { position: relative; width: 68px; height: 68px; border-radius: 18px; margin: 0 auto 24px; box-shadow: 0 12px 30px -8px rgba(16,185,129,0.5); }
.cta h2 { position: relative; font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.cta p { position: relative; font-size: 17px; color: var(--sub); margin: 16px auto 32px; max-width: 480px; }
.cta__badges { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta__soon { position: relative; display: inline-block; margin-top: 22px; font-size: 13px; color: var(--muted); }

/* ═══════════ FAQ ═══════════ */
.faq-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: rgba(16,185,129,0.4); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-size: 15.5px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 22px; font-size: 14.5px; color: var(--sub); }

/* ═══════════ FOOTER — simple & clean ═══════════ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 46px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.footer__logo { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 8px 20px -8px rgba(16,185,129,0.5); transition: transform .25s var(--ease); }
.footer__brand:hover .footer__logo { transform: translateY(-3px); }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.footer__links a { font-size: 14px; color: var(--sub); transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 13px; color: var(--muted); }

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone--hero .phone__screen, .glass-card, .cur-orb { animation: none !important; }
  .hero__title .grad-text { animation: none; background: none; color: var(--accent); -webkit-text-fill-color: var(--accent); }
  html { scroll-behavior: auto; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 92px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__meta { justify-content: center; }
  .card--wide { grid-column: span 2; }
  .spotlight { grid-template-columns: 1fr; gap: 40px; }
  .spotlight__art { min-height: 0; max-width: 420px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 16px; }
  .glass-card { position: static; width: 100% !important; animation: none !important; }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .section__head--left { text-align: center; }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card--wide { grid-column: span 2; flex-direction: column; text-align: left; align-items: flex-start; }
  .card--wide .card__art { width: 100%; max-width: 260px; }
  .showcase { grid-template-columns: 1fr; gap: 60px; }
  .showcase__phone--lift { transform: none; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price--featured { order: -1; }
}
@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .store-badge { width: 100%; justify-content: center; }
  .cta { padding: 48px 22px; }
  .cta__badges { flex-direction: column; }
  .cta__badges .store-badge { width: 100%; }
}
