/* =========================================================
   SELLAH — Lusaka Editorial × WhatsApp Green
   ========================================================= */

:root {
  /* Brand */
  --green-900: #0B2818;
  --green-800: #14532D;
  --green-700: #1E6B3E;
  --green-500: #22C55E;
  --green-300: #86EFAC;
  --green-100: #DCFCE7;

  --gold-500: #F59E0B;
  --gold-400: #FBBF24;
  --gold-100: #FEF3C7;

  --whatsapp: #25D366;

  /* Surfaces */
  --paper: #F7F1E5;       /* warm cream paper */
  --paper-2: #FBF6EA;
  --ink: #0B1A12;          /* deep green-black ink */
  --ink-2: #2A3A30;
  --muted: #6B7A6F;
  --line: rgba(11, 26, 18, 0.10);
  --line-2: rgba(11, 26, 18, 0.06);
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", "DM Serif Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(11, 26, 18, 0.04), 0 8px 24px rgba(11, 26, 18, 0.06);
  --shadow-lift: 0 2px 6px rgba(11, 26, 18, 0.08), 0 20px 48px rgba(11, 26, 18, 0.12);
  --shadow-phone: 0 30px 60px rgba(11, 26, 18, 0.22), 0 10px 20px rgba(11, 26, 18, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms var(--ease-out);
  --t-med: 320ms var(--ease-out);
  --t-slow: 520ms var(--ease-out);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--green-800); color: var(--paper); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input { font: inherit; color: inherit; }

/* ==========================================================
   Layout primitives
   ========================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section-pad {
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: clamp(72px, 10vw, 140px);
}
.section-pad-sm {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

/* ==========================================================
   Typography
   ========================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-800);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.display .gold { color: var(--gold-500); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

h2.display { font-size: clamp(38px, 5.5vw, 76px); }
h3.display { font-size: clamp(28px, 3.6vw, 44px); }

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ==========================================================
   Nav
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 229, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 241, 229, 0.94);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--green-800);
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--green-800); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-800);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--green-900); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

.nav-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(20, 83, 45, 0.18);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.nav-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700, #16a34a);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (max-width: 720px) {
  .nav-tag { display: none; }
}

/* ==========================================================
   PROBLEM — editorial two-column statement
   ========================================================== */
.problem {
  background: var(--paper);
  border-top: 1px solid rgba(20, 83, 45, 0.08);
}
.problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; gap: 28px; }
}
.problem-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 18px;
}
.problem-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
}
.problem-head h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  color: var(--green-800);
  display: block;
  margin-top: 4px;
}
.problem-body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.problem-body p.emph {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 83, 45, 0.10);
}

/* ==========================================================
   WHAT SELLAH DOES — four product capabilities
   ========================================================== */
.does {
  background: var(--paper-2);
  border-top: 1px solid rgba(20, 83, 45, 0.08);
  border-bottom: 1px solid rgba(20, 83, 45, 0.08);
}
.does-head {
  max-width: 900px;
  margin: 0 0 56px;
}
.does-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 18px;
}
.does-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
}
.does-head h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  color: var(--green-800);
}
.does-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .does-grid { grid-template-columns: 1fr; }
}
.does-card {
  background: var(--paper);
  border: 1px solid rgba(20, 83, 45, 0.10);
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.does-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(20, 83, 45, 0.22);
  border-color: rgba(20, 83, 45, 0.22);
}
.does-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--green-800);
  margin-bottom: 22px;
  opacity: 0.7;
}
.does-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.does-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.does-card p strong {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--green-800);
  background: rgba(34, 197, 94, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ==========================================================
   HONEST NOTE — small editorial card
   ========================================================== */
.honest .honest-card {
  max-width: 820px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--gold, #F59E0B);
  border-radius: 4px;
}
.honest .honest-card .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 14px;
}
.honest .honest-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.honest .honest-card p strong { color: var(--ink); font-weight: 600; }

/* ==========================================================
   (legacy) BUILDING — kept for backwards compatibility
   ========================================================== */
