/* FeePay — static build. Dark theme, mint + purple, Bricolage Grotesque / Manrope. */

:root {
  --bg: #0D0E22;
  --bg-deep: #07081A;
  --surface: #14162E;
  --surface-2: #1A1C3A;
  --surface-3: #1B1D3C;
  --mock: #0F1128;
  --mint: #12E0B8;
  --mint-hi: #1BEFC4;
  --mint-soft: #7FE9D6;
  --mint-ink: #002419;
  --purple: #5730E5;
  --lav: #B99FFF;
  --lav-hi: #CDBBFF;
  --lav-soft: #C9C2EE;
  --ink: #F3F3FF;
  --ink-2: #E1E1FF;
  --muted: #8F87C4;
  --muted-2: #6F65A8;
  --wa: #25D366;
  --wa-hi: #2CDF6E;
  --wa-ink: #052B14;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.10);
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: Manrope, system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
  --pad: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { display: block; }
a { color: var(--mint); text-decoration: none; }
a:hover { color: #6FF0D6; }
input, select, button, textarea { font-family: inherit; font-size: 16px; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- shell ---------- */

.page { position: relative; min-height: 100vh; background: var(--bg); overflow-x: clip; }

.glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.45;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(87, 48, 229, 0.30), transparent 60%),
    radial-gradient(800px 500px at -10% 26%, rgba(18, 224, 184, 0.16), transparent 55%);
}

main { position: relative; z-index: 1; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.sec { padding: clamp(48px, 7vw, 96px) 0; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 14, 34, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 72px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: #FFFFFF; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 999px; font-weight: 700; cursor: pointer;
  padding: 16px 26px; font-size: 15.5px;
}
.btn-sm { padding: 12px 20px; font-size: 14.5px; white-space: nowrap; }
.btn-mint { background: var(--mint); color: var(--mint-ink); box-shadow: 0 12px 32px -12px rgba(18, 224, 184, 0.60); }
.btn-mint:hover { background: var(--mint-hi); color: var(--mint-ink); }
.btn-sm.btn-mint { box-shadow: 0 8px 24px -10px rgba(18, 224, 184, 0.55); }
.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 12px 32px -12px rgba(37, 211, 102, 0.50); }
.btn-wa:hover { background: var(--wa-hi); color: var(--wa-ink); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); color: var(--ink); font-weight: 600; padding: 12px 18px; font-size: 14.5px; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); color: var(--ink); }

.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px;
  background: rgba(37, 211, 102, 0.14); border: 1px solid rgba(37, 211, 102, 0.35); color: var(--wa);
}
.icon-btn:hover { background: rgba(37, 211, 102, 0.24); color: var(--wa); }

.burger {
  display: none; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.04);
  color: var(--ink); cursor: pointer;
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; display: none;
  flex-direction: column; gap: 6px; padding: 24px 22px 32px;
  background: rgba(7, 8, 26, 0.96); backdrop-filter: blur(18px);
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.mobile-menu-top img { height: 28px; width: auto; }
.mobile-menu-top .burger { display: grid; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--display); font-size: 24px; color: #FFFFFF;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: auto; }

@media (max-width: 899px) {
  .nav { display: none; }
  .burger { display: grid; }
}

/* ---------- section headings ---------- */

.sec-head { max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.eyebrow .rule { width: 22px; height: 1px; background: currentColor; }
.eyebrow-mint { color: var(--mint); }
.eyebrow-lav { color: var(--lav); }
.eyebrow-muted { color: var(--muted); }
.sec-title {
  margin-top: 16px; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.04;
  letter-spacing: -0.032em; color: #FFFFFF;
}
.sec-title em { font-style: normal; color: var(--mint); }
.sec-lede {
  margin: 18px 0 0; font-size: clamp(15.5px, 1.5vw, 17.5px); line-height: 1.6;
  color: var(--ink-2); max-width: 600px; text-wrap: pretty;
}

/* ---------- hero ---------- */

.hero { padding: clamp(36px, 6vw, 72px) 0 clamp(28px, 4vw, 44px); }
.hero-grid {
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lav);
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(18, 224, 184, 0.14); }
.hero-title {
  font-size: clamp(38px, 6.4vw, 74px); line-height: 1.02; letter-spacing: -0.035em;
  color: #FFFFFF; text-wrap: balance;
}
.hero-lede {
  margin: 24px 0 0; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6;
  color: var(--ink-2); max-width: 620px; text-wrap: pretty;
}
.hero-lede strong { color: #FFFFFF; font-weight: 700; }
.urdu {
  margin: 18px 0 0; text-align: right; max-width: 620px;
  font-family: 'Noto Nastaliq Urdu', serif; font-size: 17px; line-height: 2.2; color: var(--lav);
}
.cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-note { margin: 16px 0 0; font-size: 13.5px; color: var(--muted); }

/* ---------- product mockups ---------- */

.mock {
  border-radius: 22px; border: 1px solid var(--line-2); overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.80);
}
.mock-hero { width: 100%; max-width: 560px; margin-left: auto; }
.mock-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02);
}
.mock-head-title { display: flex; align-items: center; gap: 8px; }
.mock-head-title span:last-child { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-2); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
.tag-live {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mint); padding: 4px 9px; border-radius: 999px;
  background: rgba(18, 224, 184, 0.12); border: 1px solid rgba(18, 224, 184, 0.28); white-space: nowrap;
}
.mock-body { padding: 18px; display: grid; gap: 14px; }

