/* ============================================
   BaadMay — Global Stylesheet (v3, bold upgrade)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand — kept original purple, added deeper + more saturated siblings */
  --brand:     #6016EB;
  --brand-600: #4F11C4;
  --brand-700: #3F0D9D;
  --brand-800: #2A0873;
  --brand-400: #8B4FFF;
  --brand-300: #AE85FF;
  --brand-200: #C9B3FF;
  --brand-100: #E5D9FF;
  --brand-50:  #F4EFFF;
  --brand-25:  #FAF7FF;

  /* Ink */
  --ink:        #0A0A14;
  --ink-2:      #1F1F2C;
  --ink-3:      #2B2B3C;
  --text:       #2E2E3C;
  --text-2:     #5A5A6E;
  --text-3:     #8A8A9B;
  --text-4:     #B8B8C5;

  /* Surfaces + lines */
  --line:       #ECEAF2;
  --line-2:     #F4F2F8;
  --line-strong:#0A0A14;
  --surface:    #FFFFFF;
  --surface-2:  #FAFAFB;
  --surface-3:  #F4F3F8;
  --cream:      #F5F1E8;

  /* Radii — tightened globally for sharper feel */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);

  /* Type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--brand); color: #fff; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand);
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--brand);
}

.fancy-heading {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
}
.fancy-heading::before {
  content: '§';
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--brand);
}
.fancy-heading::after { display: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.08;
}
.display {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--ink);
}
.display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.01em;
  position: relative;
}
.display em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 4px;
  background: var(--brand);
  opacity: 0.15;
  border-radius: 2px;
}
.h2 {
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 580px;
}

.num-mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section-tight { padding: clamp(56px, 7vw, 88px) 0; }
.divider { height: 1px; background: var(--line); border: none; }

/* Ink-dark section variant — used to create rhythm */
.section-dark {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(96,22,235,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 10% 100%, rgba(139,79,255,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow { color: var(--brand-300); }
.section-dark .eyebrow::before { background: var(--brand-300); }
.section-dark .fancy-heading { color: var(--brand-300); }
.section-dark .fancy-heading::before { color: var(--brand-300); }
.section-dark h2 em { color: var(--brand-300); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; letter-spacing: -0.03em; font-weight: 700; color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink); color: white;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--brand) 50%);
}
.brand-mark span { position: relative; z-index: 1; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 8px 14px; font-size: 14px; color: var(--text-2);
  border-radius: var(--radius-sm); font-weight: 500;
  transition: color .15s, background .15s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-3); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
}

/* ============================================
   BUTTONS — heavier, sharper, more physical
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  border-radius: 10px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15),
    0 1px 0 rgba(255,255,255,0.15),
    0 10px 24px -10px rgba(96,22,235,0.65);
}
.btn-primary:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15), 0 16px 32px -12px rgba(96,22,235,0.7);
}
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--ink); color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }

.btn-link {
  height: auto; padding: 0; background: none;
  color: var(--ink); font-weight: 600;
  position: relative;
  letter-spacing: -0.005em;
}
.btn-link::after {
  content: '→'; display: inline-block; margin-left: 6px;
  transition: transform .2s;
}
.btn-link:hover { color: var(--brand); }
.btn-link:hover::after { transform: translateX(4px); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }

/* ============================================
   HOMEPAGE — HERO
   ============================================ */
.hero {
  padding: clamp(72px, 10vw, 140px) 0 clamp(72px, 10vw, 140px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 78% -5%, var(--brand-50) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 10% 110%, rgba(96,22,235,0.05) 0%, transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: white; border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--text);
  margin-bottom: 32px;
  box-shadow: 0 1px 2px rgba(10,10,20,0.04), 0 8px 20px -8px rgba(10,10,20,0.08);
}
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; background: var(--brand); color: white;
  font-size: 11px; font-weight: 700; border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hero-badge-pill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hero .lead { margin-top: 32px; font-size: clamp(17px, 1.35vw, 20px); max-width: 520px; }
