/* ───────────────────────────────────────────────────────
   VULA · v2 — Fintech-startup consumer site
   Light background, big bold type, brand teal accent.
─────────────────────────────────────────────────────── */

:root {
  /* Surface — pure white, clean */
  --bg:          #FFFFFF;         /* white canvas */
  --bg-alt:      #F6F7F9;         /* very light grey for alternating sections */
  --bg-cream:    #FFFFFF;         /* card surface */
  --bg-deep:    #0A0E15;          /* dark inversion section */
  --line:        rgba(17, 21, 30, 0.08);
  --line-strong: rgba(17, 21, 30, 0.14);

  /* Foreground (ink) */
  --ink-0:       #0A0E15;         /* high emphasis — near-black */
  --ink-1:       #2A2E38;         /* body */
  --ink-2:       #5C606A;         /* muted */
  --ink-3:       #8A8E97;         /* footnote */

  /* On-dark fg, for the inverted section */
  --bone-0:      #FFFFFF;
  --bone-2:      #A8ACB5;

  /* Brand */
  --teal:        #008c87;         /* brand primary */
  --teal-deep:   #006e6a;         /* brand pressed */
  --teal-glow:   #2ed1c5;         /* brand bright */
  --teal-50:     #E6F5F3;         /* brand wash */
  --navy:        #071d3f;         /* brand secondary */

  /* Accent — used sparingly */
  --warm:        #c89c6a;
  --coral:       #E27D60;

  /* Partner — Shoprite Money Market (rationed: cash-out + partnership moments only) */
  --shoprite:       #E2231A;   /* Shoprite brand red */
  --shoprite-deep:  #B71810;   /* pressed */
  --shoprite-50:    #FDECEA;   /* red wash */
  --shoprite-yellow:#FFD200;   /* Shoprite secondary — tiny detail only */

  /* Type — Geist throughout */
  --f-sans:      'Geist', 'Helvetica Neue', system-ui, sans-serif;
  --f-mono:      'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --f-brand:     'Michroma', 'Geist Mono', monospace;

  /* Rhythm */
  --gut:    clamp(20px, 4vw, 56px);
  --rail:   1240px;

  /* Reusable shadows */
  --shadow-card:   0 1px 2px rgba(17,21,30,0.04), 0 24px 60px -20px rgba(17,21,30,0.18);
  --shadow-card-h: 0 1px 2px rgba(17,21,30,0.06), 0 36px 80px -20px rgba(0,140,135,0.25);
  --shadow-pill:   0 1px 2px rgba(17,21,30,0.06), 0 12px 24px -8px rgba(17,21,30,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink-1); }
body {
  font-family: var(--f-sans);
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--teal); color: var(--bg); }

.rail {
  width: 100%;
  max-width: var(--rail);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ─── Type system ─────────────────────────────────────── */
.h-display {
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink-0);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 140, 135, 0.18);
}

.body-lg {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-1);
  letter-spacing: -0.005em;
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn .arrow {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn .arrow svg { width: 100%; height: 100%; }

.btn-primary {
  background: var(--ink-0); color: var(--bone-0);
  box-shadow: var(--shadow-pill);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(0,140,135,0.2), 0 16px 32px -8px rgba(0,140,135,0.4);
}
.btn-ghost {
  background: transparent; color: var(--ink-0);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink-0);
  background: rgba(17, 21, 30, 0.04);
}
.btn-teal {
  background: var(--teal); color: #fff;
  box-shadow: 0 1px 2px rgba(0,140,135,0.2), 0 12px 24px -8px rgba(0,140,135,0.4);
}
.btn-teal:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.nav-mark { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-mark .nav-mono { height: 26px; width: auto; }
.nav-mark .nav-wordmark { height: 16px; width: auto; }
.nav-links {
  display: flex; gap: 28px; flex: 1 1 auto; justify-content: center;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-1);
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta-row { display: flex; gap: 10px; align-items: center; flex: 0 0 auto; }
.nav-cta-row .signin {
  font-size: 14.5px;
  color: var(--ink-1);
  padding: 8px 12px;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta-row .signin { display: none; }
}

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-copy {
  position: relative; z-index: 2;
}
.hero-headline {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.045em;
  line-height: 0.94;
  color: var(--ink-0);
  margin-top: 28px;
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal;
  color: var(--teal);
}
.hero-headline .crossed {
  position: relative;
  display: inline-block;
  color: var(--ink-2);
}
.hero-headline .crossed::after {
  content: ""; position: absolute; left: -4%; right: -4%; top: 56%;
  height: 6px; background: var(--coral);
  transform: rotate(-3deg);
  border-radius: 4px;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-1);
  max-width: 50ch;
  letter-spacing: -0.005em;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.hero-trust .dots {
  display: inline-flex; gap: 6px;
}
.hero-trust .dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
}
.hero-trust .dots span:nth-child(2) { opacity: 0.7; }
.hero-trust .dots span:nth-child(3) { opacity: 1; }

