/* ============================================================
   TrustDepo — marketing site
   Brand: Geist · Orange #F07540 · Black #111111 · Blue #2563EB
   ============================================================ */

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --orange:        #F07540;
  --orange-hover:  #D9612B;
  --orange-light:  #FFF4EE;
  --orange-mid:    #FDDFC8;
  --blue:          #2563EB;
  --blue-hover:    #1D4ED8;
  --blue-light:    #EFF6FF;
  --black:         #111111;
  --grey-900:      #1F2937;
  --grey-700:      #374151;
  --grey-600:      #4B5563;
  --grey-500:      #6B7280;
  --grey-400:      #9CA3AF;
  --grey-300:      #D1D5DB;
  --grey-200:      #E5E7EB;
  --grey-100:      #F3F4F6;
  --grey-50:       #F9FAFB;
  --white:         #FFFFFF;

  --text:          #111111;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --text-dim:      #9CA3AF;
  --bg:            #FFFFFF;
  --bg-soft:       #F9FAFB;
  --border:        #E5E7EB;
  --border-strong: #D1D5DB;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 999px;

  --shadow-xs:   0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:      0 4px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.1),  0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-orange: 0 8px 24px rgba(240,117,64,0.3);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
@media (min-width: 1280px) {
  .container { padding: 0 2.5rem; }
}

/* ── Typography ──────────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.display-lg {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
}
.display-md {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.text-xl  { font-size: 1.25rem; line-height: 1.6; }
.text-lg  { font-size: 1.0625rem; line-height: 1.7; }
.text-base{ font-size: 1rem; line-height: 1.65; }
.text-sm  { font-size: 0.875rem; line-height: 1.5; }
.text-xs  { font-size: 0.75rem; line-height: 1.4; }

.text-muted { color: var(--text-muted); }
.text-body  { color: var(--text-body); }
.text-dim   { color: var(--text-dim); }
.text-orange{ color: var(--orange); }
.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }

.orange-text {
  background: linear-gradient(135deg, #F07540, #E06030);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Badges / chips ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-orange {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--orange-mid);
}
.badge-grey {
  background: var(--grey-100);
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
}
.badge-dark {
  background: var(--black);
  color: var(--white);
}
.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid #BFDBFE;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
              transform 0.12s ease, box-shadow 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(240,117,64,0.35);
}
.btn-orange:hover { background: var(--orange-hover); border-color: var(--orange-hover); box-shadow: var(--shadow-orange); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--grey-900); border-color: var(--grey-900); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--grey-300);
}
.btn-outline:hover { border-color: var(--black); background: var(--grey-50); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-blue:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8125rem; }
.btn-w { width: 100%; }
@media (min-width: 640px) { .btn-w { width: auto; } }

/* App store pill buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--black);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: background 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
}
.store-btn:hover { background: #222; transform: translateY(-1px); }
.store-btn-coming-soon { opacity: 0.5; cursor: default; pointer-events: none; }
.store-btn .store-label-sm { display: block; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); line-height: 1.1; }
.store-btn .store-label-lg { display: block; font-size: 0.975rem; font-weight: 600; line-height: 1.2; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-brand img { height: 1.625rem; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-full);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--black); background: var(--grey-100); }
.nav-link.active { color: var(--orange); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  color: var(--black);
  transition: background 0.15s;
}
.nav-toggle:hover { background: var(--grey-100); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 4.25rem;
  left: 1rem;
  right: 1rem;
  z-index: 99;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius); }
.mobile-drawer .btn { margin-top: 0.5rem; }
@media (min-width: 900px) { .mobile-drawer { display: none !important; } }
.drawer-hidden { display: none !important; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--grey-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-soft {
  background: var(--grey-50);
  border-color: transparent;
}
.card-soft:hover { background: var(--grey-100); border-color: transparent; box-shadow: none; transform: none; }
.card-orange {
  background: var(--orange-light);
  border-color: var(--orange-mid);
}
.card-dark {
  background: var(--black);
  border-color: transparent;
  color: var(--white);
}
.card-xl { padding: 2.5rem; border-radius: var(--radius-xl); }
@media (min-width: 768px) { .card-xl { padding: 3.5rem; } }

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: var(--orange-light);
  color: var(--orange);
  flex-shrink: 0;
}
.icon-wrap-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.icon-wrap-grey {
  background: var(--grey-100);
  color: var(--grey-700);
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 6rem 0; }
@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
  .section-sm { padding: 4rem 0; }
  .section-lg { padding: 8rem 0; }
}

.section-bg { background: var(--bg-soft); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); }

/* ── Grid utilities ──────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) { .hero { padding: 7rem 0 5rem; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-content {}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-frame {
  position: relative;
  width: 280px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  flex-shrink: 0;
}
.phone-screen {
  background: #F5F6F8;
  min-height: 560px;
  padding: 1.5rem 1.25rem;
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: #1A1A1A;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 1.25rem;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.phone-greeting { font-size: 0.7rem; color: #6B7280; }
.phone-name { font-size: 0.875rem; font-weight: 700; color: #111; }
.phone-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}
.phone-balance-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.25rem;
}
.phone-balance-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6B7280; display: flex; align-items: center; gap: 0.3rem; }
.phone-balance-label svg { color: var(--blue); }
.phone-balance-amount { font-size: 1.75rem; font-weight: 800; color: #111; margin: 0.5rem 0; letter-spacing: -0.04em; }
.phone-balance-row { display: flex; gap: 1.25rem; margin-top: 0.75rem; }
.phone-stat { display: flex; align-items: center; gap: 0.35rem; }
.phone-stat-label { font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; }
.phone-stat-value { font-size: 0.7rem; font-weight: 700; color: #111; }
.phone-stat-icon { width: 1.25rem; height: 1.25rem; background: #EFF6FF; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.phone-empty {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
}
.phone-empty-icon { font-size: 1.5rem; margin-bottom: 0.5rem; opacity: 0.4; }
.phone-empty-title { font-size: 0.75rem; font-weight: 700; color: #111; margin-bottom: 0.25rem; }
.phone-empty-sub { font-size: 0.65rem; color: #9CA3AF; margin-bottom: 1rem; }
.phone-new-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
}
.phone-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--white);
  padding: 0.75rem;
  border-top: 1px solid #F0F0F0;
  position: relative;
}
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; font-size: 0.55rem; font-weight: 600; color: #9CA3AF; }
.phone-nav-item.active { color: var(--blue); }
.phone-fab {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(240,117,64,0.4);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  position: absolute;
  top: -1.25rem;
}

/* Decorative blobs behind phone */
.phone-blob-1 {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,117,64,0.15), transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}
.phone-blob-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  bottom: -40px;
  left: -40px;
  pointer-events: none;
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}
.stat-label { font-size: 0.825rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── How it works steps ──────────────────────────────────── */
.step-card { display: flex; flex-direction: column; gap: 0.75rem; }
.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.step-connector {
  display: none;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--grey-200) 100%);
  margin-top: 1.25rem;
}
@media (min-width: 768px) { .step-connector { display: block; } }