.building {
  background: var(--paper-2);
  border-top: 1px solid var(--line, rgba(20,83,45,0.08));
  border-bottom: 1px solid var(--line, rgba(20,83,45,0.08));
}
.building-head {
  max-width: 880px;
  margin: 0 0 56px;
}
.building-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 18px;
}
.building-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
}
.building-head h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  color: var(--green-800);
}
.building-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .building-grid { grid-template-columns: 1fr; gap: 18px; }
}
.building-card {
  background: var(--paper);
  border: 1px solid rgba(20, 83, 45, 0.10);
  border-radius: 18px;
  padding: 32px 28px 30px;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.building-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(20, 83, 45, 0.22);
  border-color: rgba(20, 83, 45, 0.22);
}
.building-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--green-800);
  margin-bottom: 22px;
  opacity: 0.7;
}
.building-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.building-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.building-note {
  max-width: 760px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--gold, #F59E0B);
  border-radius: 4px;
}
.building-note strong { color: var(--ink); font-weight: 600; }

/* ==========================================================
   HERO — editorial split
   ========================================================== */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(245, 158, 11, 0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(34, 197, 94, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(46px, 7.4vw, 108px);
  margin-top: 22px;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero-title .line > span {
  display: inline-block;
  animation: lineUp 900ms var(--ease-out) both;
  padding-bottom: 0.05em;
}
.hero-title .line:nth-child(2) > span { animation-delay: 80ms; }
.hero-title .line:nth-child(3) > span { animation-delay: 160ms; }
@keyframes lineUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero-lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-form {
  display: flex;
  gap: 6px;
  background: var(--white);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 580px;
  flex-wrap: nowrap;
  align-items: stretch;
}
.hero-form .field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 6px 0 16px;
  min-height: 52px;
}
.hero-form .field + .field { border-left: 1px solid var(--line-2); }
.hero-form .prefix {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
  white-space: nowrap;
}
.hero-form input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: var(--ink);
}
.hero-form input::placeholder { color: #9CA9A0; }
.hero-form button[type="submit"] {
  background: var(--green-800);
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-form button[type="submit"]:hover { background: var(--green-900); transform: translateY(-1px); }
.hero-form button[type="submit"]:active { transform: translateY(0); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

@media (max-width: 560px) {
  .hero-form { border-radius: var(--r-md); padding: 8px; flex-wrap: wrap; flex-direction: column; gap: 8px; }
  .hero-form .field { flex: 1 1 100%; width: 100%; min-height: 48px; padding: 8px 14px; }
  .hero-form .field + .field { border-left: 0; border-top: 1px solid var(--line-2); }
  .hero-form button[type="submit"] { width: 100%; justify-content: center; padding: 14px; min-height: 48px; }
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta .check { color: var(--green-700); }
.hero-meta strong { color: var(--ink); font-weight: 600; }

.hero-bullets {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  max-width: 560px;
}
.hero-bullets li {
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hero-bullets li strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--green-800);
  letter-spacing: -0.02em;
}
@media (max-width: 560px) {
  .hero-bullets { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   Hero visual — chat → order morph
   ========================================================== */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero-portrait {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(11, 26, 18, 0.55), transparent);
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  color: var(--paper);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.portrait-caption .who {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.portrait-caption .where {
  font-size: 13px;
  color: rgba(247, 241, 229, 0.85);
  margin-top: 4px;
}
.portrait-caption .tag {
  background: rgba(247, 241, 229, 0.12);
  border: 1px solid rgba(247, 241, 229, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
}

/* Floating chat bubble */
.float-chat {
  position: absolute;
  top: 6%;
  left: -8%;
  width: 260px;
  background: #DDF7E1;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lift);
  font-size: 13.5px;
  color: var(--ink);
  z-index: 3;
  animation: bubbleIn 600ms 700ms var(--ease-out) both, floatY 6s 1.3s ease-in-out infinite;
}
.float-chat::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background: #DDF7E1;
  border-radius: 0 0 4px 0;
  transform: skewX(-15deg);
}
.float-chat .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green-800);
  font-weight: 600;
  margin-bottom: 4px;
}
.float-chat .meta::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--whatsapp);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2.05-.4-.02-.5-.07-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.07-.8.4-.3.3-1 1-1 2.4 0 1.4 1.05 2.8 1.2 3 .1.2 2 3 4.9 4.2.7.3 1.3.5 1.7.6.7.2 1.3.2 1.9.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.3.2-1.4-.05-.1-.25-.2-.5-.3z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2.05-.4-.02-.5-.07-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.07-.8.4-.3.3-1 1-1 2.4 0 1.4 1.05 2.8 1.2 3 .1.2 2 3 4.9 4.2.7.3 1.3.5 1.7.6.7.2 1.3.2 1.9.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.3.2-1.4-.05-.1-.25-.2-.5-.3z'/></svg>") center/contain no-repeat;
}
.float-chat .typing {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.float-chat .typing span {
  width: 5px; height: 5px;
  background: var(--green-700);
  border-radius: 50%;
  display: inline-block;
  animation: typingDot 1.2s infinite ease-in-out;
}
.float-chat .typing span:nth-child(2) { animation-delay: 0.15s; }
.float-chat .typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Floating order card */
.float-order {
  position: absolute;
  bottom: 14%;
  right: -10%;
  width: 240px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-lift);
  z-index: 3;
  animation: bubbleIn 600ms 1.4s var(--ease-out) both, floatY 7s 2s ease-in-out infinite;
}
.float-order .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.float-order .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.float-order .pay {
  background: var(--green-100);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.float-order .amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 4px;
  color: var(--ink);
}
.float-order .who {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.float-order .who span:last-child { color: var(--muted); }
.float-order .bar {
  margin-top: 12px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  overflow: hidden;
}
.float-order .bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  border-radius: inherit;
}

@media (max-width: 980px) {
  .float-chat { left: 0; width: 220px; }
  .float-order { right: 0; width: 220px; }
}
@media (max-width: 560px) {
  .float-chat { width: 180px; font-size: 12.5px; top: 4%; }
  .float-order { width: 190px; right: -2%; bottom: 8%; }
}

/* ==========================================================
   Marquee — ticker of live activity
   ========================================================== */
.marquee {
  background: var(--green-900);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(247, 241, 229, 0.08);
  border-bottom: 1px solid rgba(247, 241, 229, 0.08);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 50s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.marquee-item .price {
  font-family: var(--font-mono);
  color: var(--gold-400);
  font-weight: 600;
}
.marquee-item .sep {
  color: rgba(247, 241, 229, 0.3);
  font-size: 18px;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ==========================================================
   Section header
   ========================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head .left { max-width: 720px; }
.section-head .left h2 { margin-top: 18px; }
.section-head .left p { margin-top: 18px; max-width: 56ch; color: var(--ink-2); }
.section-head .right {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .right { text-align: left; }
}

/* ==========================================================
   "How it works" — 3 columns with line connector
   ========================================================== */
.how {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.how-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(20, 83, 45, 0.2);
}
.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
}
.how-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--green-300);
  border-radius: 50%;
  opacity: 0.6;
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--green-900);
}
.how-step p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.how-step .micro {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--green-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
}