.hero-cta { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   HERO VISUAL — self-contained phone mockup
   No external images. Everything renders from CSS/HTML.
   ============================================ */
.hero-visual {
  position: relative;
  height: clamp(540px, 50vw, 680px);
}

/* Purple bento panel — the backdrop */
.hero-phone-panel {
  position: absolute;
  inset: 0;
  background: var(--brand);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -4px 0 rgba(0,0,0,0.15) inset,
    0 30px 60px -24px rgba(96,22,235,0.55),
    0 80px 100px -40px rgba(96,22,235,0.3);
}
.hero-phone-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(255,255,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(10,10,20,0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-phone-panel::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.25'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Phone outer frame */
.pm-phone {
  position: relative;
  z-index: 2;
  width: clamp(260px, 28vw, 320px);
  aspect-ratio: 9 / 18;
  background: linear-gradient(155deg, #1a1a24 0%, #0A0A14 100%);
  border-radius: 42px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1.5px #2B2B3C,
    0 2px 4px rgba(0,0,0,0.2),
    0 30px 50px -12px rgba(0,0,0,0.4),
    0 80px 80px -40px rgba(0,0,0,0.3);
  transform: rotate(-1.5deg);
}
/* Side button (power) */
.pm-phone::after {
  content: '';
  position: absolute;
  top: 18%; right: -2px;
  width: 3px; height: 60px;
  background: #0A0A14;
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 #2B2B3C;
}

/* Screen */
.pm-screen {
  width: 100%; height: 100%;
  background: #FFFFFF;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--ink);
}
/* Dynamic-island style notch */
.pm-screen::before {
  content: '';
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 20px;
  background: #0A0A14;
  border-radius: 100px;
  z-index: 20;
}

/* Status bar */
.pm-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pm-status-time { font-family: var(--font-sans); font-weight: 700; }
.pm-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
}

/* Header */
.pm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(10,10,20,0.06);
}
.pm-header-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #F4F3F8;
  display: grid; place-items: center;
  color: var(--ink);
  padding: 0;
  flex-shrink: 0;
}
.pm-header-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Merchant */
.pm-merchant {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(10,10,20,0.06);
}
.pm-merchant-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.pm-merchant-meta { flex: 1; min-width: 0; }
.pm-merchant-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.pm-merchant-item {
  font-size: 9px;
  color: var(--text-3);
  margin-top: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pm-merchant-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  background: rgba(34,197,94,0.12);
  color: #16A34A;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.pm-merchant-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #16A34A;
}

/* Product placeholder */
.pm-product {
  margin: 10px 14px 0;
  height: 95px;
  background: linear-gradient(135deg, #F5F1E8 0%, #EDE5D0 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pm-product-art {
  width: 75%;
  height: 75%;
}
.pm-product-tag {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 7px;
  background: rgba(10,10,20,0.75);
  color: white;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Price */
.pm-price {
  padding: 14px 14px 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pm-price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pm-price-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.035em;
  font-feature-settings: "tnum" 1;
  line-height: 1;
}
.pm-rs {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  margin-right: 2px;
}

/* Plan */
.pm-plan {
  margin: 4px 14px 0;
  padding: 10px 12px;
  background: var(--surface-3);
  border-radius: 12px;
}
.pm-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pm-plan-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pm-plan-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  color: var(--brand);
  background: white;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pm-plan-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(10,10,20,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.pm-plan-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: white;
  font-size: 10px;
}
.pm-plan-row.paid { background: var(--brand); color: white; }
.pm-plan-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--text-4);
  box-sizing: border-box;
}
.pm-plan-row.paid .pm-plan-dot {
  background: white;
  border-color: white;
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.pm-plan-date {
  font-weight: 600;
  letter-spacing: -0.005em;
}
.pm-plan-amt {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

/* CTA */
.pm-cta {
  margin: 12px 14px 16px;
  padding: 11px;
  background: var(--brand);
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15),
    0 6px 14px -6px rgba(96,22,235,0.6);
}

/* Floating pills — repositioned for phone-mockup layout */
.hero-visual .floating-pill.fp-1 { top: 10%; left: -4%; animation-delay: 0s; }
.hero-visual .floating-pill.fp-2 { top: 50%; left: -10%; animation-delay: 1.5s; }
.hero-visual .floating-pill.fp-3 { bottom: 8%; right: -4%; left: auto; animation-delay: 3s; }

/* Hero dot pattern */
.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,20,0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

/* Floating pills */
.floating-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.005em;
  box-shadow: 4px 4px 0 -1px var(--brand-100), 0 12px 24px -12px rgba(10,10,20,0.12);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.floating-pill svg { color: var(--brand); }
.floating-pill.fp-1 { top: 4%; left: -8%; animation-delay: 0s; }
.floating-pill.fp-2 { top: 40%; left: -14%; animation-delay: 1.5s; }
.floating-pill.fp-3 { bottom: 14%; left: -6%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
  margin-right: 4px;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22C55E;
  opacity: 0.3;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   TRUST STRIP — stronger top/bottom rules, bolder italics
   ============================================ */
.trust {
  padding: 44px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--surface);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-3);
  margin-bottom: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.trust-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-family: var(--font-serif); font-style: italic; font-size: 28px;
  color: var(--ink); letter-spacing: -0.02em; flex-shrink: 0;
}
.trust-track span:nth-child(6n+1) { color: var(--brand); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURE GRID
   ============================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink);
  border: 1.5px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 56px;
}
.feature { background: white; padding: 40px 32px; }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--brand);
  display: grid; place-items: center;
  color: white;
  margin-bottom: 24px;
}
.feature h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.feature p { color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ============================================
   SECTION HEADER
   ============================================ */
.sh { max-width: 760px; margin-bottom: 64px; }
.sh-center { margin-left: auto; margin-right: auto; text-align: center; }
.sh .eyebrow, .sh .fancy-heading { margin-bottom: 22px; }
.sh .lead { margin-top: 22px; }
.sh-center .lead { margin-left: auto; margin-right: auto; }
.sh-center .fancy-heading { display: inline-flex; }

.sh-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 56px;
}
.sh-row > div:first-child { max-width: 640px; }

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; counter-reset: step;
}
.step { counter-increment: step; padding-top: 32px; border-top: 2px solid var(--ink); position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -13px; left: 0;
  background: white; padding-right: 14px;
  font-family: var(--font-mono);
  font-size: 14px; color: var(--brand); font-weight: 600;
  letter-spacing: 0.02em;
}
.step h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 15px; }