.stat-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); }
.stat { padding: 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2); }
.stat-mint { background: rgba(18, 224, 184, 0.08); border-color: rgba(18, 224, 184, 0.22); }
.stat-purple { background: rgba(87, 48, 229, 0.14); border-color: rgba(185, 159, 255, 0.24); }
.stat-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.stat-mint .stat-label { color: var(--mint-soft); }
.stat-purple .stat-label { color: var(--lav); }
.stat-value {
  margin-top: 6px; font-family: var(--display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: #FFFFFF;
}

.txn-list { display: grid; gap: 8px; }
.txn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}
.txn-who { min-width: 0; }
.txn-name { font-size: 13.5px; font-weight: 700; color: #FFFFFF; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.txn-meta { font-size: 11.5px; color: var(--muted); }
.txn-amt { font-size: 13.5px; font-weight: 700; color: var(--mint); white-space: nowrap; }
.txn-amt.pending { color: var(--lav); }

/* ---------- logo marquee ---------- */

.marquee-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 22px;
}
.marquee {
  position: relative; overflow: hidden; padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.belt {
  display: flex; width: max-content; will-change: transform;
  animation: fp-belt 64s linear infinite;
}
.marquee:hover .belt, .marquee:focus .belt, .marquee:focus-within .belt { animation-play-state: paused; }
.belt-group { display: flex; align-items: center; gap: 56px; padding-right: 56px; }
.logo-slot {
  display: grid; place-items: center; width: 180px; height: 60px; flex-shrink: 0;
  border-radius: 10px; background: #fff; padding: 9px 16px;
  filter: grayscale(1); opacity: 0.78; transition: filter 0.2s, opacity 0.2s;
}
.logo-slot:hover { filter: grayscale(0); opacity: 1; }
.logo-slot img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.logo-slot span { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--lav); text-align: center; padding: 0 10px; }