/* ==========================================================
   Interactive "preview your shop link" demo
   ========================================================== */
.demo {
  background: var(--green-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(245, 158, 11, 0.10), transparent 70%),
    radial-gradient(800px 500px at 10% 100%, rgba(34, 197, 94, 0.10), transparent 70%);
  pointer-events: none;
}
.demo .container { position: relative; z-index: 1; }
.demo .eyebrow { color: var(--green-300); }
.demo h2 { color: var(--paper); }
.demo .lede { color: rgba(247, 241, 229, 0.78); }
.demo-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.demo-controls { padding-top: 8px; min-width: 0; }
.demo-phone-col { min-width: 0; }
@media (max-width: 980px) {
  .demo-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .demo-input-row { flex-wrap: wrap; }
  .demo-input-row .prefix { width: 100%; border-right: 0; border-bottom: 1px solid rgba(247, 241, 229, 0.10); padding: 12px 16px; }
  .demo-input-row input { padding: 14px 16px; width: 100%; }
  .demo-url { font-size: 12.5px; word-break: break-all; white-space: normal; }
  .demo-output { padding: 12px 14px; }
  .demo-output .url { font-size: 12.5px; }
}

.demo-controls label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 241, 229, 0.6);
  margin-bottom: 10px;
}
.demo-input-row {
  display: flex;
  align-items: stretch;
  background: rgba(247, 241, 229, 0.08);
  border: 1px solid rgba(247, 241, 229, 0.15);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 18px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.demo-input-row:focus-within {
  border-color: var(--green-500);
  background: rgba(247, 241, 229, 0.12);
}
.demo-input-row .prefix {
  padding: 18px 20px;
  background: rgba(247, 241, 229, 0.04);
  color: var(--green-300);
  font-family: var(--font-mono);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid rgba(247, 241, 229, 0.10);
}
.demo-input-row input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--paper);
  padding: 18px 18px;
  font-family: var(--font-mono);
  font-size: 16px;
  min-width: 0;
}
.demo-input-row input::placeholder { color: rgba(247, 241, 229, 0.4); }