/* ============================================
   MERCHANT GRID
   ============================================ */
.merchant-toolbar {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.search-input {
  position: relative; flex: 1; min-width: 240px; max-width: 440px;
}
.search-input svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); pointer-events: none;
}
.search-input input {
  width: 100%; height: 48px;
  padding: 0 16px 0 42px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-size: 14px; color: var(--ink);
  background: white;
  outline: none; transition: border .15s, box-shadow .15s;
  font-weight: 500;
}
.search-input input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-50);
}
.filter-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: white;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.chip-count {
  display: inline-grid; place-items: center; min-width: 20px; height: 18px;
  padding: 0 6px; border-radius: 100px;
  background: var(--surface-3); color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
}
.chip.active .chip-count { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.results-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px; border-bottom: 1.5px solid var(--ink);
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-2);
  letter-spacing: 0.02em;
}
.results-bar strong { color: var(--ink); font-weight: 600; }

.merchants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.merchant {
  position: relative;
  background: white;
  padding: 22px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, border-color .25s;
  min-height: 200px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.merchant::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.merchant::after {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at top right, var(--brand-50) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}
.merchant > * { position: relative; z-index: 1; }
.merchant:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 -1px var(--brand-100), 0 1px 2px rgba(10,10,20,0.04), 0 20px 40px -20px rgba(96,22,235,0.25);
}
.merchant:hover::before { opacity: 1; }
.merchant:hover::after { opacity: 1; }
.merchant:hover .merchant-mark {
  background: var(--brand);
  color: white;
  box-shadow: 0 8px 18px -6px rgba(96,22,235,0.45);
  transform: scale(1.05) rotate(-2deg);
}
.merchant:hover .merchant-name { color: var(--brand); }
.merchant:hover .merchant-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.merchant-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-3);
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px; color: var(--ink);
  letter-spacing: -0.03em;
  transition: all .3s cubic-bezier(.2,.8,.3,1);
  border: 1px solid rgba(10,10,20,0.04);
  position: relative;
}
.merchant-mark::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.merchant-body { margin-top: auto; width: 100%; }
.merchant-name {
  font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1.25;
  margin-bottom: 6px;
  transition: color .2s;
}
.merchant-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-3);
  font-weight: 500;
}
.merchant-meta::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.5;
}
.merchant-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: white;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all .25s cubic-bezier(.2,.8,.3,1);
  z-index: 2;
  box-shadow: 0 6px 14px -4px rgba(96,22,235,0.5);
}
.merchant-platform {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 2;
}
.merchant-platform::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.merchant-platform[data-p="Shopify"] { background: rgba(150, 191, 72, 0.12); color: #5d7c2b; }
.merchant-platform[data-p="WooCommerce"] { background: rgba(127, 84, 179, 0.12); color: #5d3d87; }
.merchant-platform[data-p="Magento"] { background: rgba(238, 103, 47, 0.12); color: #b84a1e; }
.merchant-platform[data-p="Custom"] { background: rgba(10, 10, 20, 0.08); color: var(--ink); }

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.category-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.cat-card {
  position: relative;
  padding: 20px 18px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 110px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.3,1);
  overflow: hidden;
  isolation: isolate;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.cat-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 -1px var(--brand-100), 0 16px 32px -16px rgba(96,22,235,0.2);
}
.cat-card:hover::before { opacity: 1; }
.cat-card > * { position: relative; z-index: 1; }
.cat-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface-3);
  display: grid; place-items: center;
  color: var(--brand);
  transition: all .25s;
}
.cat-card:hover .cat-card-icon {
  background: var(--brand);
  color: white;
  transform: scale(1.08);
}
.cat-card-body { margin-top: 12px; }
.cat-card-name {
  font-size: 14px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}