@keyframes fp-belt {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- features ---------- */

.feature-stack { margin-top: clamp(32px, 4vw, 56px); }

.panel-lead {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(24px, 3.4vw, 46px);
  background:
    radial-gradient(760px 420px at 92% -10%, rgba(18, 224, 184, 0.16), transparent 62%),
    radial-gradient(600px 380px at 0% 110%, rgba(87, 48, 229, 0.22), transparent 64%),
    linear-gradient(180deg, var(--surface-3) 0%, #101226 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 50px 100px -60px rgba(0, 0, 0, 0.95);
}
.panel-lead::before {
  content: ""; position: absolute; top: 0; left: clamp(24px, 3.4vw, 46px);
  width: 120px; height: 2px; background: linear-gradient(90deg, var(--mint), transparent);
}
.panel-lead-inner { display: flex; flex-wrap: wrap; gap: clamp(26px, 3.2vw, 52px); align-items: center; }
.panel-lead-copy { flex: 1 1 300px; min-width: 0; }
.panel-lead-mock { flex: 1.3 1 330px; min-width: 0; position: relative; }

.panel-row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
.panel {
  flex: 1 1 320px; min-width: 0; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 26px;
  border-radius: 26px; padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(560px 320px at 50% -10%, rgba(18, 224, 184, 0.20), transparent 66%),
    linear-gradient(180deg, var(--surface-3) 0%, #101226 100%);
  border: 1px solid rgba(18, 224, 184, 0.22);
  transition: border-color 0.2s;
}
.panel:hover { border-color: rgba(18, 224, 184, 0.44); }
.panel-purple {
  background:
    radial-gradient(560px 320px at 50% -10%, rgba(87, 48, 229, 0.30), transparent 66%),
    linear-gradient(180deg, var(--surface-3) 0%, #101226 100%);
  border-color: rgba(185, 159, 255, 0.22);
}
.panel-purple:hover { border-color: rgba(185, 159, 255, 0.42); }

.panel-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.num {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px;
  background: rgba(18, 224, 184, 0.12); border: 1px solid rgba(18, 224, 184, 0.34);
  font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--mint);
}
.num-purple { background: rgba(87, 48, 229, 0.26); border-color: rgba(185, 159, 255, 0.34); color: var(--lav-hi); }
.panel-kicker span:last-child {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.panel-title { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1; letter-spacing: -0.025em; color: #FFFFFF; }
.panel-lead-copy .panel-title { font-size: clamp(24px, 3vw, 36px); line-height: 1.08; letter-spacing: -0.028em; max-width: 420px; }
.panel-copy { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 430px; text-wrap: pretty; }
.panel-lead-copy .panel-copy { margin-top: 14px; font-size: 16px; }

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.check-list svg { flex-shrink: 0; margin-top: 4px; }

/* small mocks */
.mock-plain { border-radius: 16px; border: 1px solid var(--line-2); background: var(--mock); overflow: hidden; box-shadow: none; }
.mock-plain-head { padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--ink-2); }
.mock-plain-body { padding: 14px; display: grid; gap: 12px; }
.stat-grid-sm { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 110px), 1fr)); }
.stat-sm { padding: 11px; border-radius: 11px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); }
.stat-sm.mint { background: rgba(18, 224, 184, 0.08); border-color: rgba(18, 224, 184, 0.20); }
.stat-sm-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.stat-sm.mint .stat-sm-label { color: var(--mint-soft); }
.stat-sm-value { margin-top: 4px; font-size: 16px; font-weight: 700; color: #FFFFFF; }

.bar-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--muted); margin-bottom: 7px; }
.bar { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.bar > div { width: 84%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--mint), var(--purple)); }

.receipt-list { display: grid; gap: 7px; }
.receipt-line {
  display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px;
  padding: 9px 11px; border-radius: 10px; background: rgba(255, 255, 255, 0.03);
}
.receipt-line span:first-child { color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.receipt-line span:last-child { color: var(--mint); font-weight: 700; white-space: nowrap; }

.float-pill {
  margin-top: -18px; margin-left: 8px; display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 999px; background: rgba(7, 8, 26, 0.94);
  border: 1px solid rgba(18, 224, 184, 0.34); box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.95);
}
.float-pill span:first-child { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(18, 224, 184, 0.18); }
.float-pill span:last-child { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--mint-soft); white-space: nowrap; }