.demo-output {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px dashed rgba(134, 239, 172, 0.4);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--green-300);
}
.demo-output .url {
  font-family: var(--font-mono);
  color: var(--paper);
  word-break: break-all;
}
.demo-output button {
  background: var(--green-500);
  color: var(--green-900);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.demo-output button:hover { background: var(--green-300); transform: translateY(-1px); }
.demo-output button:active { transform: translateY(0); }

.demo-checks {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.demo-checks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247, 241, 229, 0.82);
}
.demo-checks .ico {
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  background: var(--green-500);
  border-radius: 50%;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
}

/* The simulated phone */
.demo-phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  background: #0B0F0C;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-phone);
  border: 2px solid rgba(247, 241, 229, 0.10);
}
.demo-phone .screen {
  width: 100%;
  height: 100%;
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.demo-phone .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #0B0F0C;
  border-radius: 999px;
  z-index: 4;
}
.demo-browser-bar {
  background: var(--white);
  padding: 32px 14px 8px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.demo-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-url .lock {
  color: var(--green-700);
  font-size: 10px;
}
.demo-url .slug { color: var(--green-800); font-weight: 600; }

.demo-shop {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.demo-shop-cover {
  height: 110px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700) 70%, var(--gold-500));
  position: relative;
}
.demo-shop-avatar {
  position: absolute;
  bottom: -28px;
  left: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--green-800);
  overflow: hidden;
}
.demo-shop-info {
  padding: 36px 16px 8px;
}
.demo-shop-info .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.demo-shop-info .meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.demo-shop-info .meta .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }
.demo-shop-info .meta .verified { color: var(--green-700); font-weight: 600; }

.demo-cta-row {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
}
.demo-cta-row .btn {
  flex: 1;
  background: var(--green-700);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--r-sm);
  text-align: center;
}
.demo-cta-row .btn.alt { background: var(--white); color: var(--ink); border: 1px solid var(--line); }

.demo-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px 12px 16px;
}
.demo-product {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 6px;
  font-size: 10px;
}
.demo-product .img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
  border-radius: 6px;
  margin-bottom: 4px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.demo-product .name {
  font-weight: 600;
  color: var(--ink);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-product .price {
  color: var(--green-700);
  font-weight: 700;
  font-size: 10.5px;
}

/* ==========================================================
   Editorial spread — Built for sellers like
   ========================================================== */
.spread { background: var(--paper); }
.spread-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.spread-intro h2 { font-size: clamp(40px, 6vw, 84px); }
.spread-intro p { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 52ch; }
@media (max-width: 820px) {
  .spread-intro { grid-template-columns: 1fr; gap: 24px; }
}

.spread-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.spread-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  min-height: 360px;
  border: 1px solid var(--line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.spread-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.spread-card.image {
  border: 0;
}
.spread-card.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.spread-card.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 18, 0.6) 0%, transparent 55%);
}
.spread-card .label {
  position: absolute;
  z-index: 2;
  color: var(--paper);
}
.spread-card .label .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}
.spread-card .label .title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.spread-card.boutique { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 540px; }
.spread-card.food { grid-column: 2 / 4; grid-row: 1 / 2; min-height: 280px; }
.spread-card.sneakers { grid-column: 2 / 3; grid-row: 2 / 3; min-height: 280px; }
.spread-card.hair { grid-column: 3 / 4; grid-row: 2 / 3; min-height: 280px; }