.cat-card-count {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-3);
  margin-top: 4px; letter-spacing: 0.02em;
}
.merchants-empty {
  padding: 80px 24px; text-align: center; color: var(--text-2);
  background: white; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
}
.load-more-row {
  display: flex; justify-content: center; margin-top: 40px;
  gap: 12px; align-items: center;
}

/* ============================================
   FEATURED MERCHANTS PREVIEW
   ============================================ */
.merchants-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* ============================================
   INTEGRATIONS
   ============================================ */
.integrations {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.integ-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.integ-card {
  padding: 26px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: all .18s;
}
.integ-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 -1px var(--brand-100);
}
.integ-logo {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.integ-shopify { background: #96BF48; }
.integ-woo { background: #7F54B3; }
.integ-magento { background: #EE672F; }
.integ-custom { background: var(--ink); }
.integ-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.015em; }
.integ-card p { font-size: 13px; color: var(--text-2); }

/* ============================================
   APP DOWNLOAD
   ============================================ */
.app-section {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(var(--maxw) - var(--pad) * 2);
}
.app-section::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(96,22,235,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.app-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.app-inner h2 { color: white; }
.app-inner h2 em { color: var(--brand-300); }
.app-inner p { color: rgba(255,255,255,0.7); }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background .18s, transform .18s;
}
.app-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.app-btn svg { flex-shrink: 0; }
.app-btn-text small {
  display: block; font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
.app-btn-text strong { font-size: 15px; font-weight: 600; color: white; }

.qr-box {
  background: white; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 280px; margin-left: auto;
  text-align: center;
}
.qr-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.qr-box p { font-size: 12px; color: var(--text-2); margin-bottom: 18px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: white;
  padding-top: 96px;
  border-top: 1.5px solid var(--ink);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-2); max-width: 320px; margin-top: 16px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: var(--text-2);
  transition: color .15s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.02em;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-2);
  transition: all .15s;
}
.footer-social a:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-3); }

/* ============================================
   PAGE HEADERS (interior pages)
   ============================================ */
