:root {
  --void: #080c0a;
  --deep: #0d1410;
  --surface: #111a13;
  --elevated: #182019;
  --border: #1f2d21;
  --border-hi: #2a3d2c;

  --kola: #c8521a;
  --kola-soft: #e8845a;
  --kola-pale: #f2b08a;

  --aso: #b8922a;
  --aso-soft: #d4b060;

  --naira: #2a6b35;
  --naira-hi: #3d8f4a;
  --naira-glow: #5caa6a;
  --naira-pale: #a8d8ae;

  --t1: #f0ede8;
  --t2: #b8b4ac;
  --t3: #7a7670;
  --t4: #4a4740;

  --gold-glow: rgba(184, 146, 42, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--void);
  color: var(--t1);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Adire Geometric Overlay with Shift Animation */
.adire-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(168, 216, 174, 0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(168, 216, 174, 0.03) 40px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 19px,
      rgba(200, 82, 26, 0.02) 20px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 19px,
      rgba(200, 82, 26, 0.02) 20px
    );
  animation: adireShift 25s linear infinite;
}

@keyframes adireShift {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      40px 40px,
      40px 40px,
      20px 20px,
      20px 20px;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

nav.solid {
  background: rgba(8, 12, 10, 0.95);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-emblem {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border-hi);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(200, 82, 26, 0.12) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(42, 107, 53, 0.08) 50%,
      transparent 70%
    );
}

