/* ============================================================
   Paisa — marketing site
   Arham Ashraf Productions

   Palette: a green-black ground, warm cream type, champagne
   hairlines and a jade accent. Gold on near-black is the oldest
   luxury signal there is; the jade keeps it reading as fintech
   rather than jewellery, and warm cream instead of pure white
   is what stops it looking like every other dark landing page.
   ============================================================ */

:root {
  /* ground */
  --ink:      #04100D;
  --ink-2:    #071713;
  --surface:  #0A1F1A;
  --surface-2:#0D2721;
  --raise:    #103029;

  /* type */
  --cream:    #F4F0E6;
  --mist:     #AFC1B9;
  --faint:    #6E837B;

  /* accents */
  --jade:     #4FE0BC;
  --jade-dim: #2BB697;
  --gold:     #DCB878;
  --gold-lit: #F2DCAF;
  --rose:     #E8907A;

  /* lines, always gold-tinted — never plain grey */
  --hair:     rgba(220, 184, 120, .16);
  --hair-2:   rgba(220, 184, 120, .09);
  --glass:    rgba(244, 240, 230, .045);

  --ease:     cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --spring:   cubic-bezier(.34, 1.4, .5, 1);

  --serif: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI",
          Inter, Roboto, "Helvetica Neue", sans-serif;

  --pad: clamp(20px, 5vw, 56px);
  --max: 1180px;
}

* { box-sizing: border-box; }
/* the eased scroll is driven by script; leaving CSS smooth-scroll on as
   well makes anchor jumps fight the damping */
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* a fine grain over everything — the single cheapest way to stop
   large flat dark areas looking like dead pixels */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .038; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* ============================================================
   TYPE
   ============================================================ */
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.02em; line-height: 1.1; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.d1 { font-size: clamp(40px, 5.6vw, 70px); }
.d2 { font-size: clamp(31px, 4.2vw, 52px); }
.d3 { font-size: clamp(26px, 3.4vw, 38px); }

.gild {
  background: linear-gradient(105deg, var(--gold-lit) 10%, var(--gold) 45%, #B08C4F 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.jaded {
  background: linear-gradient(105deg, #8FFFE4 5%, var(--jade) 50%, var(--jade-dim) 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
em.quiet { font-family: var(--serif); font-style: italic; color: var(--gold); }

.lede { font-size: clamp(17px, 2vw, 20px); color: var(--mist); line-height: 1.72; }
.muted { color: var(--mist); }
.small { font-size: 14px; color: var(--faint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; padding: clamp(72px, 11vw, 148px) 0; }
.tight { padding: clamp(48px, 7vw, 88px) 0; }

.rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--hair) 15%, var(--hair) 85%, transparent);
}

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.split {
  display: grid; gap: clamp(30px, 5vw, 72px);
  grid-template-columns: 1.08fr .92fr; align-items: center;
}
.split.flip > *:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > *:first-child { order: 0; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: transform .75s var(--ease-out), background .5s var(--ease),
              border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
  will-change: transform;
}
.nav.stuck {
  background: rgba(4, 16, 13, .78);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--hair-2);
}
.nav.hide { transform: translateY(-102%); }

.nav-in {
  max-width: var(--max); margin: 0 auto; padding: 16px var(--pad);
  display: flex; align-items: center; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.brand-txt b {
  display: block; font-size: 16px; font-weight: 600; letter-spacing: -.01em; line-height: 1.1;
}
.brand-txt span {
  display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .19em;
  text-transform: uppercase; color: var(--gold); margin-top: 2px;
}

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  position: relative; padding: 9px 15px; border-radius: 99px;
  font-size: 14px; color: var(--mist); transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.on::after { transform-origin: left; }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.on::after { transform: scaleX(1); }
.nav-links a.on { color: var(--cream); }

.navcta { flex: none; }
.burger {
  display: none; width: 42px; min-width: 42px; height: 42px; margin-left: auto;
  background: none; border: 1px solid var(--hair); border-radius: 12px;
  position: relative; cursor: pointer;
}
.burger i {
  position: absolute; left: 12px; width: 18px; height: 1.5px; background: var(--cream);
  border-radius: 2px; transition: transform .4s var(--spring), opacity .2s;
}
.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 20px; }
.burger i:nth-child(3) { top: 25px; }
body.nav-open .burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .burger i:nth-child(2) { opacity: 0; }
body.nav-open .burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 860px) {
  /* `.btn` sets display:inline-flex later in the sheet and at equal
     specificity, so hiding the CTA needs one more class to win */
  .nav .nav-links, .nav .navcta { display: none; }
  .burger { display: block; flex: none; }
  .nav-in { gap: 12px; }
  .brand-txt b { font-size: 15px; }
}