.page-header {
  padding: clamp(60px, 8vw, 110px) 0 clamp(44px, 5vw, 72px);
  border-bottom: 1.5px solid var(--ink);
  background: var(--surface-2);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 45%; height: 160%;
  background: radial-gradient(ellipse at center, var(--brand-50) 0%, transparent 55%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 820px; }
.page-header h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 18px 0 22px;
}
.page-header h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--brand); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.04em;
}
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--text-4); }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-item:first-child { border-top: 1.5px solid var(--line); }
.faq-q {
  width: 100%; padding: 26px 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.015em;
  cursor: pointer;
}
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--text-3); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--brand); }
.faq-a {
  display: none;
  padding: 0 0 26px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   MERCHANT FUNNEL / BUSINESS PAGE
   ============================================ */
.value-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--ink);
  border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-stat {
  background: white; padding: 36px 28px;
}
.value-stat-num {
  font-family: var(--font-mono);
  font-size: 48px; font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); margin-bottom: 10px;
  font-feature-settings: "tnum" 1;
}
.value-stat-num em { color: var(--brand); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.value-stat-label { font-size: 13px; color: var(--text-2); }

.benefits-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.benefit-list { list-style: none; }
.benefit-list li {
  padding: 22px 0; border-top: 1.5px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-list li:last-child { border-bottom: 1.5px solid var(--line); }
.benefit-list svg { flex-shrink: 0; color: var(--brand); margin-top: 2px; }
.benefit-list h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.015em; }
.benefit-list p { color: var(--text-2); font-size: 14px; }

/* ============================================
   CONTACT / SUPPORT
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.contact-card {
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 10px 10px 0 -2px var(--brand-100);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border .15s, box-shadow .15s;
  font-family: inherit;
  font-weight: 500;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-50);
}
.form-textarea { resize: vertical; min-height: 120px; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; gap: 16px;
  padding: 22px; border-radius: var(--radius);
  background: white; border: 1.5px solid var(--line);
  align-items: flex-start;
  transition: all .2s;
}
.contact-method:hover { border-color: var(--ink); transform: translateX(4px); }
.contact-method-icon {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--brand); color: white;
  display: grid; place-items: center;
}
.contact-method h4 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.contact-method p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.contact-method a { color: var(--brand); font-weight: 600; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.about-intro h2 { margin-top: 0; }
.about-body p {
  font-size: 17px; color: var(--text); line-height: 1.75;
  margin-bottom: 20px;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--font-serif); font-size: 64px; float: left;
  line-height: 0.85; margin: 10px 12px 0 -3px;
  color: var(--brand); font-weight: 400;
}

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 4px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand); border: 2px solid white;
  box-shadow: 0 0 0 2px var(--brand);
}
.timeline-year {
  font-family: var(--font-mono);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em; }
.timeline-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============================================
   CTA BAND — solid brand for real punch
   ============================================ */
.cta-band {
  background: var(--brand);
  color: white;
  padding: 72px 56px;
  border-radius: var(--radius-xl);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  border: none;
  max-width: calc(var(--maxw) - var(--pad) * 2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(96,22,235,0.5);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(10,10,20,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.25'/></svg>");
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 620px;
  color: white;
}
.cta-band h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,0.92); }
.cta-band .btn-primary {
  background: white;
  color: var(--brand);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 8px 20px -6px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover { background: var(--cream); color: var(--brand); }
.cta-band .btn-ghost {
  background: transparent;
  color: white;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.8);
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); color: white; box-shadow: inset 0 0 0 1.5px white; }