.logo-naira {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--naira-pale);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.logo-wordmark {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.nav-center {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-center a {
  color: var(--t3);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--t1);
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-ghost {
  color: var(--t2);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-ghost:hover {
  color: var(--t1);
  border-color: var(--naira-hi);
}

.btn-kola {
  background: var(--kola);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-kola:hover {
  background: #b84515;
  transform: translateY(-1px);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop: drawer just displays inline */
.nav-drawer {
  display: contents;
}


/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 4rem 6rem;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 65% 50%,
      rgba(42, 107, 53, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 25% 60%,
      rgba(200, 82, 26, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem 0.35rem 0.5rem;
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

.tag-dot {
  width: 18px;
  height: 18px;
  background: var(--naira);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tag-dot::after {
  content: "₦";
  font-size: 0.6rem;
  color: var(--naira-pale);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
  background: linear-gradient(
    90deg,
    var(--t1) 0%,
    var(--kola) 50%,
    var(--naira-hi) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 .accent-line {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 232, 0.28);
  font-style: italic;
  font-weight: 400;
}

h1 .kola-word {
  font-style: italic;
  text-shadow: 0 0 25px var(--gold-glow);
  transition: text-shadow 0.3s;
}

h1:hover .kola-word {
  text-shadow: 0 0 35px var(--kola-soft);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.75rem;
}

.hero-sub strong {
  color: var(--t1);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary-hero {
  background: var(--kola);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(200, 82, 26, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-hero:hover {
  background: #b84515;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(200, 82, 26, 0.5);
  filter: brightness(1.15);
}

.btn-link-hero {
  color: var(--t2);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--border-hi);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.btn-link-hero:hover {
  color: var(--t1);
  border-color: var(--t3);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.proof-faces {
  display: flex;
}

.face {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--void);
  margin-left: -7px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: "Syne", sans-serif;
}

.face:first-child {
  margin-left: 0;
}
.f1 {
  background: #3d5c25;
  color: #a8cc80;
}
.f2 {
  background: #6b3520;
  color: #f0b088;
}
.f3 {
  background: #1a3a60;
  color: #90b8e0;
}
.f4 {
  background: #5a3a10;
  color: #d4a850;
}
.f5 {
  background: #2a4a2c;
  color: #88c890;
}

.proof-text {
  font-size: 0.8rem;
  color: var(--t3);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--t2);
  display: block;
  font-weight: 500;
}

/* ── Phone Visual / Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-scene {
  position: relative;
  width: 300px;
  animation: sceneFloat 7s ease-in-out infinite;
}

@keyframes sceneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0.3deg);
  }
  50% {
    transform: translateY(-14px) rotate(-0.3deg);
  }
}

.phone-shell {
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 60px 120px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-face {
  background: var(--void);
  border-radius: 32px;
  overflow: hidden;
}

.ph-pill {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-pill-bar {
  width: 90px;
  height: 5px;
  background: var(--border-hi);
  border-radius: 3px;
}

.ph-body {
  padding: 1.1rem 1rem 1.5rem;
}

.ph-greeting {
  font-size: 0.65rem;
  color: var(--t4);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.ph-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.ph-balance-card {
  background: linear-gradient(135deg, var(--naira) 0%, #1a4a20 100%);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.9rem;
  position: relative;
  overflow: hidden;
}

.ph-balance-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.ph-bal-label {
  font-size: 0.58rem;
  color: rgba(168, 216, 174, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.ph-bal-amount {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--naira-pale);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ph-bal-sub {
  font-size: 0.6rem;
  color: rgba(168, 216, 174, 0.7);
  margin-top: 0.35rem;
}

.ph-bal-sub span {
  color: var(--naira-pale);
  font-weight: 600;
}

.ph-forecast {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.7rem;
}

.ph-fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  margin-bottom: 0.35rem;
}

.ph-fc-label {
  color: var(--t4);
}

.ph-fc-val {
  color: var(--t2);
  font-weight: 500;
}

.ph-bar-track {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.ph-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--naira-hi), var(--naira-glow));
}

.ph-nudge {
  background: rgba(200, 82, 26, 0.1);
  border: 1px solid rgba(200, 82, 26, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.6rem;
  color: var(--kola-pale);
  line-height: 1.5;
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.nudge-dot {
  color: var(--kola);
  flex-shrink: 0;
  margin-top: 1px;
}

.ph-chat-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-msg {
  font-size: 0.62rem;
  line-height: 1.5;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  max-width: 85%;
}

.ph-msg.bot {
  background: var(--elevated);
  color: var(--t2);
  border-radius: 3px 10px 10px 10px;
  align-self: flex-start;
}

.ph-msg.user {
  background: var(--naira);
  color: var(--naira-pale);
  border-radius: 10px 3px 10px 10px;
  align-self: flex-end;
}

/* Floating Cards */
.f-card {
  position: absolute;
  background: var(--elevated);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.fc1 {
  top: -10px;
  right: -110px;
  width: 170px;
  animation: fc1f 6s ease-in-out infinite;
}

.fc2 {
  bottom: 60px;
  left: -120px;
  width: 165px;
  animation: fc2f 8s ease-in-out infinite 1s;
}

@keyframes fc1f {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes fc2f {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.5deg);
  }
}

.fc-eyebrow {
  font-size: 0.58rem;
  color: var(--t4);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fc-big {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.03em;
}

.fc-sub {
  font-size: 0.62rem;
  color: var(--t3);
  margin-top: 0.2rem;
}

.fc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(42, 107, 53, 0.2);
  border: 1px solid rgba(42, 107, 53, 0.3);
  color: var(--naira-glow);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
}

/* ── MARQUEE ── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t4);
  letter-spacing: 0.04em;
}

.m-sep {
  color: var(--kola);
  opacity: 0.7;
  font-size: 0.6rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS GENERAL ── */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

.clear-section {
  padding: 8rem 0;
}

.section-kicker {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--kola);
  margin-bottom: 1.25rem;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t1);
  margin-bottom: 1.25rem;
}

h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--kola-soft);
}

h2 .green-em {
  font-style: italic;
  font-weight: 400;
  color: var(--naira-glow);
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.75;
  max-width: 560px;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.pain-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.pain-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pain-item:first-child {
  border-top: 1px solid var(--border);
}

.pain-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--border-hi);
  line-height: 1;
  min-width: 44px;
  transition: color 0.3s;
}

.pain-item:hover .pain-num {
  color: var(--kola);
}

.pain-copy h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.pain-copy p {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.6;
  font-weight: 300;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--kola) 0%, transparent 60%);
}

.quote-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border: 40px solid rgba(200, 82, 26, 0.04);
  transform: rotate(45deg);
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--kola);
  opacity: 0.3;
  margin-bottom: -1rem;
  display: block;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--t1);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.qp-av {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--naira);
  border: 1px solid var(--naira-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.qp-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.1rem;
}

.qp-role {
  font-size: 0.75rem;
  color: var(--t4);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.stat-cell {
  padding: 2rem;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-n {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-n span {
  color: var(--kola);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.4;
}

/* ── DEMO SECTION ── */
.demo-section {
  background: var(--void);
  padding: 8rem 0;
}

.demo-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.demo-header .section-body {
  margin: 0 auto;
  text-align: center;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.chat-shell {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.chat-topbar {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--naira);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--naira-pale);
}

.chat-info p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t1);
}

.chat-info span {
  font-size: 0.7rem;
  color: var(--naira-glow);
}

.chat-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--naira-glow);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.chat-messages {
  padding: 1.5rem;
  min-height: 380px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-hi);
  border-radius: 2px;
}

.cmsg {
  display: flex;
  flex-direction: column;
  max-width: 84%;
  animation: msgSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes msgSlide {
  from {
    opacity: 0;
    transform: translateX(var(--dir, 20px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cmsg.bot {
  align-self: flex-start;
  --dir: -20px;
}

.cmsg.usr {
  align-self: flex-end;
}

.cmsg-who {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  color: var(--t4);
}

.cmsg.usr .cmsg-who {
  text-align: right;
}

.cmsg-bub {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cmsg.bot .cmsg-bub {
  background: var(--elevated);
  color: var(--t2);
  border-radius: 4px 14px 14px 14px;
}

.cmsg.usr .cmsg-bub {
  background: var(--naira);
  color: var(--naira-pale);
  border-radius: 14px 4px 14px 14px;
}

.typing-dots {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: var(--elevated);
  border-radius: 4px 14px 14px 14px;
  width: fit-content;
}

.typing-dots.show {
  display: flex;
}

.td {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t4);
  animation: tdp 1.3s ease-in-out infinite;
}

.td:nth-child(2) {
  animation-delay: 0.18s;
}
.td:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes tdp {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chat-input-row {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

#chatInput {
  flex: 1;
  background: var(--elevated);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: var(--t1);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  outline: none;
  resize: none;
  min-height: 42px;
  max-height: 120px;
  line-height: 1.5;
  transition: border-color 0.2s;
}

#chatInput::placeholder {
  color: var(--t4);
}

#chatInput:focus {
  border-color: var(--naira-hi);
}

.send-btn {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--kola);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.15s;
}

.send-btn:hover {
  background: #b84515;
  transform: scale(1.05);
}

.prompts-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.prompts-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pill-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prompt-pill {
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.83rem;
  color: var(--t2);
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.4;
  text-align: left;
  font-family: "DM Sans", sans-serif;
}

.prompt-pill:hover {
  background: var(--elevated);
  border-color: var(--naira-hi);
  color: var(--t1);
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 5px 15px rgba(42, 107, 53, 0.2);
}

/* ── HOW SECTION ── */
.how-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 8rem 0;
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.how-step:first-child {
  border-top: 1px solid var(--border);
}

.step-line {
  position: absolute;
  left: 17px;
  top: 2rem;
  bottom: -2rem;
  width: 1px;
  background: var(--border);
}

.how-step:last-child .step-line {
  display: none;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--border-hi);
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--t3);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.how-step:hover .step-circle {
  background: var(--naira);
  border-color: var(--naira-hi);
  color: var(--naira-pale);
}

.step-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.65;
  font-weight: 300;
}

.timeline-visual {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 24px;
  overflow: hidden;
}

.tv-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tv-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 0.03em;
}

.tv-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(42, 107, 53, 0.15);
  border: 1px solid rgba(42, 107, 53, 0.25);
  color: var(--naira-glow);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
}