/* mobile sheet */
.menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(4, 16, 13, .97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--pad);
  opacity: 0; pointer-events: none;
  /* visibility, not just opacity: backdrop-filter keeps filtering what is
     behind it even at opacity 0, which blurred the entire page through an
     overlay nobody could see */
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
body.nav-open .menu { opacity: 1; pointer-events: auto; visibility: visible; }
.menu a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 46px);
  padding: 12px 0; border-bottom: 1px solid var(--hair-2);
  opacity: 0; transform: translateY(18px);
}
body.nav-open .menu a { animation: menuIn .5s var(--ease-out) forwards; }
body.nav-open .menu a:nth-child(1) { animation-delay: .06s; }
body.nav-open .menu a:nth-child(2) { animation-delay: .12s; }
body.nav-open .menu a:nth-child(3) { animation-delay: .18s; }
body.nav-open .menu a:nth-child(4) { animation-delay: .24s; }
body.nav-open .menu a:nth-child(5) { animation-delay: .30s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

/* reading progress */
.prog {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 210;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  transform: scaleX(0); transform-origin: left; will-change: transform;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 99px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 600; letter-spacing: .01em; cursor: pointer;
  position: relative; overflow: hidden;
  transition: box-shadow .45s var(--ease), border-color .35s, color .35s, filter .25s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { filter: brightness(.94); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-lit), var(--gold) 55%, #BE9855);
  color: #14100A;
  box-shadow: 0 10px 34px rgba(220, 184, 120, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn-gold:hover { box-shadow: 0 18px 52px rgba(220, 184, 120, .36); }

.btn-jade {
  background: linear-gradient(135deg, #7CF0D6, var(--jade) 60%, var(--jade-dim));
  color: #04100D;
  box-shadow: 0 10px 34px rgba(79, 224, 188, .22);
}
.btn-jade:hover { box-shadow: 0 18px 52px rgba(79, 224, 188, .34); }

.btn-ghost { border-color: var(--hair); color: var(--cream); background: var(--glass); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lit); }

.btn-lg { padding: 18px 34px; font-size: 16px; }

/* a slow sweep of light across the primary button */
.btn-gold::after, .btn-jade::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-18deg);
  animation: sweep 4.5s var(--ease) 1.5s infinite;
}
@keyframes sweep { 0% { left: -60%; } 55%, 100% { left: 140%; } }

/* ============================================================
   SURFACES
   ============================================================ */
.card {
  --lit: 0; --mx: 50%; --my: 50%;
  position: relative; border-radius: 22px; padding: clamp(22px, 2.6vw, 32px);
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--hair-2);
  transform-style: preserve-3d;
  /* transform is driven per-frame by script; only the paint properties
     transition here, or the two would fight each other */
  transition: border-color .5s var(--ease), box-shadow .6s var(--ease-out);
  overflow: hidden;
}
.card:hover {
  border-color: var(--hair);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}
/* hairline that lights along the top edge */
.card::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: calc(var(--lit) * .75); pointer-events: none;
}
/* and a soft pool of light following the cursor */
.card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx) var(--my),
    rgba(220, 184, 120, .09), transparent 62%);
  opacity: var(--lit);
}
.card > * { position: relative; z-index: 1; }

.card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 600; letter-spacing: -.015em; }
.card p { margin: 0; color: var(--mist); font-size: 14.5px; line-height: 1.68; }

.ic {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(79, 224, 188, .09);
  border: 1px solid rgba(79, 224, 188, .2);
  color: var(--jade);
}
.ic.gold { background: rgba(220, 184, 120, .1); border-color: rgba(220, 184, 120, .24); color: var(--gold); }
.ic svg { width: 22px; height: 22px; }