/* ── Pricing ─────────────────────────────────────────────── */
.price-display { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.price-unit { font-size: 0.9375rem; color: var(--text-muted); margin-top: 0.25rem; }
.check-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--text-body); }
.check-item svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--orange); }

/* Example rows */
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.example-row:last-child { border-bottom: none; }
.example-row .label { color: var(--text-muted); }
.example-row .fee { color: var(--orange); font-weight: 600; }
.example-row .net { font-weight: 700; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  gap: 1rem;
  transition: background 0.15s;
}
.faq-trigger:hover { background: var(--grey-50); }
.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-600);
  transition: transform 0.22s ease, background 0.15s;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--orange-light); color: var(--orange); }
.faq-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  background: var(--white);
}
.faq-body.open { display: block; }
.faq-body a { color: var(--orange); text-decoration: underline; }

/* ── Forms ───────────────────────────────────────────────── */
input, textarea, select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--black);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--grey-400); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,117,64,0.12);
}
textarea { resize: vertical; min-height: 7rem; }
label { font-size: 0.875rem; font-weight: 500; color: var(--grey-700); display: block; margin-bottom: 0.4rem; }

/* ── Divider / hairline ──────────────────────────────────── */
.hairline { height: 1px; background: var(--border); }

/* ── Pricing table ───────────────────────────────────────── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--grey-50); }
.pricing-table .amount { font-weight: 600; }
.pricing-table .fee-col { color: var(--orange); font-weight: 600; }
.pricing-table .net-col { font-weight: 700; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-method { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Role rows (careers) ─────────────────────────────────── */
.role-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.role-row:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .role-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.role-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Legal prose ─────────────────────────────────────────── */
.prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-size: 1.0625rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.prose p { color: var(--text-body); line-height: 1.75; margin-bottom: 0.875rem; }
.prose ul { color: var(--text-body); list-style: disc; padding-left: 1.5rem; margin-bottom: 0.875rem; }
.prose li { margin-bottom: 0.4rem; line-height: 1.7; }
.prose a { color: var(--orange); text-decoration: underline; }
.prose .meta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 1rem; display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 1.5rem; width: auto; margin-bottom: 0.875rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.65; max-width: 24rem; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 600; color: var(--white); margin-bottom: 0.875rem; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Calculator ──────────────────────────────────────────── */
.calc-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.calc-row:last-child { border-bottom: none; }
.calc-row .key { color: var(--text-muted); }
.calc-row.total { font-weight: 700; }
.calc-row.total .val { color: var(--orange); }