.tv-body {
  padding: 1.5rem;
}

.tv-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tv-bar-label {
  font-size: 0.62rem;
  color: var(--t4);
  width: 52px;
  flex-shrink: 0;
  text-align: right;
}

.tv-bar-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.tv-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.tv-bar-val {
  font-size: 0.62rem;
  color: var(--t3);
  width: 52px;
}

.green-fill {
  background: linear-gradient(90deg, var(--naira-hi), var(--naira-glow));
}
.red-fill {
  background: linear-gradient(90deg, var(--kola), var(--kola-soft));
}
.gold-fill {
  background: linear-gradient(90deg, var(--aso), var(--aso-soft));
}

.tv-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.tv-alert {
  background: rgba(200, 82, 26, 0.08);
  border: 1px solid rgba(200, 82, 26, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.7rem;
  color: var(--kola-pale);
  line-height: 1.5;
}

.tv-alert-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--kola-soft);
}

.tv-prediction {
  background: rgba(42, 107, 53, 0.08);
  border: 1px solid rgba(42, 107, 53, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.7rem;
  color: var(--naira-pale);
  line-height: 1.5;
  margin-top: 0.75rem;
}

.tv-pred-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--naira-glow);
}

/* ── FEATURES SECTION ── */
.features-section {
  background: var(--void);
  padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 4rem;
}