/* ─── Phone mockup ─── */
.phone-stage {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  width: clamp(260px, 26vw, 320px);
  aspect-ratio: 320 / 660;
  background: #11151E;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 1px 2px rgba(17,21,30,0.08),
    0 32px 80px -20px rgba(17,21,30,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone:hover { transform: rotate(0deg) translateY(-4px); }
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #064a48 0%, #008c87 35%, #2ed1c5 100%);
  border-radius: 36px;
  overflow: hidden;
  padding: 36px 22px 24px;
  display: flex; flex-direction: column;
  color: #fff;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #11151E;
  border-radius: 999px;
  z-index: 2;
}
.phone-status {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 0 6px;
  z-index: 3;
}
.phone-status .right { display: inline-flex; gap: 6px; align-items: center; }
.phone-status .bars {
  display: inline-flex; align-items: flex-end; gap: 2px; height: 10px;
}
.phone-status .bars i {
  display: block; width: 2px; background: #fff; border-radius: 1px;
}
.phone-status .bars i:nth-child(1) { height: 30%; }
.phone-status .bars i:nth-child(2) { height: 55%; }
.phone-status .bars i:nth-child(3) { height: 80%; }
.phone-status .bars i:nth-child(4) { height: 100%; }
.phone-status .batt {
  width: 22px; height: 10px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  position: relative;
  padding: 1px;
}
.phone-status .batt::after {
  content: ""; position: absolute; right: -3px; top: 2px;
  width: 2px; height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 0 1px 1px 0;
}
.phone-status .batt b { display: block; height: 100%; width: 85%; background: #fff; border-radius: 1px; }

.phone-content {
  flex: 1;
  display: flex; flex-direction: column;
  margin-top: 24px;
  gap: 24px;
}
.phone-greet {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.phone-greet .hi {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}
.phone-greet .name {
  margin-top: 6px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.phone-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.phone-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 22px;
}
.phone-card .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-card .label .live {
  display: inline-flex; align-items: center; gap: 6px;
}
.phone-card .label .live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: pulse 2s ease-in-out infinite;
}
.phone-card .amount {
  margin-top: 14px;
  display: flex; align-items: baseline; gap: 6px;
  font-weight: 700; letter-spacing: -0.04em;
}
.phone-card .amount .cur { font-size: 16px; opacity: 0.8; font-weight: 500; }
.phone-card .amount .num { font-size: 44px; line-height: 1; }
.phone-card .amount .dec { font-size: 24px; opacity: 0.7; }
.phone-card .meta {
  margin-top: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  opacity: 0.65;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.2);
}
.phone-tx {
  display: flex; flex-direction: column; gap: 12px;
}
.phone-tx-header {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}
.phone-tx-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phone-tx-row:last-child { border-bottom: 0; }
.phone-tx-row .ic {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.phone-tx-row .who { font-weight: 500; font-size: 14px; letter-spacing: -0.005em; }
.phone-tx-row .when { font-family: var(--f-mono); font-size: 10.5px; opacity: 0.6; margin-top: 2px; }
.phone-tx-row .amt { font-weight: 600; font-family: var(--f-mono); font-size: 14px; }
.phone-tx-row .amt.in { color: #b8f5ed; }

.phone-tab {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.phone-tab span {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}
.phone-tab span.active { opacity: 1; }
.phone-tab span .ic {
  width: 16px; height: 16px;
  background: currentColor; opacity: 0.85;
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
}

/* Pulse ring behind phone */
.phone-halo {
  position: absolute;
  width: 480px; height: 480px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,140,135,0.25), transparent 60%);
  z-index: 0;
  animation: phone-breath 6s ease-in-out infinite;
}
@keyframes phone-breath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* NFC waves drifting from the phone */
.nfc-burst {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.nfc-burst span {
  display: block;
  width: 28px; height: 50px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  border-radius: 0 50% 50% 0 / 0 50% 50% 0;
  margin-bottom: -42px;
  opacity: 0;
  animation: nfc 2.4s ease-out infinite;
}
.nfc-burst span:nth-child(1) { animation-delay: 0s; }
.nfc-burst span:nth-child(2) { animation-delay: 0.4s; width: 40px; height: 70px; }
.nfc-burst span:nth-child(3) { animation-delay: 0.8s; width: 52px; height: 90px; }
@keyframes nfc {
  0%   { opacity: 0; transform: scale(0.9); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}

/* ─── Trust strip ─── */
.trust-strip {
  padding: 32px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .trust-strip-inner { grid-template-columns: 1fr; gap: 16px; } }
.trust-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trust-row {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
}
.trust-item {
  font-family: var(--f-brand);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-0);
  font-weight: 500;
  opacity: 0.7;
  transition: opacity .2s ease;
}
.trust-item:hover { opacity: 1; }

/* ─── Section base ─── */
section.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}
section.section.alt { background: var(--bg-alt); }
section.section.dark {
  background: var(--bg-deep);
  color: var(--bone-0);
}
section.section.dark .h-display,
section.section.dark .step-title,
section.section.dark h2,
section.section.dark h3 { color: var(--bone-0); }

.sec-eyebrow-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.sec-title h2 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink-0);
  margin-top: 14px;
  text-wrap: balance;
  max-width: 22ch;
}
.sec-title h2 em { font-style: normal; color: var(--teal); }
.sec-aside {
  max-width: 32ch;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .sec-eyebrow-row { flex-direction: column; align-items: flex-start; }
}