.spread-card .label.bl { left: 24px; bottom: 24px; right: 24px; }

.spread-card .stat-pill {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  background: rgba(247, 241, 229, 0.12);
  border: 1px solid rgba(247, 241, 229, 0.25);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .spread-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .spread-card.boutique { grid-column: 1 / 3; grid-row: auto; min-height: 380px; }
  .spread-card.food { grid-column: 1 / 3; grid-row: auto; min-height: 240px; }
  .spread-card.sneakers { grid-column: 1 / 2; grid-row: auto; min-height: 280px; }
  .spread-card.hair { grid-column: 2 / 3; grid-row: auto; min-height: 280px; }
}
@media (max-width: 540px) {
  .spread-grid { grid-template-columns: 1fr; }
  .spread-card { grid-column: 1 / -1 !important; min-height: 280px !important; }
}

/* ==========================================================
   Why it works — alternating editorial features
   ========================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature .feature-visual { max-height: 560px; aspect-ratio: auto; min-height: 420px; }
.feature .feature-visual.morph-visual,
.feature .feature-visual.mm-visual { aspect-ratio: auto; height: auto; min-height: 460px; }
.feature + .feature { margin-top: clamp(72px, 10vw, 140px); }
.feature.reverse .feature-text { order: 2; }

.feature-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.feature-num::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.feature-text h3 {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}
.feature-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 50ch;
}
.feature-text ul {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.feature-text li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.feature-text li::before {
  content: "→";
  color: var(--green-700);
  font-weight: 700;
  margin-top: 1px;
}

.feature-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-card);
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.reverse .feature-text { order: 0; }
}

/* WhatsApp morph visual */
.morph-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--paper-2) 0%, var(--white) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  overflow: hidden;
}
.morph-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.06), transparent 50%);
}
.morph-stack {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.chat-bubble {
  position: relative;
  max-width: 75%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(11, 26, 18, 0.08);
  animation: slideInUp 600ms var(--ease-out) both;
}
.chat-bubble.them {
  background: var(--white);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--ink);
}
.chat-bubble.me {
  background: #DDF7E1;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  color: var(--ink);
}
.chat-bubble .time {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  text-align: right;
}
.chat-bubble:nth-child(1) { animation-delay: 0ms; }
.chat-bubble:nth-child(2) { animation-delay: 100ms; }
.chat-bubble:nth-child(3) { animation-delay: 200ms; }
.chat-bubble:nth-child(4) { animation-delay: 300ms; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.morph-arrow {
  align-self: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--paper);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  margin: 4px 0;
}
.morph-arrow::before, .morph-arrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--green-700);
  opacity: 0.5;
}