/* ============================================
   STATS RIBBON
   ============================================ */
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px clamp(20px, 3vw, 48px);
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(var(--maxw) - var(--pad) * 2);
}
.stats-ribbon::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(96,22,235,0.4) 0%, transparent 55%);
  pointer-events: none;
}
.stats-ribbon::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.3'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.stat-item {
  padding: 16px 28px;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-big {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: white;
  margin-bottom: 8px;
  font-feature-settings: "tnum" 1;
}
.stat-big em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-300);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-big-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial {
  padding: 36px 32px 32px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 -1px var(--brand-100), 0 20px 40px -20px rgba(96,22,235,0.2);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 96px;
  color: var(--brand);
  line-height: 0.55;
  margin-bottom: 16px;
  opacity: 0.3;
  font-style: italic;
}
.testimonial-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.testimonial-body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 22px;
  border-top: 1.5px solid var(--line);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.testimonial-name {
  font-size: 14px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.015em;
}
.testimonial-meta {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-3);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.testimonial-stars {
  display: flex; gap: 2px; margin-left: auto;
  color: #F59E0B;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  margin-top: 56px;
}
.bento-item {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all .25s;
}
.bento-item:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 -1px var(--brand-100), 0 20px 40px -24px rgba(96,22,235,0.3);
}
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-md { grid-column: span 2; }
.bento-sm { grid-column: span 1; }
.bento-dark {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.bento-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(96,22,235,0.45) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.bento-dark > * { position: relative; z-index: 1; }
.bento-brand {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.bento-brand::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}
.bento-brand::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(10,10,20,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.bento-brand > * { position: relative; z-index: 1; }
.bento-item h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento-dark h3, .bento-brand h3 { color: white; }
.bento-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.bento-dark p, .bento-brand p { color: rgba(255,255,255,0.78); }
.bento-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.bento-dark .bento-icon {
  background: rgba(255,255,255,0.1);
  color: var(--brand-300);
}
.bento-brand .bento-icon {
  background: rgba(255,255,255,0.18);
  color: white;
}
.bento-stat-huge {
  font-family: var(--font-sans);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 12px;
}
.bento-stat-huge em {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.bento-brand .bento-stat-huge em { color: white; opacity: 0.92; }
.bento-visual {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--brand-50) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
  display: flex; align-items: center; gap: 16px;
  margin: clamp(56px, 8vw, 96px) auto;
  max-width: var(--maxw);
  padding: 0 var(--pad);
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.section-divider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  position: relative;
}
.section-divider-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--brand-200);
  border-radius: 50%;
}