/* invoice mock */
.invoice { max-width: 340px; width: 100%; margin: 0 auto; border-radius: 20px; border: 1px solid var(--line-2); background: var(--mock); overflow: hidden; }
.invoice-head { padding: 16px; border-bottom: 1px solid var(--line); }
.invoice-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.invoice-amount { margin-top: 8px; font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: #FFFFFF; }
.invoice-sub { margin-top: 4px; font-size: 12.5px; color: var(--lav); }
.invoice-body { padding: 14px; display: grid; gap: 9px; }
.pay-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2);
}
.pay-option.primary { background: rgba(18, 224, 184, 0.10); border-color: rgba(18, 224, 184, 0.30); }
.pay-option .name { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.pay-option.primary .name { font-weight: 700; color: #FFFFFF; }
.pay-option .hint { font-size: 11.5px; color: var(--muted); }
.pay-option.primary .hint { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); }
.invoice-foot { margin-top: 3px; font-size: 11.5px; color: var(--muted); text-align: center; }

/* receipt mock */
.receipt { max-width: 360px; width: 100%; margin: 0 auto; border-radius: 18px; border: 1px solid rgba(18, 224, 184, 0.24); background: var(--mock); overflow: hidden; }
.receipt-head {
  padding: 14px 16px; background: rgba(18, 224, 184, 0.10);
  border-bottom: 1px solid rgba(18, 224, 184, 0.20); display: flex; align-items: center; gap: 9px;
}
.receipt-head span { font-size: 13.5px; font-weight: 700; color: #FFFFFF; }
.receipt-body { padding: 16px; display: grid; gap: 10px; }
.receipt-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.receipt-row dt { color: var(--muted); margin: 0; }
.receipt-row dd { color: #FFFFFF; font-weight: 600; margin: 0; text-align: right; }
.receipt-row dd.amt { color: var(--mint); font-weight: 700; }
.receipt-note {
  margin-top: 4px; padding: 11px 13px; border-radius: 11px;
  background: rgba(18, 224, 184, 0.08); border: 1px dashed rgba(18, 224, 184, 0.32);
  font-size: 12.5px; font-weight: 700; color: var(--mint-soft);
}

/* ---------- how it works ---------- */

.how { background: linear-gradient(180deg, var(--bg) 0%, rgba(87, 48, 229, 0.14) 50%, var(--bg) 100%); }
.how-grid {
  margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.step { padding: 30px 26px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.step-num {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(18, 224, 184, 0.12); border: 1px solid rgba(18, 224, 184, 0.30);
  color: var(--mint); font-family: var(--display); font-weight: 600; font-size: 16px;
}
.step-title { margin-top: 18px; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: #FFFFFF; }
.step p { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2); color: var(--ink-2);
}
.soon {
  margin-top: 20px; padding: 16px 20px; border-radius: 14px; max-width: 720px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.09);
}
.soon p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--lav); }
.soon strong { color: #FFFFFF; font-weight: 700; }

/* ---------- benefits ---------- */

.benefit-grid {
  margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.benefit {
  padding: 28px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(26, 28, 58, 0.90) 0%, rgba(20, 22, 46, 0.90) 100%);
  border: 1px solid rgba(185, 159, 255, 0.14); transition: border-color 0.2s;
}
.benefit:hover { border-color: rgba(18, 224, 184, 0.30); }
.benefit h3 { font-size: 22px; letter-spacing: -0.02em; color: #FFFFFF; }
.dot-list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.dot-list li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.dot-list li::before {
  content: ""; flex-shrink: 0; width: 5px; height: 5px; margin-top: 8px;
  border-radius: 50%; background: var(--mint);
}
.kicker {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px dashed var(--line-2);
  font-size: 14px; color: var(--lav);
}

/* ---------- who it's for ---------- */

.who-row { margin-top: clamp(28px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-start; }

.who-primary {
  flex: 2.4 1 340px; min-width: 0; position: relative; overflow: hidden;
  border-radius: 28px; padding: clamp(26px, 3.4vw, 46px);
  background:
    radial-gradient(700px 400px at 88% -10%, rgba(18, 224, 184, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(87, 48, 229, 0.14) 0%, rgba(13, 14, 34, 0) 100%),
    #15173A;
  border: 1px solid rgba(18, 224, 184, 0.24);
  box-shadow: 0 50px 100px -60px rgba(0, 0, 0, 0.95);
}
.who-secondary {
  flex: 1 1 250px; max-width: 330px; min-width: 0; position: relative; overflow: hidden;
  border-radius: 22px; padding: 26px;
  background: linear-gradient(180deg, rgba(87, 48, 229, 0.20) 0%, rgba(13, 14, 34, 0) 70%), var(--surface);
  border: 1px solid rgba(185, 159, 255, 0.20);
}

.wm { position: absolute; pointer-events: none; }
.wm-edu { right: -18px; top: -14px; width: 168px; height: 168px; opacity: 0.14; }
.wm-health { right: -14px; top: -10px; width: 118px; height: 118px; opacity: 0.13; }

.who-head { position: relative; display: flex; align-items: center; gap: 14px; }
.icon-tile {
  display: grid; place-items: center; width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
  background: rgba(18, 224, 184, 0.12); border: 1px solid rgba(18, 224, 184, 0.34); color: var(--mint);
}
.icon-tile-sm { width: 44px; height: 44px; border-radius: 13px; background: rgba(87, 48, 229, 0.26); border-color: rgba(185, 159, 255, 0.34); color: var(--lav-hi); }
.who-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); }
.who-eyebrow-lav { font-size: 10.5px; color: var(--lav); }

.who-primary h3 {
  position: relative; margin-top: 22px; font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08; letter-spacing: -0.028em; color: #FFFFFF; max-width: 480px;
}
.who-primary > p { position: relative; margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 540px; text-wrap: pretty; }
.who-secondary h3 { position: relative; margin-top: 18px; font-size: 21px; line-height: 1.14; letter-spacing: -0.02em; color: #FFFFFF; }
.who-secondary > p { position: relative; margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--lav-soft); }

.type-grid {
  position: relative; margin-top: 28px; display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
}
.type-card {
  display: flex; flex-direction: column; gap: 12px; padding: 16px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.2s, border-color 0.2s;
}
.type-card:hover { background: rgba(18, 224, 184, 0.06); border-color: rgba(18, 224, 184, 0.34); }
.type-card span { font-size: 14px; font-weight: 600; color: #FFFFFF; }

.pill-row {
  position: relative; margin-top: 22px; padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12); display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  padding: 9px 15px; border-radius: 999px; background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 500; color: var(--ink);
}

.mini-list { position: relative; margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.mini-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.mini-list svg { flex-shrink: 0; }

/* ---------- result strip ---------- */

.result {
  position: relative; overflow: hidden; padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(135deg, var(--purple) 0%, #37219E 100%);
}
.blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; background: var(--mint); }
.blob-1 { top: 8%; right: 4%; width: clamp(120px, 18vw, 240px); height: clamp(120px, 18vw, 240px); border-radius: 64px 64px 64px 0; opacity: 0.95; }
.blob-2 { top: 46%; right: 24%; width: clamp(90px, 13vw, 180px); height: clamp(90px, 13vw, 180px); border-radius: 56px 56px 56px 0; opacity: 0.75; }
.blob-3 { bottom: -6%; right: 12%; width: clamp(110px, 16vw, 210px); height: clamp(110px, 16vw, 210px); border-radius: 60px 60px 60px 0; opacity: 0.55; }
.result .wrap { position: relative; }
.result-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72); margin-bottom: 18px;
}
.result h2 {
  max-width: 620px; font-weight: 500; font-size: clamp(36px, 6vw, 74px);
  line-height: 1.02; letter-spacing: -0.035em; color: var(--mint);
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); align-items: start;
}
.contact-title { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.04; letter-spacing: -0.032em; color: #FFFFFF; max-width: 520px; }
.contact-lede { margin: 18px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); max-width: 480px; text-wrap: pretty; }
.reassure { margin-top: 26px; display: flex; flex-direction: column; gap: 11px; }
.reassure li { display: flex; gap: 11px; font-size: 15.5px; color: var(--ink); }
.reassure svg { flex-shrink: 0; margin-top: 4px; }

.uan-card { margin-top: 32px; padding: 24px; border-radius: 20px; background: rgba(18, 224, 184, 0.06); border: 1px solid rgba(18, 224, 184, 0.20); }
.uan-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint-soft); }
.uan {
  display: inline-block; margin-top: 10px; font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 600; letter-spacing: -0.03em;
  color: var(--mint); line-height: 1.05;
}
.uan-digits { margin-top: 8px; font-size: 13.5px; color: var(--lav); }
.uan-actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.uan-actions .btn { padding: 12px 18px; font-size: 14.5px; box-shadow: none; }