.order-out {
  background: var(--green-800);
  color: var(--paper);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-lift);
  animation: slideInUp 600ms 400ms var(--ease-out) both;
}
.order-out .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-300);
  margin-bottom: 8px;
}
.order-out .top .tag {
  background: var(--gold-500);
  color: var(--green-900);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.order-out .amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.order-out .meta {
  font-size: 13px;
  color: rgba(247, 241, 229, 0.7);
  margin-top: 4px;
}
.order-out .items {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(247, 241, 229, 0.12);
  display: grid;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(247, 241, 229, 0.85);
}
.order-out .items .row { display: flex; justify-content: space-between; }

/* Dashboard visual */
.dashboard-mock {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 16px;
}
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi {
  padding: 16px;
  background: var(--paper-2);
  border-radius: var(--r-md);
}
.kpi .label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.kpi .value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin-top: 4px;
}
.kpi .delta { font-size: 11px; color: var(--green-700); font-weight: 600; margin-top: 2px; }
.kpi .delta.down { color: #DC2626; }

.dashboard-mock .order-list {
  display: grid;
  gap: 8px;
}
.dashboard-mock .order-list .h {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600;
  display: flex; justify-content: space-between;
}
.dashboard-mock .order-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: var(--r-md);
  font-size: 13px;
}
.dashboard-mock .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--gold-500));
  color: var(--paper);
  display: grid; place-items: center;
  font-weight: 600; font-size: 12px;
}
.dashboard-mock .name { font-weight: 600; color: var(--ink); }
.dashboard-mock .sub { font-size: 11px; color: var(--muted); }
.dashboard-mock .amt { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }
.dashboard-mock .pill {
  font-size: 10px; padding: 3px 8px; border-radius: var(--r-pill);
  background: var(--green-100); color: var(--green-800); font-weight: 700; letter-spacing: 0.04em;
}
.dashboard-mock .pill.pend { background: var(--gold-100); color: #92400E; }

/* Mobile Money visual */
.mm-visual {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.mm-visual::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
  top: -80px; right: -80px;
}
.mm-providers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.mm-card {
  background: rgba(247, 241, 229, 0.08);
  border: 1px solid rgba(247, 241, 229, 0.16);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
  transition: transform var(--t-fast), background var(--t-fast);
}
.mm-card:hover { transform: translateY(-2px); background: rgba(247, 241, 229, 0.12); }
.mm-card .logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 auto 10px;
}
.mm-card.mtn .logo { background: #FFCB05; color: #000; }
.mm-card.airtel .logo { background: #E60000; color: #FFF; }
.mm-card.zamtel .logo { background: #00A859; color: #FFF; }
.mm-card .name { font-size: 13px; font-weight: 600; color: var(--paper); margin-bottom: 2px; }
.mm-card .sub { font-size: 10.5px; color: rgba(247, 241, 229, 0.55); letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 560px) {
  .mm-visual { padding: 24px; }
  .mm-providers { gap: 8px; }
  .mm-card { padding: 12px 8px; }
  .mm-card .logo { width: 36px; height: 36px; font-size: 15px; }
  .mm-card .name { font-size: 11px; }
  .mm-card .sub { font-size: 9px; }
}

.mm-stat {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 229, 0.12);
  font-size: 12px;
  color: rgba(247, 241, 229, 0.7);
}
.mm-stat strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--paper); display: block; letter-spacing: -0.02em; }

/* ==========================================================
   Pricing — single clear offer
   ========================================================== */
.pricing {
  background: var(--paper);
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.10), transparent 70%);
}
.pricing-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold-100);
  color: #92400E;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pricing-card .price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: -0.02em;
}
.pricing-card .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 22px;
  font-family: var(--font-display);
}
.pricing-card p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 24px;
}
.pricing-features {
  display: grid;
  gap: 10px;
  list-style: none;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.pricing-features .ico {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

@media (max-width: 820px) {
  .pricing-card { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================
   FAQ — editorial open style
   ========================================================== */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-700); }
.faq-item .toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--t-med), background var(--t-fast);
  flex-shrink: 0;
}
.faq-item[open] .toggle { transform: rotate(45deg); background: var(--green-800); color: var(--paper); border-color: var(--green-800); }
.faq-item .answer {
  max-width: 64ch;
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================
   CTA finale
   ========================================================== */
.cta {
  position: relative;
  background: var(--green-900);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(34, 197, 94, 0.15), transparent 60%),
    radial-gradient(700px 500px at 80% 100%, rgba(245, 158, 11, 0.12), transparent 60%);
  z-index: -1;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.cta h2 em {
  font-style: italic;
  color: var(--gold-400);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.cta p {
  margin-top: 20px;
  max-width: 48ch;
  color: rgba(247, 241, 229, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.cta-form {
  background: rgba(247, 241, 229, 0.06);
  border: 1px solid rgba(247, 241, 229, 0.14);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.cta-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 241, 229, 0.6);
  margin-bottom: 8px;
}
.cta-form .field {
  display: flex;
  background: rgba(247, 241, 229, 0.06);
  border: 1px solid rgba(247, 241, 229, 0.14);
  border-radius: var(--r-md);
  padding: 4px;
  margin-bottom: 14px;
  transition: border-color var(--t-fast);
}
.cta-form .field:focus-within { border-color: var(--green-500); }
.cta-form .field input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--paper);
  padding: 14px 16px;
  font-size: 15px;
}
.cta-form .field input::placeholder { color: rgba(247, 241, 229, 0.4); }
.cta-form .field .pre {
  padding: 14px 8px 14px 16px;
  color: var(--green-300);
  font-family: var(--font-mono);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid rgba(247, 241, 229, 0.10);
  margin-right: 8px;
}
.cta-form button {
  width: 100%;
  background: var(--green-500);
  color: var(--green-900);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.cta-form button:hover { background: var(--green-300); transform: translateY(-1px); }
.cta-form button:active { transform: translateY(0); }
.cta-form .micro {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(247, 241, 229, 0.5);
  text-align: center;
}

/* Toast / status message */
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  display: none;
}
.form-status.show { display: block; animation: slideInUp 360ms var(--ease-out) both; }
.form-status.ok { background: rgba(34, 197, 94, 0.16); border: 1px solid rgba(134, 239, 172, 0.4); color: var(--green-300); }
.form-status.err { background: rgba(220, 38, 38, 0.16); border: 1px solid rgba(248, 113, 113, 0.4); color: #FCA5A5; }
.hero-form + .form-status { color: var(--ink-2); }
.hero-form ~ .form-status.ok { background: var(--green-100); border-color: var(--green-300); color: var(--green-800); }
.hero-form ~ .form-status.err { background: #FEE2E2; border-color: #FCA5A5; color: #991B1B; }

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  font-size: 14px;
  color: var(--ink-2);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  list-style: none;
}
.footer-links a { color: var(--ink-2); font-size: 14px; }
.footer-links a:hover { color: var(--green-800); }
.footer .small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================
   Scroll reveal — opacity only (no CLS)
   ========================================================== */
.reveal { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes revealFade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; }
}

/* =========================================================
   LEGAL PAGES — Privacy & Terms
   ========================================================= */

.legal-hero {
  padding: 96px 0 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper-2);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  margin-bottom: 36px;
}
.legal-back:hover {
  color: var(--green-800);
  border-color: rgba(20, 83, 45, 0.25);
  background: #fff;
  transform: translateX(-2px);
}
.legal-back svg { transition: transform var(--t-fast); }
.legal-back:hover svg { transform: translateX(-2px); }

