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

:root{
  --green-900:#0B6B3A;
  --green-800:#0D7A42;
  --green-700:#0F8A4B;
  --green-600:#14A257;
  --green-500:#1EB865;
  --green-100:#DCF1E4;
  --green-050:#EFFAF3;
  --bg:#F3F7F4;
  --surface:#FFFFFF;
  --ink:#152219;
  --ink-soft:#5B6B61;
  --ink-faint:#93A199;
  --line:#E4ECE6;
  --gold:#F4B740;
  --gold-dark:#C98A12;
  --due:#E0574B;
  --paid:#189A5B;
  --balance:#E08A2E;
  --gcash:#3B7DF0;
  --maya:#0FB56C;
  --bank:#2A4A7A;
  --cash:#189A5B;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --shadow-card:0 1px 2px rgba(15,40,25,.04), 0 8px 20px -10px rgba(15,40,25,.18);
  --shadow-pop:0 20px 44px -16px rgba(11,60,35,.35);
  --font-display:'Baloo 2', ui-rounded, 'Segoe UI', sans-serif;
  --font-body:'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*{box-sizing:border-box; -webkit-tap-highlight-color:transparent;}
svg{width:20px;height:20px;display:block;flex-shrink:0;}
html,body{height:100%;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--ink);
  overscroll-behavior-y:none;
}
button{font-family:inherit;}
input,select,textarea{font-family:inherit;}
a{color:inherit;}
::selection{background:var(--green-100);}

.app-shell{
  max-width:480px;
  margin:0 auto;
  min-height:100vh;
  min-height:100dvh;
  background:var(--bg);
  display:flex;
  flex-direction:column;
  position:relative;
}

/* ---------- Top bar ---------- */
.topbar{
  position:sticky; top:0; z-index:20;
  background:var(--bg);
  padding:calc(env(safe-area-inset-top,0px) + 14px) 18px 8px;
  display:flex; align-items:center; justify-content:space-between;
}
.topbar .brand{
  display:flex; align-items:center; gap:8px;
}
.brand-mark{width:36px;height:36px; display:block; filter:drop-shadow(0 3px 6px rgba(11,107,58,.25));}
.brand-word{
  font-family:var(--font-display);
  font-weight:800;
  font-size:22px;
  letter-spacing:.3px;
  color:var(--green-900);
}
.topbar-actions{display:flex; gap:8px;}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  border:none; background:var(--surface);
  box-shadow:var(--shadow-card);
  display:flex;align-items:center;justify-content:center;
  color:var(--green-900);
  cursor:pointer;
}
.icon-btn svg{width:18px;height:18px;}

.page-title-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:2px 18px 10px;
}
.page-title{
  font-family:var(--font-display);
  font-weight:700; font-size:22px; color:var(--green-900);
}

/* ---------- Main scroll area ---------- */
.view{
  flex:1;
  padding:2px 18px 106px;
  overflow-y:auto;
}
.view.hidden{display:none;}

/* ---------- Search ---------- */
.search-bar{
  display:flex; align-items:center; gap:10px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:11px 14px;
  margin:6px 0 14px;
  box-shadow:var(--shadow-card);
}
.search-bar svg{width:18px;height:18px;color:var(--ink-faint); flex-shrink:0;}
.search-bar input{
  border:none; outline:none; background:transparent;
  font-size:15px; width:100%; color:var(--ink);
}
.search-bar input::placeholder{color:var(--ink-faint);}

/* ---------- Today's collection hero ---------- */
.hero-card{
  background:linear-gradient(135deg, var(--green-800), var(--green-900) 70%);
  border-radius:var(--radius-lg);
  padding:20px 20px 18px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-pop);
  margin-bottom:14px;
}
.hero-card::after{
  content:"";
  position:absolute; right:-30px; bottom:-30px;
  width:150px; height:150px;
  background:radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
}
.hero-label{font-size:13px; opacity:.85; font-weight:600;}
.hero-amount{
  font-family:var(--font-display);
  font-size:36px; font-weight:800; margin-top:2px;
  display:flex; align-items:baseline; gap:4px;
}
.hero-sub{font-size:12.5px; opacity:.8; margin-top:2px;}
.hero-mascot{
  position:absolute; right:12px; top:8px; width:64px; height:auto; opacity:.97;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.18));
}