/* ── Misc helpers ────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 7rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .page-hero { padding: 9rem 0 5rem; } }
.page-hero-inner { max-width: 720px; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE v2 — Rich visual redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Dark hero ───────────────────────────────────────────── */
.hero-dark {
  background: #0C0C0C;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
@media (min-width: 768px) { .hero-dark { padding: 7rem 0 5rem; } }

.hero-dark h1 { color: #ffffff; }
.hero-dark .hero-sub { color: rgba(255,255,255,0.6); font-size: 1.125rem; line-height: 1.7; max-width: 480px; margin-top: 1.25rem; }

/* Decorative bg blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.bg-blob-orange {
  width: 500px; height: 500px;
  background: rgba(240,117,64,0.18);
  top: -120px; right: -100px;
}
.bg-blob-blue {
  width: 400px; height: 400px;
  background: rgba(37,99,235,0.12);
  bottom: -100px; left: -80px;
}

/* ── Hero phone duo ──────────────────────────────────────── */
.hero-phones-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 0;
  min-height: 540px;
}
.hero-phone-main {
  position: relative;
  z-index: 2;
  width: 260px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.hero-phone-back {
  position: absolute;
  right: 10px;
  top: 40px;
  width: 230px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(0,0,0,0.14), 0 3px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  opacity: 0.75;
  transform: rotate(6deg) scale(0.92);
  z-index: 1;
}

/* Floating notification card */
.float-notif {
  position: absolute;
  left: 10px;
  top: 30%;
  z-index: 10;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.2);
  min-width: 200px;
  animation: float 4s ease-in-out infinite;
}
.float-notif-icon {
  width: 2rem; height: 2rem;
  background: #F0FDF4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.float-notif-title { font-size: 0.8125rem; font-weight: 700; color: #111; }
.float-notif-sub { font-size: 0.75rem; color: #6B7280; margin-top: 0.125rem; }
.float-notif-amount { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.04em; color: #16A34A; margin-top: 0.375rem; }
.float-notif-time { font-size: 0.65rem; color: #9CA3AF; margin-top: 0.25rem; }

/* Floating stat pill */
.float-stat {
  position: absolute;
  bottom: 15%;
  right: 10px;
  z-index: 10;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  animation: float 4s ease-in-out 1.5s infinite;
}
@media (min-width: 1024px) { .float-stat { right: 10px; } }
.float-stat-dot { width: 8px; height: 8px; border-radius: 50%; background: #16A34A; flex-shrink: 0; }
.float-stat-text { font-size: 0.75rem; font-weight: 600; color: #111; }
.float-stat-sub { font-size: 0.65rem; color: #9CA3AF; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── In-phone screen elements ────────────────────────────── */
.ps { padding: 1rem; box-sizing: border-box; }   /* phone screen padding */
.ps-sm { padding: 1rem; }

.pn { /* phone notch */
  width: 90px; height: 26px;
  background: #1C1C1C;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 1.125rem;
}

.ph { /* phone header row */
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.ph-greeting { font-size: 0.6rem; color: #9CA3AF; line-height: 1.2; }
.ph-name { font-size: 0.825rem; font-weight: 700; color: #111; }
.ph-avatar {
  width: 1.875rem; height: 1.875rem; border-radius: 50%;
  background: #2563EB; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
}

/* Balance card inside phone */
.pb { /* phone balance card */
  background: #fff; border-radius: 14px;
  padding: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 0.875rem;
}
.pb-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9CA3AF; margin-bottom: 0.4rem; }
.pb-amount { font-size: 1.625rem; font-weight: 800; letter-spacing: -0.04em; color: #111; line-height: 1; }
.pb-row { display: flex; gap: 1rem; margin-top: 0.625rem; }
.pb-stat { display: flex; align-items: center; gap: 0.3rem; }
.pb-stat-label { font-size: 0.52rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; }
.pb-stat-val { font-size: 0.65rem; font-weight: 700; color: #111; }

/* Transaction item */
.ptx { /* phone transaction row */
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.65rem;
}
.ptx:last-child { border-bottom: none; }
.ptx-name { font-weight: 600; color: #111; }
.ptx-sub { font-size: 0.58rem; color: #9CA3AF; margin-top: 0.1rem; }
.ptx-amount { font-weight: 700; color: #111; }
.ptx-status {
  font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.18rem 0.45rem; border-radius: 99px;
}
.ptx-secure { background: #EFF6FF; color: #2563EB; }
.ptx-released { background: #F0FDF4; color: #16A34A; }
.ptx-pending { background: #FFF4EE; color: #F07540; }

/* Action button in phone */
.pab { /* phone action button */
  background: #F07540; color: #fff;
  border: none; border-radius: 12px;
  padding: 0.7rem; font-size: 0.7rem; font-weight: 700;
  width: 100%; text-align: center;
  margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
}
.pab-outline {
  background: transparent; color: #6B7280;
  border: 1px solid #E5E7EB;
  border-radius: 12px; padding: 0.55rem;
  font-size: 0.65rem; font-weight: 600;
  width: 100%; text-align: center;
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}

/* Status pill in phone */
.ppill {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 0.22rem 0.55rem; border-radius: 99px;
}
.ppill-secure { background: #EFF6FF; color: #2563EB; }
.ppill-released { background: #F0FDF4; color: #16A34A; }

/* Deal card inside phone */
.pdeal {
  background: #F9FAFB; border-radius: 12px;
  padding: 0.875rem; margin-bottom: 0.75rem;
}
.pdeal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.375rem; }
.pdeal-row:last-child { margin-bottom: 0; }
.pdeal-key { font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; }
.pdeal-val { font-size: 0.7rem; font-weight: 600; color: #111; }
.pdeal-amount { font-size: 1.375rem; font-weight: 800; letter-spacing: -0.04em; color: #111; }

/* Progress bar in phone */
.pprog { height: 4px; background: #F3F4F6; border-radius: 99px; margin: 0.5rem 0; overflow: hidden; }
.pprog-fill { height: 100%; background: #F07540; border-radius: 99px; }

/* Phone input */
.pinput-label { font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin-bottom: 0.2rem; }
.pinput {
  background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 8px;
  padding: 0.4rem 0.625rem; font-size: 0.68rem; color: #111;
  margin-bottom: 0.375rem; width: 100%; box-sizing: border-box;
}
.pinput.focused { border-color: #F07540; background: #fff; }
.pinput.big { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.02em; border-color: #F07540; }

/* KYC items */
.pkyc { display: flex; align-items: center; gap: 0.625rem; padding: 0.55rem 0; border-bottom: 1px solid #F3F4F6; }
.pkyc:last-child { border-bottom: none; }
.pkyc-icon {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
}
.pkyc-done { background: #F0FDF4; color: #16A34A; }
.pkyc-ok { background: #EFF6FF; color: #2563EB; }
.pkyc-text { font-size: 0.68rem; font-weight: 600; color: #111; }
.pkyc-sub { font-size: 0.56rem; color: #9CA3AF; }

/* Success screen elements */
.psuccess-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #F0FDF4; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto 0.625rem;
}
.psuccess-amount { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.04em; color: #111; text-align: center; }
.psuccess-label { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; text-align: center; margin-top: 0.25rem; }
.psuccess-detail { background: #F9FAFB; border-radius: 10px; padding: 0.75rem; margin-top: 0.875rem; }
.psuccess-row { display: flex; justify-content: space-between; font-size: 0.62rem; padding: 0.2rem 0; }
.psuccess-row .k { color: #9CA3AF; }
.psuccess-row .v { font-weight: 600; color: #111; }

/* ── Feature split sections ──────────────────────────────── */
.split-section { padding: 5rem 0; }
@media (min-width: 768px) { .split-section { padding: 7rem 0; } }

.split-inner {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 960px) {
  .split-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split-inner.rev { }
  .split-inner.rev .split-phone { order: 2; }
  .split-inner.rev .split-copy { order: 1; }
}

.split-phone {
  display: flex; justify-content: center; position: relative;
}
.split-phone-frame {
  width: 250px; flex-shrink: 0;
  border-radius: 20px; background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}
.split-phone-frame .ps { min-height: 480px; background: #F5F6F8; }

.split-copy {}
.split-copy .badge { margin-bottom: 1rem; }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy > p { color: var(--text-body); line-height: 1.75; margin-bottom: 1.5rem; }

/* ── Benefits dark section ───────────────────────────────── */
.benefits-dark {
  background: #0C0C0C;
  padding: 5rem 0;
}
@media (min-width: 768px) { .benefits-dark { padding: 7rem 0; } }
.benefits-dark .section-header h2 { color: #fff; }
.benefits-dark .section-header p { color: rgba(255,255,255,0.5); }

.benefits-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3,1fr); } }

.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background 0.2s, border-color 0.2s;
}
.benefit-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(240,117,64,0.25);
}
.benefit-icon-wrap {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: rgba(240,117,64,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.benefit-item h3 { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── App preview gallery ─────────────────────────────────── */
.preview-section { padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .preview-section { padding: 7rem 0; } }

.preview-phones {
  display: flex; gap: 1.5rem;
  justify-content: center; align-items: stretch;
  padding: 2rem 1rem 3rem;
  overflow-x: auto; overflow-y: visible;
  scrollbar-width: none;
}
.preview-phones::-webkit-scrollbar { display: none; }

.pv-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; flex-shrink: 0; }

.pv-phone {
  flex-shrink: 0; width: 220px; height: 460px;
  border-radius: 20px; background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pv-phone .ps  { height: 100%; background: #F5F6F8; box-sizing: border-box; }
.pv-phone .ps-w { height: 100%; background: #fff; box-sizing: border-box; padding: 1rem; display: flex; flex-direction: column; }
.pv-phone .ps-w.ps-w-center { align-items: center; justify-content: center; }

.pv-phone:hover { transform: translateY(-8px) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08); }

/* ── Download CTA ────────────────────────────────────────── */
.dl-cta {
  background: linear-gradient(135deg, #F07540 0%, #E0602A 60%, #C8501E 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dl-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.dl-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.dl-cta h2 { color: #fff; }
.dl-cta p { color: rgba(255,255,255,0.8); }
.dl-cta .store-btn { background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.2); }
.dl-cta .store-btn:hover { background: rgba(0,0,0,0.4); }

/* ── Testimonial / quote card ────────────────────────────── */
.quote-card {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; line-height: 1; color: var(--orange);
  opacity: 0.3; font-weight: 900;
}
.quote-text { font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1rem; }
.quote-author { font-size: 0.875rem; font-weight: 600; color: var(--black); }
.quote-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Marquee / logo strip ────────────────────────────────── */
.trust-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-strip-inner {
  display: flex; gap: 2.5rem; align-items: center;
  white-space: nowrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted);
  flex-shrink: 0;
}
.trust-badge svg { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO — dark variant with visual right column
   ═══════════════════════════════════════════════════════════ */

.page-hero-dark {
  background: #0C0C0C;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .page-hero-dark { padding: 8rem 0 5rem; } }

.page-hero-dark .bg-blob-orange { width: 380px; height: 380px; top: -100px; right: -60px; }
.page-hero-dark .bg-blob-blue   { width: 280px; height: 280px; bottom: -80px; left: 40%; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 5rem; }
}

.page-hero-copy h1 { color: #ffffff; }
.page-hero-copy > p { color: rgba(255,255,255,0.6); font-size: 1.125rem; line-height: 1.7; margin-top: 1rem; }

.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Glass cards used inside page hero visuals */
.hv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.125rem 1.375rem;
  transition: background 0.2s;
}
.hv-card:hover { background: rgba(255,255,255,0.09); }

.hv-label {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin-bottom: 0.3rem;
}
.hv-value { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.25; }
.hv-sub { font-size: 0.675rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

.hv-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 10px;
  background: rgba(240,117,64,0.15); color: #F07540;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; flex-shrink: 0;
}
.hv-icon-blue  { background: rgba(37,99,235,0.15);  color: #2563EB; }
.hv-icon-green { background: rgba(22,163,74,0.13);  color: #16A34A; }
.hv-icon-white { background: rgba(255,255,255,0.1); color: #fff; }

/* Big stat for pricing/features heroes */
.hv-big-stat {
  font-size: 5rem; font-weight: 900;
  letter-spacing: -0.06em; line-height: 1;
  color: #fff;
}
.hv-big-stat span { color: var(--orange); }

/* Chat bubble for FAQ hero */
.hv-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px 16px 16px 4px;
  padding: 0.875rem 1.125rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.85);
}
.hv-bubble-reply {
  background: rgba(240,117,64,0.12);
  border-color: rgba(240,117,64,0.25);
  border-radius: 16px 16px 4px 16px;
  margin-left: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

/* ── Nav / footer wordmark logo (HTML text, uses loaded Geist) */
.nav-logo {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.logo-trust { color: var(--black); }
.logo-depo  { color: var(--orange); }
.footer-logo .logo-trust { color: #fff; }

/* ── App preview gallery — no phone frame, flat cards ──────── */
.pv-phone:nth-child(1),
.pv-phone:nth-child(2),
.pv-phone:nth-child(3),
.pv-phone:nth-child(4) { transform: none; }

@media (max-width: 767px) {
  .preview-phones {
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem 2.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .pv-phone {
    width: 180px;
    height: 370px;
    scroll-snap-align: start;
  }
}

.pv-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-align: center; }

/* ── Homepage fee calculator ──────────────────────────────── */
.home-calc-box {
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.home-calc-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; }
.home-calc-input-row {
  display: flex; align-items: center;
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.15s;
  margin-bottom: 1rem;
}
.home-calc-input-row:focus-within { border-color: var(--orange); }
.home-calc-prefix { padding: 0 0.75rem; font-size: 1.125rem; font-weight: 700; color: var(--text-muted); background: var(--grey-50); border-right: 1px solid var(--border); align-self: stretch; display: flex; align-items: center; }
.home-calc-input-row input { border: none; outline: none; font-size: 1.125rem; font-weight: 600; padding: 0.75rem; width: 100%; background: transparent; font-family: inherit; }
.home-calc-results { display: flex; flex-direction: column; gap: 0.5rem; }
.home-calc-result-item { display: flex; justify-content: space-between; align-items: center; padding: 0.625rem 0.875rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.home-calc-result-item span:first-child { font-size: 0.8125rem; color: var(--text-muted); }
.home-calc-result-item span:last-child { font-size: 0.9375rem; font-weight: 700; color: var(--black); }
.home-calc-result-item.highlight { background: var(--orange-light); border-color: var(--orange-mid); }
.home-calc-result-item.highlight span:last-child { color: var(--orange); }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-section { padding: 5rem 0; background: var(--bg); border-top: 1px solid var(--border); }
@media (min-width: 768px) { .testi-section { padding: 7rem 0; } }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testi-stars { display: flex; gap: 0.2rem; }
.testi-star { color: #F59E0B; font-size: 0.9375rem; }
.testi-quote { font-size: 0.9375rem; line-height: 1.75; color: var(--text-body); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0; color: #fff;
}
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--black); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
.testi-tag { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); background: var(--orange-light); padding: 0.2rem 0.625rem; border-radius: 99px; width: fit-content; }

/* ── Homepage pricing section ─────────────────────────────── */
.pricing-home { padding: 5rem 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
@media (min-width: 768px) { .pricing-home { padding: 7rem 0; } }
.pricing-home-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 768px) { .pricing-home-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.pricing-big { font-size: 5rem; font-weight: 900; letter-spacing: -0.06em; line-height: 1; color: var(--black); }
.pricing-big span { color: var(--orange); }
.pricing-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.pricing-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.head { background: var(--grey-50); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.pricing-row .r-deal { font-weight: 600; color: var(--black); }
.pricing-row .r-fee  { font-weight: 700; color: var(--orange); }
.pricing-row .r-sell { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — component classes
   ═══════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────── */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-h1 { color: #fff; }
.hero-store-row { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-top: 2rem; }
.hero-fine-print { color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 1rem; }
.hero-phones-row { margin-top: 3rem; display: flex; justify-content: center; position: relative; min-height: 520px; }
.hero-phones-hidden { display: none; }
.hero-phone-main .ps, .hero-phone-back .ps { background: #F5F6F8; }

/* ── Trust strip ─────────────────────────────────────── */
.trust-strip-centered { justify-content: center; flex-wrap: wrap; gap: 2rem; }
.trust-divider { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }

/* ── Section borders ─────────────────────────────────── */
.section-sm-bt { border-bottom: 1px solid var(--border); }
.section-bt { border-top: 1px solid var(--border); }
.split-soft { background: var(--bg-soft); border-top: 1px solid var(--border); }

/* ── Step cards ──────────────────────────────────────── */
.step-h3 { font-size: 1rem; margin-top: 0.75rem; }
.step-p  { margin-top: 0.35rem; }

/* ── Use-case / card headings ────────────────────────── */
.card-icon-mb { margin-bottom: 0.875rem; }
.card-h3 { font-size: 1rem; margin-bottom: 0.375rem; }

/* ── Phone: dot indicators ───────────────────────────── */
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-blue  { background: #2563EB; }
.dot-green { background: #16A34A; }

/* ── Phone: avatar colour variants ──────────────────── */
.ph-avatar-orange { background: #F07540; }

/* ── Phone: progress bar fill widths ────────────────── */
.pprog-fill-34 { width: 34%; }

/* ── Phone: transaction list card ───────────────────── */
.ps-txlist     { background: #fff; border-radius: 14px; padding: 0.875rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ps-txlist-lbl { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin-bottom: 0.625rem; }
.ptx-right     { text-align: right; }

/* ── Phone: screen header row ────────────────────────── */
.ps-hd    { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.ps-hd-sm { display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.ps-hd-title    { font-size: 0.75rem; font-weight: 700; color: #111; }
.ps-hd-title-sm { font-size: 0.7rem;  font-weight: 700; color: #111; }
.ppill-ml { margin-left: auto; }

/* ── Phone: deal row helpers ─────────────────────────── */
.pdeal-val-bold { font-size: 0.75rem; font-weight: 700; color: #111; }
.pdeal-val-vfy  { display: flex; align-items: center; gap: 0.25rem; }
.pdeal-row-mt   { margin-top: 0.375rem; }
.pdeal-key-mb   { margin-bottom: 0.15rem; }
.pdeal-mb-sm    { margin-bottom: 0.75rem; }
.pdeal-mb-xs    { margin-bottom: 0.5rem; }
.pdeal-inspect  { font-size: 0.6rem; color: #9CA3AF; margin-top: 0.375rem; }
.pdeal-inspect-days { color: #F07540; font-weight: 600; }

/* ── Phone: timer warning box ────────────────────────── */
.ps-timer    { background: #FFF4EE; border-radius: 10px; padding: 0.75rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.ps-timer-sm { background: #FFF4EE; border-radius: 8px;  padding: 0.4rem 0.5rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.3rem; }
.ps-timer-title { font-size: 0.65rem; font-weight: 700; color: #F07540; }
.ps-timer-sub   { font-size: 0.6rem;  color: #9CA3AF; }
.ps-timer-text  { font-size: 0.58rem; color: #F07540; font-weight: 600; }

/* ── Phone: notification preview box ────────────────── */
.ps-notif    { background: #fff; border-radius: 12px; padding: 0.75rem; border: 1px solid #F3F4F6; margin-bottom: 0.75rem; }
.ps-notif-sm { background: #fff; border-radius: 8px;  padding: 0.5rem; margin-bottom: 0.5rem; }
.ps-notif-hd    { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.25rem; }
.ps-notif-hd-sm { display: flex; align-items: center; gap: 0.3rem;  margin-bottom: 0.2rem; }
.ps-td-icon    { width: 1rem;   height: 1rem;   background: #0C0C0C; border-radius: 4px;  display: flex; align-items: center; justify-content: center; }
.ps-td-icon-sm { width: 1.1rem; height: 1.1rem; background: #0C0C0C; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-td-name     { font-size: 0.58rem; font-weight: 700; color: #111; }
.ps-td-time     { font-size: 0.55rem; color: #9CA3AF; margin-left: auto; }
.ps-td-time-sm  { font-size: 0.52rem; color: #9CA3AF; margin-left: auto; }
.ps-notif-title { font-size: 0.65rem; font-weight: 600; color: #111; }
.ps-notif-sub   { font-size: 0.58rem; color: #9CA3AF; }
.ps-notif-body  { font-size: 0.58rem; color: #374151; }

/* ── Phone: KYC / identity screen ────────────────────── */
.ps-kyc-hd    { text-align: center; margin-bottom: 1rem; }
.ps-kyc-title { font-size: 0.75rem; font-weight: 700; color: #111; }
.ps-kyc-sub   { font-size: 0.58rem; color: #9CA3AF; margin-top: 0.2rem; }
.ps-kyc-steps { display: flex; justify-content: center; gap: 0.375rem; margin-bottom: 1.25rem; }
.ps-kyc-step     { width: 24px; height: 4px; border-radius: 2px; }
.ps-kyc-step-on  { background: #F07540; }
.ps-kyc-step-off { background: #E5E7EB; }
.ps-kyc-list { background: #fff; border-radius: 14px; padding: 0.875rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 0.875rem; }
.pkyc-icon-off { background: #F3F4F6; color: #9CA3AF; }
.pkyc-text-off { color: #9CA3AF; }
.ps-verified    { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px; padding: 0.75rem; display: flex; align-items: center; gap: 0.625rem; }
.ps-verified-av { width: 2rem; height: 2rem; background: #16A34A; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.ps-verified-name   { font-size: 0.68rem; font-weight: 700; color: #111; }
.ps-verified-status { font-size: 0.58rem; color: #16A34A; display: flex; align-items: center; gap: 0.2rem; }

/* ── Benefits dark section ───────────────────────────── */
.section-hd-mb    { margin-bottom: 3rem; }
.badge-dark-bd    { border: 1px solid rgba(255,255,255,0.15); }
.display-md-white { margin-top: 1rem; color: #fff; }
.p-dim            { color: rgba(255,255,255,0.5); }

/* ── Preview gallery: Screen 1 (Home) ───────────────── */
.pv-user-row    { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.pv-greeting    { font-size: 0.52rem; color: #9CA3AF; margin-bottom: 0.1rem; }
.pv-username    { font-size: 0.75rem; font-weight: 700; color: #111; }
.pv-avatar      { width: 1.75rem; height: 1.75rem; border-radius: 50%; background: #F07540; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; color: #fff; }
.pv-bal         { background: linear-gradient(135deg,#111 0%,#2A2A2A 100%); border-radius: 12px; padding: 0.75rem; margin-bottom: 0.5rem; }
.pv-bal-lbl     { font-size: 0.48rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pv-bal-amt     { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.pv-bal-stats   { display: flex; gap: 0.75rem; margin-top: 0.375rem; }
.pv-bal-lbl-dim { font-size: 0.45rem; color: rgba(255,255,255,0.4); }
.pv-bal-val     { font-size: 0.6rem; font-weight: 700; color: #fff; }
.pv-bal-val-grn { font-size: 0.6rem; font-weight: 700; color: #16A34A; }
.pv-recent      { background: #fff; border-radius: 10px; padding: 0.625rem; }
.pv-recent-lbl  { font-size: 0.45rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin-bottom: 0.375rem; }

/* ── Preview gallery: Screen 2 (Create a deal) ───────── */
.pv-form-hd    { display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.pv-form-title { font-size: 0.7rem; font-weight: 700; color: #111; }
.pinput-select { display: flex; justify-content: space-between; align-items: center; }
.pv-role-row   { display: flex; gap: 0.375rem; margin-bottom: 0.5rem; }
.pv-role-sel   { flex: 1; padding: 0.4rem; border-radius: 8px; background: #F07540; color: #fff; font-size: 0.58rem; font-weight: 700; text-align: center; }
.pv-role-unsel { flex: 1; padding: 0.4rem; border-radius: 8px; background: #F9FAFB; border: 1.5px solid #E5E7EB; color: #9CA3AF; font-size: 0.58rem; text-align: center; }
.pinput-ph  { color: #9CA3AF; }
.pab-auto   { margin-top: auto; }
.pab-mb-sm  { margin-bottom: 0.375rem; }
.pab-mt-lg  { margin-top: 1rem; }
.pab-dark   { background: #111; margin-top: 0.5rem; width: 100%; box-sizing: border-box; }

/* ── Preview gallery: Screen 4 (Payment released) ────── */
.pv-succ-icon     { width: 3rem; height: 3rem; border-radius: 50%; background: #F0FDF4; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 0.625rem; }
.pv-succ-amt      { font-size: 1.25rem; font-weight: 800; color: #111; letter-spacing: -0.03em; text-align: center; }
.pv-succ-lbl      { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AF; margin-top: 0.2rem; margin-bottom: 0.75rem; }
.pv-succ-detail   { background: #F9FAFB; border-radius: 10px; padding: 0.625rem; width: 100%; box-sizing: border-box; }
.pv-succ-val-grn  { color: #16A34A; }
.pv-succ-confirm  { margin-top: 0.5rem; background: #F0FDF4; border-radius: 8px; padding: 0.5rem; text-align: center; width: 100%; box-sizing: border-box; }
.pv-succ-cfm-title { font-size: 0.58rem; font-weight: 700; color: #16A34A; }
.pv-succ-cfm-sub   { font-size: 0.5rem; color: #9CA3AF; margin-top: 0.1rem; }

/* ── Pricing home strip ──────────────────────────────── */
.badge-mb-lg      { margin-bottom: 1.25rem; }
.pricing-big-sub  { font-size: 1.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: -0.02em; }
.pricing-copy-p   { font-size: 1.125rem; color: var(--text-body); margin-top: 1rem; line-height: 1.7; max-width: 380px; }
.check-list-mt    { margin-top: 1.5rem; }
.btn-arrow        { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.pricing-tbl-note { margin-top: 0.875rem; text-align: center; }

/* ── Download CTA ────────────────────────────────────── */
.dl-z          { position: relative; z-index: 1; }
.dl-h2         { max-width: 560px; margin: 0 auto 1rem; }
.dl-p          { max-width: 420px; margin: 0 auto 2.5rem; }
.dl-store-row  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.dl-note       { color: rgba(255,255,255,0.6); font-size: 0.8125rem; }

/* ── Footer ──────────────────────────────────────────── */
.footer-desc-mt { margin-top: 0.875rem; }

/* ── Testimonial avatar colours ──────────────────────── */
.avatar-purple { background: #7C3AED; }
.avatar-teal   { background: #059669; }
.avatar-red    { background: #DC2626; }

/* ── Split-copy h2 margin ────────────────────────────── */
.split-h2 { margin-top: 1rem; }

/* ── Hero phone back: pab margin ─────────────────────── */
.pab-mt { margin-top: 1rem; }

/* ── Remaining one-off elements ──────────────────────── */
.badge-mb-xl       { margin-bottom: 1.5rem; }
.float-stat-delay  { animation-delay: 2s; }
.phone-nav-spacer  { width: 2.5rem; }
.back-phone-inner  { padding-top: 0.5rem; }

/* ── Scroll animations ───────────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-fade-up.anim-in {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ── Navbar scroll state ─────────────────────────────────────── */
.site-nav { transition: box-shadow 0.25s ease; }
.nav-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* ── Back to top button ──────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
}
#back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--orange); }
