:root{
  /* Charte Koaloo */
  --primary: #B1AAFF;
  --primary-dark: #0D1B2A;
  --secondary-light: #FFF8E7;
  --secondary: #FF9201;

  --bg: var(--secondary-light);
  --card: #ffffff;
  --text: var(--primary-dark);
  --muted: rgba(14,16,20,.62);
  --line: rgba(14,16,20,.08);
  --shadow: 0 18px 50px rgba(14,16,20,.08);
  --shadow-2: 0 30px 90px rgba(14,16,20,.12);
  --radius: 22px;
  --radius-lg: 34px;
  /* Mapping anciens tokens → charte */
  --blue: var(--primary);
  --blue-2: color-mix(in oklab, var(--primary) 82%, white);
  --blue-ink: var(--primary-dark);
  --dark: #060608;
  --dark-2: #0b0b0e;
  --dark-card: rgba(255,255,255,.08);
  --dark-line: rgba(255,255,255,.12);
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: 16px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); outline: none; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, #f6f7fb 82%, transparent);
  border-bottom: 1px solid rgba(14,16,20,.06);
}
.site-header.is-scrolled{
  background: color-mix(in oklab, #ffffff 88%, transparent);
  border-bottom-color: rgba(14,16,20,.08);
}
.header-inner{
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.brand-logo-img{
  height: 30px;
  width: auto;
  display: block;
}
.brand-mark{
  width: 22px;
  height: 22px;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.brand-mark svg{ width: 100%; height: 100%; }
.brand-name{ font-size: 16px; }
.brand.small .brand-name{ font-size: 14px; }
.brand.small .brand-mark{ width: 18px; height: 18px; }

.nav{
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
  margin-inline: 0;
}
.nav-link{
  font-size: 13px;
  color: rgba(14,16,20,.62);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover{
  color: rgba(14,16,20,.82);
  background: rgba(14,16,20,.04);
  transform: translateY(-1px);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
}
.btn:active{ transform: translateY(0); }
.btn-ghost{
  background: transparent;
  color: rgba(14,16,20,.85);
}
.btn-ghost:hover{
  background: rgba(14,16,20,.05);
  border-color: rgba(14,16,20,.07);
  transform: translateY(-1px);
}
.btn-primary{
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 86%, white), var(--primary));
  color: white;
  box-shadow: 0 16px 38px color-mix(in oklab, var(--primary) 32%, transparent);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px color-mix(in oklab, var(--primary) 40%, transparent);
}

.section{ padding: 76px 0; }
.section-hero-main{ padding-top: 86px; padding-bottom: 74px; background: #f6f7fb; }
.section-features{ padding-top: 70px; }

.features-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.feature-card{
  background: var(--card);
  border: 1px solid rgba(14,16,20,.06);
  border-radius: 24px;
  padding: 30px 30px 28px;
  min-height: 230px;
  box-shadow: 0 10px 30px rgba(14,16,20,.05);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card::before{
  content:"";
  position: absolute;
  inset: -140px -120px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--primary) 28%, transparent), transparent 55%);
  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.feature-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 16%, white);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg{ width: 18px; height: 18px; }
.feature-card h3{
  margin: 6px 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.feature-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 38ch;
}

.section-dark{ padding: 0; }
.dark-shell{
  background: radial-gradient(1200px 500px at 30% 0%, rgba(80,96,255,.12), transparent 60%),
              radial-gradient(800px 600px at 80% 20%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #050506, #060608);
  color: rgba(255,255,255,.92);
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  padding: 84px 0 92px;
  box-shadow: 0 -30px 80px rgba(0,0,0,.18) inset;
  overflow: hidden;
}

.dark-top h2{
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  max-width: 18ch;
}
.pill-row{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.pill{
  text-align: left;
  border-radius: 14px;
  padding: 14px 14px 13px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.74);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.pill.is-active{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.pill:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.pill-title{ display: block; font-size: 12.5px; font-weight: 650; margin-bottom: 6px; }
.pill-sub{ display: block; font-size: 12px; line-height: 1.35; color: rgba(255,255,255,.62); }

.logo-panel{
  margin-top: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  padding: 22px 18px;
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
  overflow: hidden;
}
.logo-panel-title{
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.66);
}
.logo-panel-foot{
  margin: 14px 0 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.46);
}
.logo-marquee{
  margin-top: 18px;
  display: flex;
  gap: 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-track{
  display: flex;
  gap: 14px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}
.logo-chip{
  min-width: 120px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.80);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: none;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

.section-copy{ padding: 72px 0 86px; background: #f6f7fb; }
.section-copy-strip{
  position: relative;
  z-index: 2;
  margin-top: -20px;
  padding-top: 96px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(14,16,20,.04);
}
.copy-wrap{ max-width: 66ch; }
.copy-eyebrow{
  margin: 0 0 22px;
  color: rgba(14,16,20,.38);
  font-size: 12px;
  text-align: center;
}
.banks-strip{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.banks-logos{
  position: relative;
  display: flex;
  gap: 42px;
  overflow: hidden;
  align-items: center;
  color: rgba(14,16,20,.45);
  font-size: 16px;
  mask-image: none;
}
.banks-marquee{
  display: flex;
  gap: 0;
  min-width: max-content;
  will-change: transform;
  animation: banksMarquee 26s linear infinite;
}
.banks-logos::before,
.banks-logos::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:80px;
  pointer-events:none;
  z-index:1;
}
.banks-logos::before{
  left:0;
  background: linear-gradient(90deg, #f6f7fb 0%, rgba(246,247,251,0.35) 60%, transparent 100%);
}
.banks-logos::after{
  right:0;
  background: linear-gradient(270deg, #f6f7fb 0%, rgba(246,247,251,0.35) 60%, transparent 100%);
}
.banks-track{
  display: flex;
  gap: 48px;
  min-width: max-content;
  will-change: transform;
}
@keyframes banksMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-1 * var(--banks-distance, 0px))); }
}
.bank-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.bank-logo-img{
  height: 60px;
  width: auto;
  display: block;
}
.bank-label{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(14,16,20,.45);
}
.copy-wrap h2{
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.copy-wrap p{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(14,16,20,.62);
}

.section-hero{ background: #f6f7fb; padding-top: 82px; padding-bottom: 90px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 46px;
  align-items: center;
}
.hero-kicker{
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(14,16,20,.38);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-text h1{
  margin: 0 0 22px;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 20ch;
}
.section-hero-main .hero-text{
  text-align: center;
  margin-inline: auto;
}
.section-hero-main .hero-text h1{
  max-width: 18ch;
  margin-inline: auto;
}
.hero-sub{
  margin: 0 0 26px;
  color: rgba(14,16,20,.58);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
}
.section-hero-main .hero-sub{
  margin-inline: auto;
}
.section-hero-main .btn-primary{
  margin-top: 4px;
}

.hero-visual{
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-grid-main{
  grid-template-columns: minmax(0, 1.05fr);
  justify-items: center;
  row-gap: 40px;
}
.hero-visual-main{
  min-height: 330px;
}
.hero-device-wrap{
  position: relative;
  z-index: 0;
  width: 100%;
  display: grid;
  place-items: end center;
  padding-bottom: 0;
}

.hero-visual-main::before,
.hero-visual-main::after{
  content:"";
  position:absolute;
  border-radius: 40px;
  filter: blur(1px);
  z-index:-1;
}
.hero-visual-main::before{
  width: 260px;
  height: 260px;
  left: 50%;
  transform: translateX(-60%) rotate(20deg);
  bottom: 46px;
  background:
    radial-gradient(circle at 25% 20%, rgba(92,122,255,.98), rgba(92,122,255,.35) 52%, transparent 72%),
    radial-gradient(circle at 70% 70%, rgba(57,88,255,.85), transparent 58%);
}
.hero-visual-main::after{
  width: 210px;
  height: 210px;
  left: 50%;
  transform: translateX(10%) rotate(-18deg);
  bottom: 40px;
  background:
    radial-gradient(circle at 30% 30%, rgba(120,144,255,.85), rgba(120,144,255,.35) 50%, transparent 72%),
    radial-gradient(circle at 70% 70%, rgba(61,94,255,.9), transparent 58%);
  opacity:.88;
}

.hero-shot{
  margin: 0;
  width: min(500px, 90vw);
  position: relative;
  z-index: 2;
  transform: translateY(6px);
  filter: drop-shadow(0 32px 80px rgba(14,16,20,.22));
}
.hero-shot-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.hero-decor{
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .9;
  filter: drop-shadow(0 22px 40px rgba(14,16,20,.10));
}
.decor-heart{
  left: -60%;
  top: -12%;
  width: 220px;
  transform: rotate(-14deg);
}
.decor-star{
  right: -80%;
  top: 20%;
  width: 270px;
  transform: rotate(12deg);
}
.decor-star-svg{
  right: -30%;
  top: -10%;
  width: 230px;
  transform: rotate(8deg);
  filter: drop-shadow(0 18px 30px rgba(14,16,20,.10));
}
.decor-star-svg-2{
  left: -30%;
  top: 40%;
  width: 230px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 18px 30px rgba(14,16,20,.10));
}
.decor-ring{
  right: 140%;
  bottom: 5%;
  width: 200px;
  transform: rotate(-8deg);
}
.phone-lg{ width: 290px; height: 560px; }
.phone::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.35) inset,
    0 0 40px rgba(0,0,0,.55) inset;
  pointer-events: none;
}
.phone-notch{
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  border-radius: 999px;
  background: #101114;
  opacity: .96;
  z-index: 5;
}
.phone-screen{
  position: absolute;
  inset: 0;
  padding: 22px 18px;
  padding-top: 46px;
  background: #ffffff;
}
.phone-screen.dots{
  background:
    radial-gradient(rgba(14,16,20,.07) 1px, transparent 1px) 0 0 / 16px 16px,
    #ffffff;
}
.nova-word{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 36px;
  color: rgba(35,72,255,.95);
}

.phone-top{
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.avatar{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #ffd7b1, #f2a58c 55%, #e57264);
}
.hello-1{ font-size: 12px; color: rgba(14,16,20,.72); font-weight: 650; }
.hello-2{ font-size: 11px; color: rgba(14,16,20,.46); margin-top: 2px; }
.icons{ display: inline-flex; gap: 6px; opacity: .6; }
.icons .i{
  width: 10px; height: 10px; border-radius: 4px;
  background: rgba(14,16,20,.28);
}

.amount{ margin-top: 4px; }
.amount-main{
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(14,16,20,.95);
}
.amount-main .up{ font-size: 18px; color: #12b981; vertical-align: 10%; }
.tags{
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.tag{
  font-size: 10px;
  letter-spacing: .08em;
  font-weight: 750;
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 18%, white);
  color: var(--primary-dark);
}
.tag-ghost{
  background: rgba(14,16,20,.04);
  color: rgba(14,16,20,.55);
}

.mini-cards{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini{
  border-radius: 16px;
  border: 1px solid rgba(14,16,20,.08);
  background: rgba(255,255,255,.70);
  padding: 12px 12px 11px;
}
.mini-title{ font-size: 11px; color: rgba(14,16,20,.50); }
.mini-value{ margin-top: 6px; font-weight: 750; letter-spacing: -0.02em; }

.goal-row{
  margin-top: 12px;
  display: flex;
  gap: 10px;
}
.goal-pill{
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 22%, white), color-mix(in oklab, var(--primary) 14%, white));
  color: var(--primary-dark);
  border: 1px solid color-mix(in oklab, var(--primary) 26%, transparent);
}
.goal-pill.ghost{
  flex: 0 0 auto;
  background: rgba(14,16,20,.04);
  color: rgba(14,16,20,.62);
  border-color: rgba(14,16,20,.06);
}
.goals{
  margin-top: 14px;
  border-top: 1px solid rgba(14,16,20,.08);
  padding-top: 12px;
}
.goal-title{ font-size: 11px; color: rgba(14,16,20,.46); margin-bottom: 8px; }
.goal-item{
  font-size: 12px;
  color: rgba(14,16,20,.76);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.goal-item .dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--secondary);
}

.section-showcase{
  background: #FFF8E7;
  padding-top: 60px;
  padding-bottom: 220px;
  background-image: radial-gradient(rgba(14,16,20,.06) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  z-index: 1;
}
.showcase{
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}
.showcase-phone{
  position: relative;
  width: min(1000px, 100%);
  height: 580px;
  display: grid;
  place-items: center;
}
.showcase-phone-frame{
  margin: 0;
  position: relative;
  z-index: 0;
  width: min(420px, 52vw);
}
.showcase-phone-img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(14,16,20,.18));
}
.float-card{
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.733);
  border: 1px solid rgba(14,16,20,.08);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(14,16,20,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.float-left{
  left: 4%;
  top: 35%;
  margin-top: -220px;
  width: 380px;
  padding: 24px;
}
.float-right{
  right: 4%;
  top: 50%;
  margin-top: -220px;
  width: 380px;
  padding: 24px;
}
.float-bottom{
  right: 4%;
  bottom: -40%;
  left: auto;
  margin-left: 0;
  width: 320px;
  padding: 20px;
}
.float-extra{
  left: 4%;
  bottom: -25%;
  width: 360px;
  padding: 22px;
}
.fc-title{
  font-size: 15px;
  color: rgba(14,16,20,.50);
  margin-bottom: 14px;
}
.fc-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.fc-emoji{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(14,16,20,.08);
}
.stat-list{
  display: grid;
  gap: 12px;
}
.stat-row{
  display: grid;
  gap: 6px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(14,16,20,.06);
  background: rgba(255,255,255,.14);
}
.stat-label{
  font-size: 12px;
  color: rgba(14,16,20,.55);
}
.stat-value{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(14,16,20,.78);
}
.card-copy{
  margin: -2px 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(14,16,20,.58);
}
.stat-row-split{
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.stat-row-split > div{
  display: grid;
  gap: 6px;
}
.mini-cta{
  margin-top: 14px;
  width: 100%;
  height: 54px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 22%, white), color-mix(in oklab, var(--primary) 14%, white));
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.mini-cta:hover{
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--primary) 42%, transparent);
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 26%, white), color-mix(in oklab, var(--primary) 16%, white));
}