/* ---------- Buttons ---------- */
.btn{
  border:none; cursor:pointer; border-radius:14px;
  font-weight:700; font-size:15px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:transform .12s ease, filter .12s ease;
}
.btn:active{transform:scale(.97);}
.btn svg{width:18px;height:18px;flex-shrink:0;}
.btn-primary{
  background:var(--green-700); color:#fff;
  padding:14px 18px; width:100%;
  box-shadow:0 10px 20px -8px rgba(15,138,75,.55);
}
.btn-primary:disabled{background:#B9CDBF; box-shadow:none; cursor:not-allowed;}
.btn-ghost{
  background:var(--surface); color:var(--green-900);
  border:1px solid var(--line); padding:13px 16px;
}
.btn-block{width:100%;}
.btn-sm{padding:8px 12px; font-size:13px; border-radius:10px;}
.fab-receive{
  margin:6px 0 16px;
}

/* ---------- Section headers ---------- */
.section-head{
  display:flex; align-items:center; justify-content:space-between;
  margin:18px 0 10px;
}
.section-head h3{
  font-family:var(--font-display);
  font-size:16px; margin:0; color:var(--ink);
}
.link-btn{
  border:none; background:none; color:var(--green-700);
  font-weight:700; font-size:13px; cursor:pointer; padding:4px;
}

/* ---------- Payment type list (home) ---------- */
.type-row{
  display:flex; align-items:center; gap:12px;
  background:var(--surface);
  border-radius:var(--radius-md);
  padding:12px 14px;
  margin-bottom:8px;
  box-shadow:var(--shadow-card);
  cursor:pointer;
}
.type-ico{
  width:38px;height:38px;border-radius:11px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.type-ico svg{width:18px;height:18px;}
.type-row .type-name{font-weight:600; font-size:14.5px; flex:1;}
.type-row .type-amt{font-weight:700; font-size:14.5px; color:var(--ink);}

/* ---------- People list ---------- */
.person-row{
  display:flex; align-items:center; gap:12px;
  background:var(--surface);
  border-radius:var(--radius-md);
  padding:12px 14px;
  margin-bottom:8px;
  box-shadow:var(--shadow-card);
  cursor:pointer;
}
.avatar{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700; font-size:14px; color:#fff; flex-shrink:0;
}
.person-main{flex:1; min-width:0;}
.person-name{font-weight:700; font-size:14.5px;}
.person-meta{font-size:12px; color:var(--ink-soft); margin-top:1px;}
.person-balance{text-align:right;}
.person-balance .bal-amt{font-weight:800; font-size:14.5px;}
.person-balance .bal-label{font-size:10.5px; color:var(--ink-faint); text-transform:uppercase; letter-spacing:.4px;}
.bal-zero{color:var(--paid);}
.bal-owe{color:var(--balance);}

/* ---------- Empty state ---------- */
.empty-state{
  text-align:center; padding:34px 18px 10px;
}
.empty-state img{width:120px; margin-bottom:6px;}
.empty-state h4{font-family:var(--font-display); margin:6px 0 4px; font-size:17px;}
.empty-state p{color:var(--ink-soft); font-size:13.5px; margin:0 0 16px; line-height:1.5;}

/* ---------- Person overview ---------- */
.profile-head{
  display:flex; flex-direction:column; align-items:center;
  padding:6px 0 14px;
}
.profile-avatar{
  width:76px;height:76px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800; font-size:26px; color:#fff;
  margin-bottom:8px;
  box-shadow:var(--shadow-card);
}
.profile-name{font-family:var(--font-display); font-weight:700; font-size:19px;}
.stat-strip{
  display:flex; background:var(--surface); border-radius:var(--radius-md);
  box-shadow:var(--shadow-card); padding:14px 6px; margin:14px 0;
}
.stat-cell{flex:1; text-align:center; border-right:1px solid var(--line);}
.stat-cell:last-child{border-right:none;}
.stat-cell .stat-label{font-size:11px; color:var(--ink-soft); font-weight:600; text-transform:uppercase; letter-spacing:.3px;}
.stat-cell .stat-val{font-family:var(--font-display); font-size:17px; font-weight:700; margin-top:3px;}
.stat-due .stat-val{color:var(--due);}
.stat-paid .stat-val{color:var(--paid);}
.stat-bal .stat-val{color:var(--balance);}

.ledger-row{
  display:flex; align-items:center; gap:12px;
  background:var(--surface); border-radius:var(--radius-md);
  padding:12px 14px; margin-bottom:8px; box-shadow:var(--shadow-card);
}
.ledger-main{flex:1;}
.ledger-name{font-weight:700; font-size:14px;}
.ledger-sub{font-size:12px; color:var(--ink-soft); margin-top:2px;}
.ledger-bal{text-align:right;}
.ledger-bal .amt{font-weight:800; font-size:14.5px;}
.ledger-bal .lbl{font-size:10px; color:var(--ink-faint); text-transform:uppercase;}

.sticky-actions{
  position:sticky; bottom:0; display:flex; gap:10px;
  padding:12px 0 4px; background:linear-gradient(var(--bg-transparent,transparent), var(--bg) 30%);
}

/* ---------- Sheet / modal ---------- */
.sheet-overlay{
  position:fixed; inset:0; background:rgba(10,30,18,.42);
  z-index:60; display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .2s ease;
}
.sheet-overlay.open{opacity:1; pointer-events:auto;}
.sheet{
  width:100%; max-width:480px;
  background:var(--surface);
  border-radius:24px 24px 0 0;
  padding:10px 18px calc(env(safe-area-inset-bottom,0px) + 18px);
  max-height:92vh; overflow-y:auto;
  transform:translateY(100%);
  transition:transform .26s cubic-bezier(.32,.72,0,1);
  box-shadow:0 -10px 40px rgba(0,0,0,.25);
}
.sheet-overlay.open .sheet{transform:translateY(0);}
.sheet-grip{width:38px;height:4px;background:var(--line); border-radius:4px; margin:6px auto 12px;}
.sheet-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;}
.sheet-title{
  font-family:var(--font-display); font-weight:700; font-size:18px; color:var(--green-900);
  display:flex; align-items:center; gap:8px;
}
.sheet-title img{width:30px;height:30px;}
.sheet-close{border:none;background:var(--bg); width:32px;height:32px;border-radius:50%; display:flex;align-items:center;justify-content:center; cursor:pointer; color:var(--ink-soft);}

.field-label{
  font-size:11.5px; font-weight:700; color:var(--ink-soft);
  text-transform:uppercase; letter-spacing:.5px; margin:14px 0 7px;
}
.field-label:first-of-type{margin-top:2px;}
.select-field, .text-field{
  width:100%; border:1px solid var(--line); background:var(--bg);
  border-radius:14px; padding:13px 14px; font-size:15px; color:var(--ink);
  outline:none;
}
.select-field:focus, .text-field:focus{border-color:var(--green-600); background:#fff;}

.person-pick{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line); background:var(--bg); border-radius:14px;
  padding:10px 12px; cursor:pointer;
}
.person-pick .avatar{width:32px;height:32px;font-size:12px;}
.person-pick span.ph{color:var(--ink-faint);}
.person-pick .chev{margin-left:auto; color:var(--ink-faint);}

.amount-row{
  display:flex; align-items:center; gap:8px;
  border:1px solid var(--line); background:var(--bg);
  border-radius:14px; padding:6px 14px;
}
.amount-row .peso{font-size:20px; font-weight:800; color:var(--ink-soft);}
.amount-row input{
  border:none; background:transparent; outline:none;
  font-size:24px; font-weight:800; width:100%; padding:8px 0; color:var(--ink);
  font-family:var(--font-display);
}
.chip-row{display:flex; gap:8px; margin-top:10px; flex-wrap:wrap;}
.chip{
  border:1px solid var(--line); background:var(--surface);
  border-radius:10px; padding:9px 0; font-weight:700; font-size:13.5px;
  cursor:pointer; flex:1; min-width:64px; text-align:center; color:var(--ink);
}
.chip.active{background:var(--green-700); border-color:var(--green-700); color:#fff;}

.method-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:8px;}
.method-card{
  border:1.5px solid var(--line); background:var(--surface);
  border-radius:14px; padding:12px 4px 9px; text-align:center; cursor:pointer;
}
.method-card.active{border-color:var(--green-700); background:var(--green-050);}
.method-ico{width:26px;height:26px; margin:0 auto 6px; display:flex;align-items:center;justify-content:center;}
.method-card .m-label{font-size:11.5px; font-weight:700;}

.receive-cta{margin-top:18px;}

/* ---------- Type picker sheet list ---------- */
.picker-list{max-height:52vh; overflow-y:auto; margin-top:4px;}
.picker-item{
  display:flex; align-items:center; gap:12px; padding:11px 4px;
  border-bottom:1px solid var(--line); cursor:pointer;
}
.picker-item:last-child{border-bottom:none;}
.picker-item .type-name{flex:1;}
.new-type-row{
  display:flex; gap:8px; margin-top:10px;
}
.new-type-row .text-field{flex:1 1 auto; width:0; min-width:0;}
.new-type-row .btn{flex:0 0 auto; width:auto; white-space:nowrap; padding:13px 20px;}

/* ---------- Reports ---------- */
.seg-tabs{
  display:flex; background:var(--surface); border-radius:14px; padding:4px;
  box-shadow:var(--shadow-card); margin:4px 0 14px;
}
.seg-tab{
  flex:1; border:none; background:none; padding:9px 0; border-radius:11px;
  font-weight:700; font-size:13px; color:var(--ink-soft); cursor:pointer;
}
.seg-tab.active{background:var(--green-700); color:#fff;}

.report-hero{
  background:linear-gradient(135deg, var(--green-800), var(--green-900) 70%);
  border-radius:var(--radius-lg); padding:18px 20px; color:#fff; margin-bottom:16px;
  box-shadow:var(--shadow-pop); position:relative; overflow:hidden;
}
.report-hero .hero-mascot{width:56px;}

.card{
  background:var(--surface); border-radius:var(--radius-md);
  padding:16px; box-shadow:var(--shadow-card); margin-bottom:14px;
}
.card h4{margin:0 0 12px; font-family:var(--font-display); font-size:15px;}

.donut-wrap{display:flex; align-items:center; gap:18px;}
.donut{width:120px;height:120px; border-radius:50%; flex-shrink:0; position:relative;}
.donut::after{
  content:""; position:absolute; inset:20px; background:var(--surface); border-radius:50%;
}
.legend{flex:1; display:flex; flex-direction:column; gap:9px;}
.legend-row{display:flex; align-items:center; gap:8px; font-size:12.5px;}
.legend-dot{width:9px;height:9px;border-radius:3px; flex-shrink:0;}
.legend-row .lg-name{flex:1; font-weight:600; color:var(--ink);}
.legend-row .lg-val{font-weight:700; color:var(--ink-soft);}

.method-stats{display:grid; grid-template-columns:1fr 1fr; gap:10px;}
.method-stat{
  border:1px solid var(--line); border-radius:12px; padding:10px 12px;
}
.method-stat .ms-top{display:flex; align-items:center; gap:6px; font-weight:700; font-size:12.5px;}
.method-stat .ms-amt{font-family:var(--font-display); font-weight:700; font-size:16px; margin-top:5px;}
.method-stat .ms-pct{font-size:11px; color:var(--ink-faint);}

.activity-row{
  display:flex; align-items:center; gap:11px; padding:9px 0;
  border-bottom:1px solid var(--line);
}
.activity-row:last-child{border-bottom:none;}
.activity-row .a-main{flex:1; min-width:0;}
.activity-row .a-name{font-weight:700; font-size:13.5px;}
.activity-row .a-sub{font-size:11.5px; color:var(--ink-soft); margin-top:1px;}
.activity-row .a-amt{font-weight:800; font-size:13.5px; text-align:right;}
.activity-row .a-time{font-size:10.5px; color:var(--ink-faint); text-align:right; margin-top:1px;}

/* ---------- Settings ---------- */
.settings-group{
  background:var(--surface); border-radius:var(--radius-md);
  box-shadow:var(--shadow-card); margin-bottom:16px; overflow:hidden;
}
.settings-row{
  display:flex; align-items:center; gap:12px; padding:13px 15px;
  border-bottom:1px solid var(--line); cursor:pointer;
}
.settings-row:last-child{border-bottom:none;}
.settings-row .s-ico{
  width:32px;height:32px;border-radius:9px; background:var(--green-050); color:var(--green-800);
  display:flex;align-items:center;justify-content:center; flex-shrink:0;
}
.settings-row .s-label{flex:1; font-weight:600; font-size:14px;}
.settings-row .s-val{font-size:12.5px; color:var(--ink-faint);}
.settings-row.danger .s-label{color:var(--due);}
.settings-row.danger .s-ico{background:#FCE7E5; color:var(--due);}

.type-manage-row{
  display:flex; align-items:center; gap:10px; padding:11px 15px;
  border-bottom:1px solid var(--line);
}
.type-manage-row:last-child{border-bottom:none;}
.type-manage-row input.text-field{flex:1; padding:8px 10px; font-size:13.5px;}
.icon-x{border:none;background:none;color:var(--ink-faint); cursor:pointer; width:26px;height:26px; display:flex;align-items:center;justify-content:center;}

.about-block{text-align:center; padding:20px 10px 6px;}
.about-block img{width:96px;}
.about-block h4{font-family:var(--font-display); margin:8px 0 2px;}
.about-block p{color:var(--ink-soft); font-size:12.5px; line-height:1.6; margin:0;}

/* ---------- Bottom nav ---------- */
.bottom-nav{
  position:fixed; bottom:0; left:0; right:0;
  max-width:480px; margin:0 auto;
  background:var(--surface);
  border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-around;
  padding:8px 4px calc(env(safe-area-inset-bottom,0px) + 6px);
  z-index:40;
}
.nav-item{
  border:none; background:none; display:flex; flex-direction:column; align-items:center; gap:3px;
  color:var(--ink-faint); font-size:10.5px; font-weight:600; cursor:pointer; padding:4px 8px;
}
.nav-item svg{width:21px;height:21px;}
.nav-item.active{color:var(--green-800);}
.nav-fab{
  width:50px;height:50px;border-radius:50%;
  background:var(--green-700); color:#fff;
  display:flex;align-items:center;justify-content:center;
  margin-top:-26px; box-shadow:0 10px 20px -6px rgba(15,138,75,.6);
  border:4px solid var(--bg);
}
.nav-fab svg{width:22px;height:22px;}

/* ---------- Toast ---------- */
.toast{
  position:fixed; left:50%; bottom:96px; transform:translate(-50%,20px);
  background:var(--ink); color:#fff; padding:12px 18px; border-radius:14px;
  font-size:13.5px; font-weight:600; display:flex; align-items:center; gap:8px;
  box-shadow:0 12px 30px rgba(0,0,0,.3);
  z-index:100; opacity:0; pointer-events:none; transition:all .25s ease;
  max-width:88%;
}
.toast.show{opacity:1; transform:translate(-50%,0);}
.toast svg{width:16px;height:16px; color:var(--green-500); flex-shrink:0;}

/* ---------- Onboarding / Landing ---------- */
.onboard{
  position:fixed; inset:0; z-index:200;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(160deg, #0E8049 0%, #0B6B3A 45%, #073F23 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  color:#fff; text-align:center;
  padding:calc(env(safe-area-inset-top,0px) + 30px) 30px calc(env(safe-area-inset-bottom,0px) + 30px);
}
.onboard-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(ellipse 70% 55% at 50% 35%, #000 15%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 70% 55% at 50% 35%, #000 15%, transparent 75%);
}
.onboard-orb{
  position:absolute; border-radius:50%; filter:blur(50px); opacity:.55; pointer-events:none;
}
.orb-1{width:280px;height:280px; background:radial-gradient(circle, #E9C063, transparent 70%); top:-60px; right:-70px; opacity:.35;}
.orb-2{width:320px;height:320px; background:radial-gradient(circle, #1EB865, transparent 70%); bottom:-90px; left:-90px;}
.orb-3{width:220px;height:220px; background:radial-gradient(circle, #ffffff, transparent 70%); top:38%; left:-90px; opacity:.12;}

.onboard-content{
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center;
  max-width:380px;
}
.onboard-badge{
  font-size:11px; font-weight:700; letter-spacing:1.6px;
  color:#CFF0DC; background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  padding:7px 16px; border-radius:20px; margin-bottom:22px;
  backdrop-filter:blur(6px);
}

.onboard-mascot-wrap{
  position:relative; width:200px; height:200px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:6px;
}
.onboard-mascot-glow{
  position:absolute; inset:0; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.30), rgba(255,255,255,0) 68%);
  filter:blur(2px);
}
.onboard-mascot{
  position:relative; width:198px; height:auto;
  filter:drop-shadow(0 22px 30px rgba(0,0,0,.35));
  animation:mascot-float 4.5s ease-in-out infinite;
}
@keyframes mascot-float{
  0%,100%{ transform:translateY(0) rotate(-1deg); }
  50%{ transform:translateY(-10px) rotate(1deg); }
}

.onboard-title{
  font-family:var(--font-display);
  font-size:44px; font-weight:800; letter-spacing:1.5px;
  margin:6px 0 0;
  background:linear-gradient(180deg, #FFFFFF, #DFF3E7);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow:0 2px 24px rgba(0,0,0,.15);
}
.onboard p.tag{
  opacity:.9; font-size:15.5px; line-height:1.55; margin:10px 0 26px; color:#EAF7EF;
}

.onboard-chips{
  display:flex; flex-wrap:wrap; justify-content:center; gap:9px;
  margin-bottom:30px;
}
.chip-pill{
  display:flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color:#EAF7EF;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 13px; border-radius:20px;
  backdrop-filter:blur(6px);
}
.chip-pill svg{width:14px;height:14px; flex-shrink:0; color:#B9E8C7;}

.onboard-cta{
  display:flex; align-items:center; justify-content:center; gap:9px;
  border:none; cursor:pointer;
  width:100%; max-width:280px;
  background:#FFFFFF; color:var(--green-900);
  font-weight:800; font-size:16px;
  padding:16px 22px; border-radius:16px;
  box-shadow:0 18px 34px -12px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.5) inset;
  transition:transform .15s ease, box-shadow .15s ease;
}
.onboard-cta:active{ transform:scale(.97); }
.onboard-cta svg{width:19px;height:19px;}
.onboard-foot{
  margin:16px 0 0; font-size:12px; color:rgba(255,255,255,.62); letter-spacing:.2px;
}

.hidden{display:none !important;}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important;}
}
