/* ============================================
   BRAND TOKENS — from tokens.css
   ============================================ */
:root {
  --brand-anchor: #0F766E;
  --brand-anchor-deep: #0a544e;
  --brand-earn:   #10B981;
  --brand-track:  #38BDF8;
  --brand-redeem: #F5E6D3;
  --brand-cream:  #FAF3E7;
  --brand-base:   #0A0E10;
  --brand-base-soft: #1a1f22;
  --brand-ink:    #0A0E10;
  --brand-ink-60: rgba(10,14,16,0.62);
  --brand-ink-40: rgba(10,14,16,0.4);
  --brand-cream-60: rgba(250,243,231,0.7);
  --brand-cream-40: rgba(250,243,231,0.45);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Source Serif Pro', Georgia, serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--brand-base);
  color: var(--brand-cream);
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10,14,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(250,243,231,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--brand-cream);
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-cream-60);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--brand-cream); }
.nav-cta {
  background: var(--brand-earn);
  color: var(--brand-base);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--brand-cream);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(15,118,110,0.35), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(16,185,129,0.18), transparent 50%),
    var(--brand-base);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(56,189,248,0.06) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(16,185,129,0.08) 0%, transparent 30%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-earn);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-earn);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--brand-cream);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}
.hero h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-earn);
}
.hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--brand-cream-60);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s var(--ease-out) both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-earn);
  color: var(--brand-base);
}
.btn-primary:hover {
  background: var(--brand-cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(16,185,129,0.5);
}
.btn-ghost {
  background: rgba(250,243,231,0.06);
  border: 1px solid rgba(250,243,231,0.18);
  color: var(--brand-cream);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(250,243,231,0.12);
  border-color: rgba(250,243,231,0.3);
}
.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(250,243,231,0.1);
  animation: fadeUp 0.9s 0.4s var(--ease-out) both;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  color: var(--brand-earn);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--brand-cream-60);
  line-height: 1.4;
  max-width: 140px;
}

/* Hero visual — phone mockup composition */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  animation: fadeUp 1s 0.4s var(--ease-out) both;
}
.phone {
  position: absolute;
  width: 62%;
  aspect-ratio: 9/19;
  background: linear-gradient(160deg, #0a544e 0%, #0F766E 60%, #10B981 100%);
  border-radius: 36px;
  padding: 5px;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--brand-base);
  border-radius: 32px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.phone-1 {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.phone-2 {
  top: 8%;
  right: 0;
  transform: rotate(7deg);
  z-index: 2;
}
.phone-notch {
  width: 80px;
  height: 5px;
  background: rgba(250,243,231,0.2);
  border-radius: 999px;
  margin: 0 auto;
}
.phone-greeting {
  font-size: 11px;
  color: var(--brand-cream-60);
  margin-top: 8px;
}
.phone-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brand-cream);
  margin-bottom: 12px;
}
.score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 8px auto;
}
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-track { stroke: rgba(250,243,231,0.08); }
.score-ring-fill {
  stroke: var(--brand-earn);
  stroke-dasharray: 360;
  stroke-dashoffset: 80;
  filter: drop-shadow(0 0 8px rgba(16,185,129,0.5));
}
.score-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num-big {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--brand-cream);
  line-height: 1;
}
.score-num-lbl {
  font-size: 9px;
  color: var(--brand-cream-60);
  margin-top: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(250,243,231,0.05);
  border: 1px solid rgba(250,243,231,0.08);
  border-radius: 12px;
  font-size: 11px;
}
.phone-pill .label { color: var(--brand-cream-60); }
.phone-pill .value { color: var(--brand-earn); font-weight: 600; }

.phone-2 .phone-screen {
  background: linear-gradient(180deg, #0F766E 0%, #0a544e 100%);
  padding: 20px 18px;
}
.coin-card {
  background: linear-gradient(135deg, rgba(245,230,211,0.95), rgba(245,230,211,0.7));
  border-radius: 16px;
  padding: 16px;
  color: var(--brand-base);
}
.coin-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-ink-60);
}
.coin-balance {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 34px;
  color: var(--brand-base);
  margin: 6px 0 4px;
  line-height: 1;
}
.coin-trend {
  font-size: 11px;
  color: var(--brand-anchor);
  font-weight: 600;
}
.activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 11px;
  border-bottom: 1px solid rgba(250,243,231,0.06);
}
.activity-row:last-child { border-bottom: none; }
.activity-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-earn);
  font-size: 12px;
  flex-shrink: 0;
}
.activity-text { flex: 1; color: var(--brand-cream); }
.activity-coins { color: var(--brand-earn); font-weight: 600; }