.demo-form {
  padding: clamp(22px, 3vw, 32px); border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-2); display: grid; gap: 14px;
}
.form-title { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: #FFFFFF; }
.form-sub { margin: 6px 0 0; font-size: 13.5px; color: var(--lav); }
.field { display: grid; gap: 7px; min-width: 0; }
.field > span { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  width: 100%; padding: 14px 15px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF; font-size: 16px;
}
.field input::placeholder { color: var(--muted-2); }
.field-pair { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
.demo-form .btn { margin-top: 4px; }
.form-note { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); text-align: center; }
.form-note a { color: var(--mint); font-weight: 600; }

/* ---------- footer ---------- */

.site-footer { padding: clamp(40px, 5vw, 64px) 0 36px; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-about { max-width: 320px; }
.footer-about img { height: 28px; width: auto; }
.footer-about p { margin: 16px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.footer-head { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-list { display: flex; flex-direction: column; gap: 11px; }
.footer-list a { font-size: 14.5px; color: var(--ink-2); }
.footer-list a:hover { color: #FFFFFF; }
.footer-list .fine { font-size: 12.5px; color: var(--muted); margin-top: -6px; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12.5px; color: var(--muted);
}

/* ---------- legal pages ---------- */

.legal { max-width: 760px; padding: clamp(40px, 6vw, 80px) 0; }
.legal h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; color: #FFFFFF; }
.legal h2 { margin-top: 40px; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; color: #FFFFFF; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.legal p { margin: 14px 0 0; }
.legal ul { margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.legal ul li { display: flex; gap: 10px; }
.legal ul li::before { content: ""; flex-shrink: 0; width: 5px; height: 5px; margin-top: 10px; border-radius: 50%; background: var(--mint); }
.legal .updated { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .belt { flex-wrap: wrap; width: 100%; }
  .belt-group { flex-wrap: wrap; justify-content: center; gap: 28px; padding-right: 0; }
  .belt-group[aria-hidden="true"] { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}