/* numbered steps */
.step { display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--hair-2); }
.step:last-child { border-bottom: 1px solid var(--hair-2); }
.step-n {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px; color: var(--gold);
  border: 1px solid var(--hair);
}
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { color: var(--mist); font-size: 14.5px; margin: 0; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair-2); border-radius: 20px; overflow: hidden; border: 1px solid var(--hair-2); }
.stat { background: var(--ink-2); padding: clamp(22px, 3vw, 34px) 18px; text-align: center; }
.stat b {
  display: block; font-family: var(--serif); font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 400; letter-spacing: -.03em; color: var(--gold-lit);
}
.stat span { display: block; font-size: 12px; color: var(--faint); margin-top: 8px; letter-spacing: .04em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* quote / pull */
.pull {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 26px;
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4; letter-spacing: -.02em;
}

/* checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--mist); }
.checks li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--jade); }
.checks li b { color: var(--cream); font-weight: 600; }
.checks.cross li svg { color: var(--rose); }

/* table */
.tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tbl th {
  text-align: left; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; padding: 0 14px 14px;
}
.tbl td { padding: 15px 14px; border-top: 1px solid var(--hair-2); color: var(--mist); vertical-align: top; }
.tbl td:first-child { color: var(--cream); font-weight: 500; }
.tbl .yes { color: var(--jade); font-weight: 600; }
.tbl .no { color: var(--faint); }

/* ============================================================
   AURORA — the drifting light behind the hero
   ============================================================ */
.aurora {
  position: absolute; inset: -20% -10%; z-index: -1; pointer-events: none;
  filter: blur(90px); opacity: .58; will-change: transform;
}
.aurora i { position: absolute; display: block; border-radius: 50%; }
.aurora i:nth-child(1) {
  width: 46vw; height: 46vw; left: -6%; top: -6%;
  background: radial-gradient(circle, rgba(79, 224, 188, .40), transparent 66%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.aurora i:nth-child(2) {
  width: 40vw; height: 40vw; right: -4%; top: 14%;
  background: radial-gradient(circle, rgba(220, 184, 120, .34), transparent 66%);
  animation: drift2 26s var(--ease) infinite alternate;
}
.aurora i:nth-child(3) {
  width: 34vw; height: 34vw; left: 32%; bottom: -14%;
  background: radial-gradient(circle, rgba(43, 182, 151, .30), transparent 66%);
  animation: drift3 30s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate3d(12vw, 9vh, 0) scale(1.18); } }
@keyframes drift2 { to { transform: translate3d(-11vw, 13vh, 0) scale(1.12); } }
@keyframes drift3 { to { transform: translate3d(7vw, -11vh, 0) scale(1.22); } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(120px, 17vw, 190px); padding-bottom: clamp(60px, 8vw, 100px); overflow: hidden; }
.hero .split { align-items: center; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { max-width: 30rem; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 24px; font-size: 13px; color: var(--faint); display: flex; align-items: center; gap: 9px; }
.hero-note svg { width: 15px; height: 15px; color: var(--jade); }

/* ============================================================
   PHONE — the app rebuilt in markup, so it stays sharp
   and can animate. No screenshots to go stale.
   ============================================================ */
.stage { position: relative; display: grid; place-items: center; perspective: 1500px; }
/* its own layer purely so the scroll drift and the pointer tilt are not
   both writing transform on the same element */
.stage-drift { display: contents; }
@supports (transform: translate3d(0,0,0)) {
  .stage-drift { display: block; will-change: transform; }
}
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 620;
  border-radius: 46px; padding: 10px;
  background: linear-gradient(160deg, #26302C, #0B1512 55%, #1C2622);
  box-shadow:
    0 60px 110px rgba(0, 0, 0, .62),
    0 0 0 1px rgba(220, 184, 120, .17),
    inset 0 1px 0 rgba(255, 255, 255, .11);
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(.6deg);
  transform-style: preserve-3d;
  will-change: transform;
  /* no CSS transition and no float keyframe: both are driven per frame by
     script, and a transition on top of that produces visible lag */
}

/* specular highlight that tracks the pointer across the glass */
.glare {
  position: absolute; top: -60%; left: -30%;
  width: 60%; height: 220%; pointer-events: none; z-index: 8;
  background: linear-gradient(90deg, transparent,
    rgba(255, 255, 255, .58), transparent);
  opacity: 0; filter: blur(14px); will-change: transform, opacity;
}

.screen {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  border-radius: 37px; background: #F4F6F8; color: #101620;
  font-size: 10px; line-height: 1.45;
}
.notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 20px; background: #0B1512; border-radius: 99px; z-index: 6;
}

/* the miniature app.
   Screens do not cross-fade: the outgoing one sinks back and blurs
   while the incoming one rises through it, so the change reads as the
   app navigating rather than two pictures swapping. */
.mini {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity .52s var(--ease-out),
    transform .62s var(--ease-out),
    filter .52s var(--ease-out);
  will-change: transform, opacity;
}
.mini.on { opacity: 1; pointer-events: auto; transform: none; filter: blur(0); z-index: 2; }

/* leaving */
.mini.out-back { opacity: 0; transform: translate3d(0, -5%, 0) scale(.94); filter: blur(9px); z-index: 1; }
.mini.out-fwd  { opacity: 0; transform: translate3d(0, 5%, 0) scale(.94); filter: blur(9px); z-index: 1; }

/* the state an arriving screen starts from, applied for one frame */
.mini.pre-fwd  { opacity: 0; transform: translate3d(0, 7%, 0) scale(1.05); filter: blur(9px); transition: none; }
.mini.pre-back { opacity: 0; transform: translate3d(0, -7%, 0) scale(1.05); filter: blur(9px); transition: none; }

/* the rows inside arrive a beat after the screen itself */
.m-body > * {
  transition: opacity .5s var(--ease-out), transform .58s var(--ease-out);
}
.mini:not(.on) .m-body > * { opacity: 0; transform: translate3d(0, 16px, 0); }
.mini.on .m-body > * { opacity: 1; transform: none; }

.m-top { padding: 34px 14px 9px; border-bottom: 1px solid #E6EAF0; }
.m-studio {
  font-size: 5.4px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: #8A94A8; text-align: center; margin-bottom: 7px;
}
.m-title { font-size: 13px; font-weight: 650; letter-spacing: -.02em; }
.m-sub { font-size: 7.4px; color: #8A94A8; margin-top: 1px; }

.m-body { flex: 1; padding: 11px; overflow: hidden; display: grid; gap: 8px; align-content: start; }

.m-hero {
  border-radius: 15px; padding: 13px; background: #fff;
  border: 1px solid #E6EAF0; box-shadow: 0 8px 20px rgba(16, 26, 48, .06);
}
.m-lab { font-size: 5.8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #8A94A8; }
.m-big { font-size: 26px; font-weight: 700; letter-spacing: -.04em; margin: 3px 0 2px; }
.m-note { font-size: 7.6px; color: #58627A; }
.m-bar { height: 5px; border-radius: 4px; background: #EAEEF3; margin-top: 9px; overflow: hidden; }
.m-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, #0D7C6B, #0B6FA8); }
.m-foot { display: flex; justify-content: space-between; font-size: 6.6px; color: #8A94A8; margin-top: 5px; }

.m-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.m-c { background: #fff; border: 1px solid #E6EAF0; border-radius: 11px; padding: 8px 9px; }
.m-c b { display: block; font-size: 13px; font-weight: 680; letter-spacing: -.025em; margin-top: 3px; }
.m-c span { font-size: 5.6px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8A94A8; }
.m-c em { display: block; font-style: normal; font-size: 6.4px; color: #8A94A8; margin-top: 1px; }

.m-row {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #E6EAF0; border-radius: 11px; padding: 7px 9px;
}
.m-dot { width: 21px; height: 21px; border-radius: 7px; flex: none; display: grid; place-items: center; }
.m-row b { display: block; font-size: 8.4px; font-weight: 600; }
.m-row em { display: block; font-style: normal; font-size: 6.6px; color: #8A94A8; }
.m-amt { margin-left: auto; font-size: 9px; font-weight: 680; }

.m-tip {
  background: linear-gradient(160deg, rgba(13, 124, 107, .08), #fff);
  border: 1px solid rgba(13, 124, 107, .2); border-radius: 13px; padding: 10px 11px;
}
.m-tip b { display: block; font-size: 8.6px; font-weight: 640; margin-bottom: 3px; }
.m-tip p { margin: 0; font-size: 7.2px; color: #58627A; line-height: 1.55; }
.m-tip i { display: block; font-style: normal; font-size: 7.6px; font-weight: 700; color: #0B7A5C; margin-top: 6px; }

.m-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 0 12px; border-top: 1px solid #E6EAF0; background: #fff;
}
.m-nav span { width: 13px; height: 13px; border-radius: 4px; background: #D4DBE4; }
.m-nav span.act { background: #0D7C6B; }
.m-fab {
  width: 30px; height: 30px; border-radius: 11px; margin-top: -14px;
  background: linear-gradient(135deg, #0D7C6B, #0B6FA8);
  display: grid; place-items: center; color: #fff; font-size: 15px; font-weight: 300;
  box-shadow: 0 6px 14px rgba(13, 124, 107, .35);
}

/* label under the phone showing which screen is live */
.stage-tabs {
  position: relative; display: flex; gap: 7px; justify-content: center;
  margin-top: 30px; padding: 4px; border-radius: 99px;
  border: 1px solid var(--hair-2); width: fit-content; margin-inline: auto;
}
.stage-tabs button {
  position: relative; z-index: 1;
  padding: 9px 18px; border-radius: 99px; cursor: pointer; font-size: 12.5px;
  background: transparent; border: 0; color: var(--faint);
  transition: color .4s var(--ease);
}
.stage-tabs button.on { color: var(--gold-lit); }
/* one pill that slides between the tabs instead of three that flash */
.tab-pill {
  position: absolute; top: 4px; bottom: 4px; left: 0; border-radius: 99px;
  background: rgba(220, 184, 120, .1);
  border: 1px solid var(--gold);
  transition: transform .55s var(--ease-out), width .55s var(--ease-out);
  will-change: transform, width;
  pointer-events: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marq { overflow: hidden; padding: 22px 0; border-block: 1px solid var(--hair-2); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marq-in {
  display: flex; gap: 14px; width: max-content;
  animation: slide 46s linear infinite;
  will-change: transform;
}
.marq:hover .marq-in { animation-play-state: paused; }
.chip { transition: border-color .45s var(--ease), color .45s var(--ease), background .45s var(--ease); }
.marq .chip:hover { border-color: var(--gold); color: var(--gold-lit); }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
  flex: none; padding: 9px 18px; border-radius: 99px; font-size: 13.5px;
  border: 1px solid var(--hair-2); color: var(--mist); background: var(--glass);
  white-space: nowrap;
}

/* ============================================================
   REVEAL — content is wiped up behind a soft mask rather than
   simply faded, which reads as a deliberate entrance instead of
   an element that forgot to load
   ============================================================ */
[data-r] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(7px);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 1.05s var(--ease-out),
    transform 1.15s var(--ease-out),
    filter .8s var(--ease-out),
    clip-path 1.15s var(--ease-out);
  will-change: transform, opacity;
}
[data-r].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
/* release the compositor hint once the entrance is done */
[data-r].in { will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-r] { opacity: 1; transform: none; filter: none; clip-path: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--hair-2); padding: clamp(50px, 7vw, 82px) 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr; gap: 30px; } }
.foot-top h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.foot-links { display: grid; gap: 11px; }
.foot-links a { font-size: 14.5px; color: var(--mist); transition: color .25s, padding-left .25s; }
.foot-links a:hover { color: var(--cream); padding-left: 5px; }
.foot-bar {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--hair-2);
  font-size: 12.5px; color: var(--faint);
}
.foot-bar b { color: var(--gold); font-weight: 600; }

/* ============================================================
   DOWNLOAD PAGE
   ============================================================ */
.dl-hero { padding-top: clamp(130px, 18vw, 200px); text-align: center; }
.dl-card {
  max-width: 620px; margin: 44px auto 0; border-radius: 26px; padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(165deg, var(--surface-2), var(--ink-2));
  border: 1px solid var(--hair); box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  position: relative; overflow: hidden;
}
.dl-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(220, 184, 120, .16), transparent 60%);
  pointer-events: none;
}
.dl-icon {
  width: 84px; height: 84px; border-radius: 24px; margin: 0 auto 20px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .45), 0 0 0 1px var(--hair);
}
.dl-meta {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  margin: 22px 0 28px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--hair-2);
}
.dl-meta div { flex: 1; min-width: 104px; padding: 13px 10px; text-align: center; border-left: 1px solid var(--hair-2); }
.dl-meta div:first-child { border-left: 0; }
.dl-meta b { display: block; font-size: 14.5px; font-weight: 600; }
.dl-meta span { display: block; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

.warn {
  display: flex; gap: 13px; align-items: flex-start; text-align: left;
  padding: 16px 18px; border-radius: 14px; margin-top: 22px;
  background: rgba(220, 184, 120, .06); border: 1px solid rgba(220, 184, 120, .2);
}
.warn svg { width: 19px; height: 19px; flex: none; color: var(--gold); margin-top: 2px; }
.warn p { margin: 0; font-size: 13.5px; color: var(--mist); line-height: 1.65; }
.warn b { color: var(--cream); }

/* FAQ */
.faq { border-top: 1px solid var(--hair-2); }
.faq:last-of-type { border-bottom: 1px solid var(--hair-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-size: 16.5px; font-weight: 500; transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-lit); }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .35s var(--ease);
}
.faq[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq p { margin: 0 0 22px; color: var(--mist); font-size: 15px; max-width: 62ch; line-height: 1.72; }
.faq[open] p { animation: rise .5s var(--ease-out); }

/* ============================================================
   MISC
   ============================================================ */
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.narrow { max-width: 720px; margin-inline: auto; }
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 34px; }
.mt-l { margin-top: 56px; }
.cta-band {
  border-radius: 28px; padding: clamp(40px, 6vw, 74px) clamp(24px, 4vw, 56px);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(79, 224, 188, .13), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(220, 184, 120, .13), transparent 55%),
    linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--hair); text-align: center;
}