/* ─── Process — Tap / Held / Cash out ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 940px) { .process-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  box-shadow: var(--shadow-card);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-card-h);
}
.step-art {
  height: 260px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.step-card .step-body {
  padding: 28px;
}
.step-num {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink-0);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.step-desc strong { color: var(--ink-0); font-weight: 500; }

/* Art 01 — card with NFC waves */
.art-tap .vula-card {
  position: relative;
  width: 200px; height: 124px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink-0) 0%, #1d2230 100%);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-6deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 16px 30px -8px rgba(17,21,30,0.4);
}
.art-tap .vula-card .card-mark { height: 22px; width: auto; }
.art-tap .vula-card .card-foot {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.5);
}
.art-tap .vula-card .card-foot .id { color: var(--teal-glow); }
.art-tap .nfc-ring {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
}
.art-tap .nfc-ring span {
  display: block;
  width: 16px; height: 28px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  border-radius: 0 28px 28px 0 / 0 50% 50% 0;
  margin-bottom: -22px;
  opacity: 0;
  animation: nfc 2.4s ease-out infinite;
}
.art-tap .nfc-ring span:nth-child(2) { width: 22px; height: 40px; animation-delay: 0.4s; }
.art-tap .nfc-ring span:nth-child(3) { width: 30px; height: 54px; animation-delay: 0.8s; }

/* Art 02 — mini balance card */
.art-held .mini-screen {
  width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px -10px rgba(17,21,30,0.12);
}
.art-held .mini-screen .top {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.art-held .mini-screen .top .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal);
}
.art-held .mini-screen .top .live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
.art-held .mini-screen .amt {
  margin-top: 14px;
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-sans);
  font-weight: 700;
  color: var(--ink-0);
  letter-spacing: -0.03em;
}
.art-held .mini-screen .amt .cur { font-size: 14px; color: var(--teal); font-weight: 500; }
.art-held .mini-screen .amt .num { font-size: 38px; line-height: 1; }
.art-held .mini-screen .amt .dec { font-size: 22px; color: var(--ink-3); font-weight: 500; }
.art-held .mini-screen .foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* Art 03 — Shoprite Money Market storefront */
.art-out svg.store-illu { width: 80%; height: auto; }