.feat-cell {
  background: var(--surface);
  padding: 2.5rem;
  transition: background 0.2s;
}

.feat-cell:hover {
  background: var(--elevated);
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  background: var(--elevated);
}

.feat-cell h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.feat-cell p {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.65;
  font-weight: 300;
}

.feat-metric {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--t4);
}

.feat-metric strong {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kola-soft);
  display: block;
  margin-bottom: 0.15rem;
  letter-spacing: -0.03em;
}

/* ── WAITLIST SECTION ── */
.waitlist-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 59px,
      rgba(200, 82, 26, 0.022) 60px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 59px,
      rgba(200, 82, 26, 0.022) 60px
    );
  pointer-events: none;
}

.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-inner h2 {
  margin-bottom: 1.25rem;
}

.city-badges {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.city-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  color: var(--t3);
}

.wl-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 1.75rem;
}

.wl-email {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  color: var(--t1);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.wl-email:focus {
  border-color: var(--naira-hi);
}

.wl-email::placeholder {
  color: var(--t4);
}

.wl-submit {
  background: var(--kola);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}

.wl-submit:hover {
  background: #b84515;
  transform: translateY(-1px);
}

.wl-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s;
}

.wl-submit:active::after {
  width: 200px;
  height: 200px;
}

.wl-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.75rem;
  color: var(--t4);
}

.wl-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── FOOTER ── */
footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--naira-pale);
}

.footer-logo-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--t2);
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--t4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--t2);
}

footer p {
  font-size: 0.75rem;
  color: var(--t4);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE RESPONSIVE RESPONSIVE ── */
@media (max-width: 1100px) {
  .fc1 {
    right: -50px;
  }
  .fc2 {
    left: -50px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1.25rem 1.5rem;
  }

  /* Show hamburger on mobile */
  .nav-toggle {
    display: block;
  }

  /* Mobile drawer: fullscreen overlay */
  .nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(8, 12, 10, 0.97);
    backdrop-filter: blur(20px);
    z-index: 199;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  .nav-drawer.open {
    display: flex;
  }

  .nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
  }

  .nav-center a {
    font-size: 1.2rem;
    color: var(--t2);
  }

  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-right .btn-kola {
    padding: .85rem 2rem;
    font-size: 1rem;
  }

  .hero {
    padding: 7rem 2rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }

  .fc1,
  .fc2 {
    display: none;
  }

  .clear-section {
    padding: 5rem 0;
  }
  .container {
    padding: 0 2rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .how-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-cell:last-child {
    border-bottom: none;
  }

  .wl-form {
    flex-direction: column;
    padding: 0 2rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