@media (max-width: 1024px) {
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { gap: 40px; }
  .hero-illustration { display: none; }
  .phone-2 { display: none; }
  .hero-visual {
    aspect-ratio: auto;
    width: min(280px, 75vw);
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .phone-1 {
    position: relative;
    width: min(280px, 75vw);
    height: calc(min(280px, 75vw) * 19 / 9);
    top: auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 28px; }
}

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--brand-cream);
  color: var(--brand-base);
}
.section-head {
  max-width: 720px;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-anchor);
  margin-bottom: 24px;
}
.problem .section-eyebrow { color: var(--brand-anchor); }
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.section-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.section-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--brand-ink-60);
}

/* Dark-background sections recolor section eyebrow / title / lede */
.how .section-eyebrow,
.pillars .section-eyebrow,
.moments .section-eyebrow,
.geo .section-eyebrow {
  color: var(--brand-earn);
}
.how .section-title,
.pillars .section-title,
.moments .section-title {
  color: var(--brand-cream);
}
.how .section-title .serif,
.pillars .section-title .serif,
.moments .section-title .serif {
  color: var(--brand-earn);
}
.moments .section-lede {
  color: var(--brand-cream-60);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--brand-base);
  color: var(--brand-cream);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.problem-card:hover { transform: translateY(-4px); }
.problem-stat {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 64px;
  color: var(--brand-earn);
  line-height: 0.9;
  margin-bottom: 16px;
}
.problem-card-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--brand-cream-60);
}
.problem-flip {
  margin-top: 100px;
  padding: 60px 48px;
  background: var(--brand-anchor);
  color: var(--brand-cream);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.problem-flip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16,185,129,0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.2), transparent 50%);
  pointer-events: none;
}
.problem-flip-text {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}
.problem-flip-text strong {
  color: var(--brand-earn);
  font-weight: 600;
}
@media (max-width: 768px) {
  .problem-flip { padding: 40px 28px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--brand-base);
  position: relative;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .how-steps { grid-template-columns: 1fr; } }
.how-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(250,243,231,0.03);
  border: 1px solid rgba(250,243,231,0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.how-step:hover {
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.04);
}
.how-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brand-earn);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.how-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16,185,129,0.12);
  color: var(--brand-earn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--brand-cream);
}
.how-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--brand-cream-60);
}

/* ============================================
   PILLARS — EARN / TRACK / REDEEM / BELONG
   ============================================ */
.pillars {
  background: var(--brand-base);
  padding-top: 40px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); }
.pillar-earn   { background: linear-gradient(140deg, #064e3b 0%, #10B981 130%); color: var(--brand-cream); }
.pillar-track  { background: linear-gradient(140deg, #0c4a6e 0%, #38BDF8 130%); color: var(--brand-cream); }
.pillar-redeem { background: var(--brand-redeem); color: var(--brand-base); }
.pillar-belong { background: var(--brand-anchor); color: var(--brand-cream); }
.pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 16px;
}
.pillar-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-desc {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 420px;
}
.pillar-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pillar-list li {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.pillar-redeem .pillar-list li {
  background: rgba(10,14,16,0.08);
  border-color: rgba(10,14,16,0.15);
}

/* ============================================
   PARTNERS SECTION (FOR EMPLOYERS / INSURERS / INVESTORS)
   ============================================ */
.partners {
  background: var(--brand-cream);
  color: var(--brand-base);
}
.partners .section-eyebrow { color: var(--brand-anchor); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: var(--brand-base);
  color: var(--brand-cream);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.partner-card:hover { transform: translateY(-4px); }
.partner-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor, transparent);
  opacity: 0.08;
}
.partner-card-1::before { color: var(--brand-earn); }
.partner-card-2::before { color: var(--brand-track); }
.partner-card-3::before { color: var(--brand-anchor); }
.partner-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.partner-card-1 .partner-label { color: var(--brand-earn); }
.partner-card-2 .partner-label { color: var(--brand-track); }
.partner-card-3 .partner-label { color: var(--brand-redeem); }
.partner-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--brand-cream);
}
.partner-card h3 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.partner-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-cream-60);
  margin-bottom: 24px;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-earn);
  transition: gap 0.2s var(--ease);
}
.partner-link:hover { gap: 12px; }

/* ============================================
   GHANA SECTION
   ============================================ */
.geo {
  background: var(--brand-base);
  position: relative;
  overflow: hidden;
}
.geo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15,118,110,0.2), transparent 60%);
  pointer-events: none;
}
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .geo-grid { grid-template-columns: 1fr; gap: 48px; } }

.geo-map {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-map svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(16,185,129,0.3));
}
.geo-content .section-title { color: var(--brand-cream); }
.geo-content .section-lede { color: var(--brand-cream-60); }
.geo-next {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-track);
  letter-spacing: 0.05em;
}
.geo-next-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-track);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================
   WAITLIST CTA SECTION
   ============================================ */
