:root {
  --red: #3e63dd; --red-dark: #3358d4; --ink: #1b2230; --muted: #6b7685;
  --line: #e6e9ef; --bg: #f6f8fb; --card: #fff;
  --ok: #1a8754; --err: #d83a3a;
  --shadow: 0 1px 3px rgba(20,30,50,.08), 0 12px 30px rgba(20,30,50,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
h1, h2, h3 { letter-spacing: -.02em; }
a { color: inherit; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; text-decoration: none; }
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 14px; }
.nav nav a:hover { color: var(--ink); }
.nav .cta { background: var(--red); color: #fff; padding: 8px 16px; border-radius: 9px; }
.nav .cta:hover { background: var(--red-dark); color: #fff; }
@media (max-width: 720px) { .nav nav a:not(.cta) { display: none; } }

/* hero */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 70px 28px 40px;
}
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; padding-top: 44px; } }
.pill { display: inline-block; background: #eef1fd; color: var(--red); font-weight: 700; font-size: 12.5px;
  padding: 5px 12px; border-radius: 20px; }
.hero h1 { font-size: 48px; line-height: 1.07; margin: 16px 0 14px; }
@media (max-width: 880px) { .hero h1 { font-size: 36px; } }
.hero p { font-size: 17px; color: #44505f; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; margin: 24px 0 10px; flex-wrap: wrap; }
.btn { text-decoration: none; font-weight: 700; padding: 13px 22px; border-radius: 11px; font-size: 15px; display: inline-block; }
.btn.primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(62,99,221,.28); }
.btn.primary:hover { background: var(--red-dark); }
.btn.ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn.ghost:hover { border-color: #c8cdd4; }
.tiny { font-size: 13px; color: var(--muted); }
.proof { font-size: 14.5px; color: #2c4a36; background: #e8f6ee; border: 1px solid #c4e6d2;
  border-radius: 12px; padding: 12px 16px; margin: 22px 0 10px; }
.proof strong { color: #15703f; }

/* who it's for */
.fit { max-width: 1000px; margin: 0 auto; padding: 64px 28px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
@media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card { border-radius: 16px; padding: 24px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.fit-card.good { background: #f1faf4; border-color: #cdeedb; }
.fit-card.bad { background: #fbf8f0; border-color: #ece1c8; }
.fit-card h3 { margin: 0 0 10px; font-size: 18px; }
.fit-card ul { margin: 0; padding-left: 20px; }
.fit-card li { margin-bottom: 8px; color: #3a4453; font-size: 14.5px; }

/* download reassurance */
.reassure { max-width: 720px; margin: 28px auto 0; text-align: left; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 24px; box-shadow: var(--shadow); }
.reassure p { margin: 0 0 10px; color: #3a4453; font-size: 14.5px; }
.reassure .steps-inline { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.reassure .steps-inline span { font-size: 14px; }
.reassure .tiny { margin: 4px 0 0; }
.reassure .cmd { background: #11161c; color: #e6edf3; border-radius: 8px; padding: 11px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; overflow-x: auto; margin: 6px 0 12px; }

/* app preview (real screenshot) */
.preview img {
  width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: var(--shadow); transform: rotateY(-7deg) rotateX(2deg); transform-origin: left center;
}
@media (max-width: 880px) { .preview img { transform: none; } }

/* screenshots gallery */
.shots { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shots .shot-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; max-width: 1080px; margin: 30px auto 0; }
@media (max-width: 860px) { .shots .shot-grid { grid-template-columns: 1fr; } }
.shots figure { margin: 0; }
.shots img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.shots figcaption { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 10px; font-weight: 600; }

/* strip */
.strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 22px 28px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; font-size: 14.5px; color: #44505f; }
.strip strong { color: var(--ink); }

/* sections */
section h2 { font-size: 32px; text-align: center; margin: 0 0 8px; }
.features, .how, .banks, .download { max-width: 1080px; margin: 0 auto; padding: 64px 28px; }
.sub { text-align: center; color: var(--muted); margin: 0 auto 30px; max-width: 560px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.card .ico { font-size: 28px; }
.card h3 { margin: 12px 0 6px; font-size: 18px; }
.card p { margin: 0; color: #44505f; font-size: 14.5px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 10px; }
.step span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 800; font-size: 20px; }
.step h3 { margin: 14px 0 6px; font-size: 18px; }
.step p { color: #44505f; margin: 0; }

.bankrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.bk { display: flex; flex-direction: column; align-items: center; gap: 4px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 22px; min-width: 130px; opacity: .65; }
.bk.on { opacity: 1; box-shadow: var(--shadow); }
.bk span { width: 42px; height: 42px; border-radius: 11px; color: #fff; font-weight: 800; display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 2px 6px rgba(20,30,50,.14); }
.bk em { font-style: normal; font-weight: 700; }
.bk i { font-style: normal; }
.bk em + em { color: var(--muted); }
.bk em:last-child { font-size: 11.5px; font-weight: 600; color: var(--muted); }

/* download */
.download { text-align: center; }
.dl-primary-wrap { margin: 26px auto 6px; }
.dl-primary { font-size: 17px; padding: 16px 30px; }
.dl-primary-wrap .tiny { margin: 10px 0 0; color: var(--muted); }
.dl-other { margin: 22px 0 0; color: var(--muted); }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 12px auto 0; }
.dl.detected { border-color: var(--red); box-shadow: 0 6px 18px rgba(62,99,221,.18); position: relative; }
.dl.detected::after { content: 'Your platform'; position: absolute; top: 10px; right: 12px; font-size: 11px; font-weight: 700; color: var(--red); }
@media (max-width: 720px) { .dl-grid { grid-template-columns: 1fr; } }
.dl { text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); transition: transform .12s, border-color .12s; }
.dl:hover { transform: translateY(-3px); border-color: var(--red); }
.dl strong { font-size: 18px; }
.dl span { color: var(--muted); font-size: 13.5px; }
.note { margin-top: 22px; color: var(--muted); font-size: 13.5px; }

/* legal page */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 28px 72px; }
.legal h1 { font-size: 34px; margin: 0 0 4px; }
.legal .updated { color: var(--muted); font-size: 13px; margin: 0 0 22px; }
.legal h2 { font-size: 19px; margin: 28px 0 6px; }
.legal p { color: #3a4453; font-size: 15px; }
.legal a { color: var(--red); }
.legal .back { margin-top: 32px; font-weight: 700; }

/* footer */
.foot { border-top: 1px solid var(--line); background: #fff; padding: 34px 28px; text-align: center; }
.foot > div { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; }
.foot nav { display: flex; gap: 20px; justify-content: center; margin: 16px 0; flex-wrap: wrap; }
.foot nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px; }
.foot nav a:hover { color: var(--ink); }
.disclaimer { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 12.5px; }

/* ---- two-tone wordmark ---- */
.brand .ac, .foot .ac { color: var(--red); }

/* ---- hero entrance animation (runs on page load) ---- */
@keyframes heroUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes brandPop { from { opacity: 0; transform: scale(.8) rotate(-6deg); } to { opacity: 1; transform: none; } }
.hero-text > * { opacity: 0; animation: heroUp .6s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-text > *:nth-child(1) { animation-delay: .05s; }
.hero-text > *:nth-child(2) { animation-delay: .12s; }
.hero-text > *:nth-child(3) { animation-delay: .19s; }
.hero-text > *:nth-child(4) { animation-delay: .26s; }
.hero-text > *:nth-child(5) { animation-delay: .33s; }
.hero-text > *:nth-child(6) { animation-delay: .40s; }
.preview { animation: heroIn .75s cubic-bezier(.22,.61,.36,1) .22s both; }
.nav .brand img { animation: brandPop .6s cubic-bezier(.22,.61,.36,1) both; }
@media (prefers-reduced-motion: reduce) {
  .hero-text > *, .preview, .nav .brand img { animation: none; opacity: 1; transform: none; }
}