.legal-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-100);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--green-800);
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 0;
  margin: 0 0 18px;
}

.legal-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 640px;
  font-variation-settings: "opsz" 36, "SOFT" 80, "WONK" 0;
  margin: 0 0 22px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-body {
  padding: 64px 0 120px;
  background: var(--paper);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}

.legal-prose {
  font-family: var(--font-body);
  color: var(--ink-2);
  max-width: 720px;
}

.legal-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--green-800);
  font-variation-settings: "opsz" 36, "SOFT" 30, "WONK" 0;
  margin: 44px 0 12px;
}

.legal-prose p,
.legal-prose li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}

.legal-prose p { margin: 0 0 14px; }

.legal-prose ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}
.legal-prose li {
  margin-bottom: 8px;
}
.legal-prose li::marker { color: var(--green-700); }

.legal-prose a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(20, 83, 45, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-fast);
}
.legal-prose a:hover {
  text-decoration-color: var(--green-800);
}

.legal-aside {
  position: sticky;
  top: 100px;
}

.legal-aside-card {
  background: var(--green-800);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
}

.legal-aside-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 12px;
}

.legal-aside-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--paper);
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  margin-bottom: 12px;
}

.legal-aside-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 241, 229, 0.82);
  margin-bottom: 20px;
}

.legal-aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500);
  color: var(--green-900);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.005em;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast);
}
.legal-aside-cta:hover {
  background: var(--green-300);
  transform: translateY(-1px);
}
.legal-aside-cta svg { transition: transform var(--t-fast); }
.legal-aside-cta:hover svg { transform: translateX(2px); }

.legal-aside-links {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.legal-aside-links li {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 8px;
}
.legal-aside-links a {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal-aside-links a:hover {
  color: var(--green-800);
  border-color: var(--green-800);
}

@media (max-width: 900px) {
  .legal-hero { padding: 72px 0 32px; }
  .legal-body { padding: 48px 0 96px; }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-aside { position: static; }
  .legal-aside-card { padding: 24px; }
}

@media (max-width: 560px) {
  .legal-back { margin-bottom: 28px; }
  .legal-prose p,
  .legal-prose li { font-size: 16px; }
  .legal-lede { font-size: 19px; }
}