.waitlist {
  background: var(--brand-redeem);
  color: var(--brand-base);
}
.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.waitlist .section-eyebrow { color: var(--brand-anchor); }
.waitlist h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.waitlist h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.waitlist-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--brand-ink-60);
  margin-bottom: 48px;
}
.waitlist-form {
  background: var(--brand-base);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px -20px rgba(10,14,16,0.3);
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; margin-top: 8px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-cream-60);
}
.form-input, .form-select {
  background: rgba(250,243,231,0.05);
  border: 1px solid rgba(250,243,231,0.15);
  color: var(--brand-cream);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-earn);
  background: rgba(16,185,129,0.05);
}
.form-input::placeholder { color: var(--brand-cream-40); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FAF3E780'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  background: var(--brand-earn);
  color: var(--brand-base);
  padding: 18px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--brand-cream);
  transform: translateY(-2px);
}
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-note {
  font-size: 12px;
  color: var(--brand-cream-40);
  text-align: center;
  margin-top: 16px;
}
.form-error {
  margin-top: 16px;
  color: #ef4444;
  font-size: 14px;
  line-height: 1.5;
}
.form-error a {
  color: inherit;
  text-decoration: underline;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  color: var(--brand-earn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brand-earn);
  margin-bottom: 8px;
}
.form-success p { color: var(--brand-earn); font-size: 15px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--brand-base);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(250,243,231,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--brand-cream-60);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.4;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-earn);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--brand-cream-60);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--brand-cream); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250,243,231,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--brand-cream-40);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BRAND WORDMARK (embedded SVG)
   ============================================ */
.nav-logo .brand-wordmark {
  height: 28px;
  width: auto;
  display: block;
}
.footer-top .nav-logo .brand-wordmark {
  height: 32px;
}
.nav-logo { gap: 0; }

/* ============================================
   GHANA MAP — region styling
   ============================================ */
.ghana-map {
  width: 100%;
  height: auto;
  max-width: 520px;
  filter: drop-shadow(0 0 60px rgba(16,185,129,0.25));
}


/* ============================================
   HERO ILLUSTRATION (figures behind phones)
   ============================================ */
.hero-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
}
.hero-visual { position: relative; }
.hero-visual .phone { z-index: 3; }


/* ============================================
   LYVWELL MOMENTS — edge-to-edge photo strip
   ============================================ */
.moments {
  background: var(--brand-base);
  padding-bottom: 0;
  overflow: hidden;
}
.moments-strip {
  margin-top: 60px;
  padding: 0 0 120px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.moments-strip::-webkit-scrollbar { display: none; }
.moments-track {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  width: max-content;
}
@media (max-width: 768px) { .moments-track { padding: 0 20px; gap: 16px; } }
.moment-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(250,243,231,0.04);
  border: 1px solid rgba(250,243,231,0.08);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
@media (max-width: 480px) { .moment-card { flex: 0 0 260px; } }
.moment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16,185,129,0.4);
}
.moment-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #0F766E 0%, #10B981 100%);
  position: relative;
}
.moment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.moment-card:hover .moment-img img { transform: scale(1.06); }
.moment-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,16,0.4) 100%);
}
.moment-card figcaption {
  padding: 20px 22px 24px;
}
.moment-coins {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--brand-earn);
  margin-bottom: 8px;
}
.moment-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--brand-cream-60);
}

/* ============================================
   COMMUNITY GRID
   ============================================ */
.community {
  background: var(--brand-redeem);
  color: var(--brand-base);
}
.community .section-eyebrow { color: var(--brand-anchor); }
.community-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 900px) { .community-grid { grid-template-columns: 1fr 1fr; } .community-card-large { grid-column: 1 / -1; } }
@media (max-width: 600px) { .community-grid { grid-template-columns: 1fr; } }
.community-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-base);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}
.community-card:hover { transform: translateY(-4px); }
.community-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F766E, #064e3b);
}
.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.community-card:hover .community-img img { transform: scale(1.05); }
.community-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,14,16,0.85) 100%);
}
.community-card figcaption {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  color: var(--brand-cream);
}
.community-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-earn);
  margin-bottom: 16px;
}
.community-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--brand-cream);
  margin-bottom: 14px;
}
.community-card-large blockquote { font-size: 24px; }
.community-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--brand-cream-60);
}


/* ============================================
   PHOTO PLACEHOLDERS (branded fallbacks)
   ============================================ */
.photo-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.placeholder-icon {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}
.placeholder-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.community-card .photo-placeholder .placeholder-icon { width: 80px; height: 80px; }
.community-card .photo-placeholder .placeholder-label { font-size: 22px; }