/* ============================================
   LOGO CLOUD
   ============================================ */
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo-cloud-item {
  background: white;
  aspect-ratio: 2/1;
  display: grid; place-items: center;
  padding: 24px;
  transition: all .25s;
  cursor: pointer;
}
.logo-cloud-item:hover { background: var(--brand); }
.logo-cloud-item span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color .25s;
}
.logo-cloud-item:hover span { color: white; }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(to right, var(--line), var(--brand), var(--line));
}
.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--ink);
  margin: 0 auto 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  transition: all .3s;
}
.process-step:hover .process-step-num {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: scale(1.08);
  box-shadow: 0 12px 32px -8px rgba(96,22,235,0.55);
}
.process-step-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed var(--brand-200);
  opacity: 0;
  animation: spin 20s linear infinite;
  transition: opacity .3s;
}
.process-step:hover .process-step-num::before { opacity: 1; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.process-step h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================
   IMAGE CARD
   ============================================ */
.image-card {
  position: relative;
  aspect-ratio: 1.2/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  padding: 44px;
  color: white;
  display: flex; flex-direction: column; justify-content: space-between;
}
.image-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.image-card > * { position: relative; z-index: 1; }

/* ============================================
   AVATAR STACK
   ============================================ */
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack-item {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  border: 2px solid white;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(10,10,20,0.1);
}
.avatar-stack-item:first-child { margin-left: 0; }
.avatar-stack-item:nth-child(1) { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.avatar-stack-item:nth-child(2) { background: linear-gradient(135deg, var(--brand), var(--brand-700)); }
.avatar-stack-item:nth-child(3) { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.avatar-stack-item:nth-child(4) { background: linear-gradient(135deg, #10B981, #059669); }
.avatar-stack-item:nth-child(5) {
  background: var(--ink);
  color: white;
  font-size: 11px;
  border: 2px solid white;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: slide-up 0.7s cubic-bezier(.2,.8,.3,1) both; }
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.25s; }
.reveal-delay-3 { animation-delay: 0.4s; }

.curved-divider {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================
   NUMBERED FEATURE CARDS
   ============================================ */
.numbered-feature {
  position: relative;
  padding: 44px 32px 32px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .25s;
  overflow: hidden;
  isolation: isolate;
}
.numbered-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.numbered-feature:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 -1px var(--brand-100), 0 20px 40px -20px rgba(96,22,235,0.25);
  border-color: var(--ink);
}
.numbered-feature:hover::before { transform: scaleY(1); }
.numbered-feature-num {
  position: absolute;
  top: 22px; right: 30px;
  font-family: var(--font-mono);
  font-size: 44px;
  color: var(--brand);
  opacity: 0.18;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.numbered-feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.numbered-feature h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.numbered-feature p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   USE-CASE PILLS
   ============================================ */
.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.use-case-pill {
  padding: 8px 16px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.use-case-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.use-case-pill svg {
  width: 14px; height: 14px;
  color: var(--brand);
}

/* ============================================
   STACKED CARDS PATTERN
   ============================================ */
.stacked-cards {
  position: relative;
  padding-bottom: 30px;
}
.stacked-cards::before,
.stacked-cards::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-lg);
  background: white;
  border: 1.5px solid var(--line);
}
.stacked-cards::before {
  top: 16px; left: 4%; right: 4%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}
.stacked-cards::after {
  top: 30px; left: 8%; right: 8%;
  height: 100%;
  opacity: 0.25;
  z-index: -2;
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-400) 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-flow 4s ease infinite;
}
@keyframes gradient-flow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ============================================
   COMPARISON BOX
   ============================================ */
.comparison-box {
  background: white;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 56px;
  box-shadow: 10px 10px 0 -2px var(--brand-100);
}
.comparison-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1.5px solid var(--ink);
}
.comparison-header-cell {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.comparison-header-cell:last-child { border-right: none; }
.comparison-header-cell.highlight {
  background: var(--brand);
  color: white;
  position: relative;
}
.comparison-header-cell.highlight .comparison-title { color: white; }
.comparison-header-cell.highlight .comparison-sub { color: rgba(255,255,255,0.8); }
.comparison-header-cell.highlight::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  background: white;
  color: var(--brand);
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.comparison-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.comparison-sub {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-cell {
  padding: 20px 30px;
  font-size: 14px;
  color: var(--text);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.comparison-cell:last-child { border-right: none; }
.comparison-cell.highlight {
  background: var(--brand-25);
  color: var(--ink);
  font-weight: 600;
}
.comparison-cell .check { color: var(--brand); }
.comparison-cell .x { color: var(--text-4); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-col:nth-child(n+4) { grid-column: auto; }
  .integrations { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .qr-box { margin-left: 0; }
  .about-intro { grid-template-columns: 1fr; }
  .benefits-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .merchants-preview { grid-template-columns: repeat(4, 1fr); }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-md { grid-column: span 2; }
  .bento-sm { grid-column: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-ribbon { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 32px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .logo-cloud { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: 1fr; gap: 48px; }
  .process-timeline::before { display: none; }
  .comparison-header, .comparison-row { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--line);
    padding: 16px var(--pad);
    align-items: stretch; gap: 4px;
  }
  .nav.open .nav-links a { padding: 12px 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .integ-cards { grid-template-columns: 1fr; }
  .merchants-preview { grid-template-columns: repeat(3, 1fr); }
  .merchants { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .merchant { min-height: 170px; padding: 18px 16px; }
  .merchant-mark { width: 40px; height: 40px; font-size: 15px; }
  .merchant-arrow { width: 26px; height: 26px; bottom: 16px; right: 16px; }
  .value-row { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 32px; }
}

@media (max-width: 600px) {
  .stats-ribbon { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg, .bento-md, .bento-sm { grid-column: span 1; }
  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .floating-pill { display: none; }
  .comparison-header, .comparison-row { grid-template-columns: 1fr; }
  .comparison-header-cell, .comparison-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .comparison-box { box-shadow: 6px 6px 0 -1px var(--brand-100); }

  /* Scale phone mockup for small viewports */
  .hero-visual { height: clamp(500px, 115vw, 640px); }
  .pm-phone { width: min(280px, 72vw); }
}

@media (max-width: 500px) {
  .merchants-preview { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-row { grid-template-columns: 1fr; }
}