/* ─── Audience split — For workers / For venues ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }
.split-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-card);
  transition: transform .4s ease, border-color .4s ease;
}
.split-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.split-card.teal {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  border-color: transparent;
}
.split-card.teal .split-head .who { color: rgba(255,255,255,0.7); }
.split-card.teal h3 { color: #fff; }
.split-card.teal .split-desc { color: rgba(255,255,255,0.88); }
.split-card.teal .split-list li { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.18); }
.split-card.teal .split-list li::before { background: rgba(255,255,255,0.5); }
.split-card.teal .split-cta { color: #fff; border-color: rgba(255,255,255,0.4); }
.split-card.teal .split-cta:hover { background: #fff; color: var(--teal-deep); border-color: #fff; }

.split-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.split-head .who {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.split-card h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink-0);
  margin-bottom: 16px;
  text-wrap: balance;
}
.split-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-1);
  letter-spacing: -0.005em;
  max-width: 38ch;
}
.split-list {
  list-style: none;
  margin-top: 24px;
  display: flex; flex-direction: column;
}
.split-list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-1);
  letter-spacing: -0.005em;
}
.split-list li:first-child { border-top: 1px solid var(--line-strong); }
.split-list li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1.5px;
  background: var(--teal);
}
.split-cta {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-0);
  align-self: flex-start;
}
.split-cta:hover { gap: 12px; transition: gap .2s ease; }
.split-cta-row {
  margin-top: auto;
  padding-top: 28px;
}
.split-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-0);
  transition: all .2s ease;
}
.split-card.teal .split-cta-btn {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.split-cta-btn:hover { background: var(--ink-0); color: var(--bone-0); border-color: var(--ink-0); }
.split-card.teal .split-cta-btn:hover { background: #fff; color: var(--teal-deep); border-color: #fff; }

/* ─── Features grid ─── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 940px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--bg-cream);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.feature-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  margin-bottom: 6px;
}
.feature p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* ─── Numbers section ─── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 940px) { .numbers { grid-template-columns: 1fr 1fr; } }
.num-cell {
  background: var(--bg-deep);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.num-cell .v {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone-0);
}
.num-cell .v em { font-style: normal; color: var(--teal-glow); }
.num-cell .k {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-top: 10px;
}

/* ─── CTA banner ─── */
.cta-banner {
  background: var(--ink-0);
  color: var(--bone-0);
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,140,135,0.5), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone-0);
  position: relative; z-index: 1;
  max-width: 18ch;
}
.cta-banner h2 em { font-style: normal; color: var(--teal-glow); }
.cta-banner .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
footer.foot {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-mark img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 56px;
  display: block;
  opacity: 0.95;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .foot-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-col h6 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14.5px;
  color: var(--ink-1);
  letter-spacing: -0.005em;
  transition: color .2s ease;
}
.foot-col a:hover { color: var(--teal); }
.foot-blurb {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 28ch;
}
.foot-bottom {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
@media (max-width: 600px) { .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; } }

/* Animations utility */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ═══════════════════════════════════════════════════════
   CO-BRAND LAYER · Vula × Shoprite Money Market
   Vula teal stays the identity. Shoprite red is rationed to
   the partnership lockup + the cash-out moment only.
═══════════════════════════════════════════════════════ */

/* ─── Partnership lockup (nav + hero) ─── */
.cobrand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  white-space: nowrap;
}
.cobrand .x { color: var(--ink-3); font-size: 12px; }
.cobrand .partner {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--shoprite);
}
.cobrand .partner::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--shoprite);
}
.nav-cobrand { margin-left: 4px; }
@media (max-width: 980px) { .nav-cobrand { display: none; } }

/* hero partnership line under the trust microcopy */
.hero-partner {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--shoprite-50);
  background: var(--shoprite-50);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--shoprite-deep);
}
.hero-partner b { font-weight: 600; }

/* ─── Trust strip — give the Shoprite item the partner red ─── */
.trust-item.partner-item {
  color: var(--shoprite);
  opacity: 1;
  font-weight: 600;
}

/* ─── Cash-out step (03) → Shoprite red accent ─── */
.step-card.partner:hover { border-color: var(--shoprite); }
.step-card.partner .step-num { color: var(--shoprite); }
.step-card.partner:hover {
  box-shadow: 0 1px 2px rgba(226,35,26,0.06), 0 36px 80px -20px rgba(226,35,26,0.22);
}

/* ─── Photographic media (generated, photoreal documentary) ─── */
.media-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: var(--bg-alt);
}
.media-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
/* placeholder shown until a generated image is dropped in */
.media-frame.placeholder {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(0,140,135,0.4);
  background:
    repeating-linear-gradient(45deg, rgba(0,140,135,0.04) 0 12px, transparent 12px 24px),
    var(--teal-50);
}
.media-frame.placeholder .ph-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  text-align: center;
  padding: 18px;
  max-width: 30ch;
  line-height: 1.5;
}
.media-frame.placeholder .ph-label b { display: block; letter-spacing: 0.14em; margin-bottom: 6px; }

/* process step-03 photo fills the art panel */
.step-art.art-photo { padding: 0; }
.step-art.art-photo .media-frame { border-radius: 0; }

/* ─── Full-width photographic "moment" band ─── */
.moment {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--bg-alt);
}
.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .moment-grid { grid-template-columns: 1fr; } }
.moment-media {
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.moment-copy h2 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink-0);
  text-wrap: balance;
  max-width: 18ch;
}
.moment-copy h2 em { font-style: normal; color: var(--shoprite); }
.moment-copy p {
  margin-top: 20px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-1);
  max-width: 44ch;
}
.moment-copy .micro {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* worker portrait inside the audience split (teal card) */
.split-portrait {
  margin: -8px -8px 22px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
}