.pill-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--secondary);
  background: color-mix(in oklab, var(--secondary) 12%, white);
  border: 1px solid color-mix(in oklab, var(--secondary) 22%, transparent);
}
.notif-preview{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(14,16,20,.06);
  background: rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.notif-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.notif-time{
  font-size: 12px;
  color: rgba(14,16,20,.45);
}
.notif-title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: rgba(14,16,20,.78);
}
.notif-body{
  font-size: 13px;
  color: rgba(14,16,20,.58);
}

.mini-chart{
  height: 70px;
  display: flex;
  gap: 10px;
  align-items: end;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(14,16,20,.06);
  background: rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.mini-chart span{
  width: 16px;
  border-radius: 10px;
  background: rgba(14,16,20,.16);
  height: 48px;
}
.mini-chart span:nth-child(2){ height: 30px; }
.mini-chart span:nth-child(3){ height: 62px; background: color-mix(in oklab, var(--primary) 55%, transparent); }
.mini-chart span:nth-child(4){ height: 26px; }
.mini-chart span:nth-child(5){ height: 40px; }

.people-row{
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(14,16,20,.06);
  background: rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.avatars{
  display: inline-flex;
}
.avatars span{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(246,247,251,.9);
  background: radial-gradient(circle at 30% 30%, rgba(35,72,255,.35), rgba(14,16,20,.10));
  margin-left: -8px;
}
.avatars span:first-child{ margin-left: 0; }
.people-meta{
  display: grid;
  gap: 6px;
}
.fc-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(14,16,20,.06);
  background: rgba(255,255,255,.70);
  margin-bottom: 14px;
}
.fc-name{ font-size: 14px; color: rgba(14,16,20,.62); }
.fc-money{ font-weight: 800; letter-spacing: -0.02em; font-size: 1.1em; }
.fc-money.big{ font-size: 34px; margin: 6px 0 6px; }
.fc-date{ font-size: 12px; letter-spacing: .08em; color: rgba(14,16,20,.45); text-transform: uppercase; }
.fc-add{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-radius: 18px;
  border: 1px dashed rgba(14,16,20,.14);
  color: rgba(14,16,20,.45);
  font-size: 14px;
}
.plus{
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(14,16,20,.06);
  color: rgba(14,16,20,.55);
  font-weight: 900;
}
.ring{
  width: 40px; height: 40px;
  border-radius: 999px;
  position: relative;
  background:
    conic-gradient(from 90deg, rgba(16,185,129,.95) 0 70%, rgba(14,16,20,.10) 70% 100%);
}
.ring::after{
  content:"";
  position: absolute; inset: 6px;
  border-radius: inherit;
  background: rgba(255,255,255,.92);
}
.ring-orange{
  background:
    conic-gradient(from 90deg, rgba(249,115,22,.95) 0 42%, rgba(14,16,20,.10) 42% 100%);
}
.bars{
  margin-top: 14px;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 72px;
}
.bars span{
  width: 18px;
  border-radius: 10px;
  background: rgba(14,16,20,.12);
  height: 58px;
}
.bars span:nth-child(2){ height: 38px; }
.bars span:nth-child(3){ height: 66px; }
.bars span:nth-child(4){ height: 34px; }
.bars span:nth-child(5){ height: 48px; }
.bars .accent{ background: rgba(217,70,239,.75); }
.bars .accent2{ background: rgba(16,185,129,.75); }

.ask{
  width: 48px; height: 48px;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(35,72,255,.18);
  background: rgba(35,72,255,.10);
  color: rgba(35,72,255,.95);
  margin-bottom: 12px;
}
.ask-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ask-text{ font-size: 16px; color: rgba(14,16,20,.55); }
.send{
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(35,72,255,.14);
  color: rgba(35,72,255,.95);
}

.footer{
  padding: 0;
  background: transparent;
  border-top: none;
}
.footer-dark{
  position: relative;
  z-index: auto;
  margin-top: 10%;
  padding: 220px 0 130px;
  background: radial-gradient(900px 300px at 50% 0%, color-mix(in oklab, var(--primary) 22%, transparent), transparent 60%),
              linear-gradient(180deg, #07070a, #040406);
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  overflow: hidden;
}
.footer-dark::before{
  content:"";
  position:absolute;
  left: 50%;
  top: -140px;
  width: 900px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,.10), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 46px;
  align-items: start;
}
.footer-brand{ max-width: 52ch; }
.footer-logo{ height: 36px; opacity: .98; }
.footer-tagline{
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.55;
}
.store-links{
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-btn{
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  min-width: 190px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.store-icon{
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.store-icon svg{
  width: 18px;
  height: 18px;
}
.store-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.store-kicker{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.store-name{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer-col{ display: grid; gap: 10px; }
.footer-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
  margin-bottom: 6px;
}
.footer-link{
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
  width: fit-content;
}
.footer-link:hover{
  color: rgba(255,255,255,.90);
  transform: translateX(2px);
}
.footer-bottom{
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-dark .muted{ color: rgba(255,255,255,.58); font-size: 12px; }
.footer-dark .brand-logo-img{ filter: brightness(0) invert(1); opacity: .95; }


/* Subtle float for showcase cards */
.float-card{
  animation: floaty 6.2s ease-in-out infinite;
}
.float-right{ animation-delay: .8s; }
.float-bottom{ animation-delay: 1.4s; }
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .logo-track{ animation: none !important; }
  .banks-marquee{ animation: none !important; transform: none !important; }
  .float-card{ animation: none !important; }
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .hero-grid{ grid-template-columns: 1fr; gap: 26px; }
  .hero-visual{ min-height: 420px; }
  .hero-grid-main{ grid-template-columns: 1fr; }
  .copy-eyebrow{ text-align: left; }
}

@media (max-width: 900px){
  .container{ width: min(var(--max), calc(100% - 32px)); }
  .header-inner{ height: 64px; }
  .section-hero-main{ padding-top: 72px; padding-bottom: 56px; }
  .section-hero-main .hero-kicker{ font-size: 12px; letter-spacing: .12em; }
  .section-hero-main .hero-text h1{ font-size: 46px; line-height: 1.06; }
  .section-hero-main .hero-sub{ font-size: 16px; }
  .hero-shot{ width: min(520px, 92vw); }
  .hero-shot-img{ border-radius: 18px; }
  .decor-heart{ width: 150px; }
  .decor-star{ width: 120px; }
  .decor-star-svg{ width: 170px; right: -100%; top: 10%; }
  .decor-star-svg-2{ width: 170px; left: -100%; top: 10%; }
  .decor-ring{ width: 190px; right: 10%; bottom: 8%; }
  .features-grid{ grid-template-columns: 1fr; }
  .banks-logos::before, .banks-logos::after{ width: 56px; }
  .banks-track{ gap: 34px; }
  .bank-logo-img{ height: 30px; }
  .bank-label{ font-size: 15px; letter-spacing: .05em; }
}
@media (max-width: 760px){
  .section{ padding: 40px 0; }
  .hero-text h1{ font-size: 40px; }
  .section-copy-strip{ margin-top: -90px; padding-top: 64px; padding-bottom: 52px; }

  /* Showcase: stack the preview cards under the phone */
  .section-showcase{ padding-bottom: 90px; }
  .showcase{ min-height: auto; }
  .showcase-phone{
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    place-items: center;
  }
  .showcase-phone-frame{ width: min(420px, 92vw); }
  .float-card{
    position: static;
    width: min(420px, 92vw) !important;
    margin: 0;
    animation: none;
  }
  .float-left, .float-right, .float-bottom, .float-extra{
    left: auto; right: auto; top: auto; bottom: auto;
    margin: 0; padding: 20px;
  }

  .footer-dark{ margin-top: 0; padding-top: 170px; padding-bottom: 110px; border-top-left-radius: 34px; border-top-right-radius: 34px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .store-btn{ min-width: 100%; }
}

@media (max-width: 420px){
  .section-hero-main .hero-text h1{ font-size: 36px; }
  .btn{ width: 100%; }
  .store-btn{ padding: 13px 14px; }
  .store-name{ font-size: 15px; }
}

