/* ==========================================================================
   Njangi Estate — Landing Page v2
   Split hero · light security · 3 pillars · grid testimonials
   ========================================================================== */

:root {
  --bg-0: #060a12;
  --bg-1: #0a1120;
  --bg-2: #0d1626;
  --bg-light: #f8faf9;
  --panel: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.05);

  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-dark: #04231a;

  --gold-400: #e6b657;
  --gold-text: #a97d1f;

  --text-hi: #f4f7fb;
  --text-mid: #b9c3d4;
  --text-lo: #7c8aa0;
  --text-dark: #0b1a12;
  --text-dark-mid: #4a5a52;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-hi);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 56px; }
}

section { position: relative; }

/* ---------- Atmosphere ---------- */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
  opacity: 0.45;
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.4s var(--ease);
}
.blob-1 {
  top: -180px; left: -80px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(16,185,129,.16), transparent 68%);
}
.blob-2 {
  top: 40px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230,182,87,.10), transparent 66%);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: 0;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 0 4px rgba(52,211,153,.16);
}
.eyebrow-gold {
  display: block;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--gold-400);
  text-transform: uppercase;
}
.eyebrow-green {
  display: block;
  padding: 0;
  border: none;
  background: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--emerald-600);
  text-transform: uppercase;
}

.grad-text {
  background: linear-gradient(96deg, #34d399, #10b981 42%, #e6b657);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary {
  color: var(--emerald-dark);
  background: var(--emerald-500);
  padding: 12px 20px;
  box-shadow: 0 6px 20px rgba(16,185,129,.28);
}
.btn-primary:hover { background: var(--emerald-400); }
.btn-ghost {
  color: var(--text-hi);
  padding: 11px 16px;
}
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-outline {
  color: var(--text-hi);
  border: 1px solid rgba(255,255,255,.16);
  padding: 17px 26px;
}
.btn-outline:hover { background: rgba(255,255,255,.05); }
.btn-outline-dark {
  color: var(--emerald-dark);
  border: 1px solid rgba(4,35,26,.35);
  padding: 18px 26px;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.22); }
.btn-dark {
  color: var(--text-hi);
  background: var(--bg-0);
  padding: 18px 26px;
}
.btn-dark:hover { background: var(--bg-2); }
.btn-lg { font-size: 15.5px; padding: 17px 26px; }
.btn-block { width: 100%; }
.nav-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--emerald-dark);
  color: var(--emerald-400);
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 74px;
  background: rgba(6,10,18,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-mark img { width: 30px; height: 30px; object-fit: contain; }
.brand-word { font-weight: 700; font-size: 17.5px; letter-spacing: -.2px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-hi); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--text-hi);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle span { width: 20px; }
.nav-toggle::before,
.nav-toggle::after { width: 20px; }
.nav-toggle.active span { opacity: 0; }
.nav-toggle.active::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 74px 0 0;
  z-index: 39;
  background: var(--bg-1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s;
  border-top: 1px solid var(--border);
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .nav-actions {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}

@media (min-width: 1024px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero (split) ---------- */
.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
}
.hero-split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding: 74px 0 0; }
  .hero-split {
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
  }
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(2.1rem, 5vw, 3.875rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.8px;
  text-wrap: balance;
}
.hero-copy .lead {
  margin-top: 22px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-mid);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-cta .btn { flex: 0 1 auto; }
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-hi);
}
.chip-check {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(16,185,129,.18);
  color: var(--emerald-400);
  font-size: 9px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}
.chip-label-short { display: none; }
.btn-label-short { display: none; }
.hero-note {
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-lo);
}

/* Hero stats (inline) */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); margin-top: 66px; }
}
.hero-stat {
  padding: 20px;
}
@media (min-width: 768px) {
  .hero-stat { padding: 26px 24px; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child { padding-right: 0; }
}
.hero-stat-divider {
  border-left: 1px solid var(--border);
}
@media (max-width: 767px) {
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.stat-value {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--emerald-400);
  letter-spacing: -1px;
}
.stat-label {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-mid);
}

/* ---------- Hero mock (light app UI) ---------- */
.hero-visual {
  position: relative;
}
.hero-visual-glow {
  position: absolute;
  inset: 22px 18px 40px 26px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(16,185,129,.34), transparent 70%);
  filter: blur(38px);
}
.hero-mock {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.hero-mock-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #111a2b;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-mock-dots { display: flex; gap: 6px; }
.hero-mock-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3b475c;
}
.hero-mock-url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-lo);
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  padding: 6px 0;
}
.hero-mock-app {
  background: var(--bg-light);
  padding: 18px;
}
.hero-mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.hero-mock-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-active {
  padding: 4px 9px;
  border-radius: 6px;
  background: #ecfdf5;
  color: var(--emerald-600);
  font-size: 10.5px;
  font-weight: 600;
}
.badge-meta {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-lo);
}
.hero-mock-house {
  margin-top: 9px;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.4px;
}
.hero-mock-wallet {
  text-align: right;
  padding: 11px 15px;
  border-radius: 12px;
  background: linear-gradient(150deg, #059669, #0b7a54);
  min-width: 140px;
  flex-shrink: 0;
}
.hero-mock-wallet-label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: .4px;
}
.hero-mock-wallet-amt {
  display: block;
  margin-top: 7px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.4px;
}
.hero-mock-wallet-amt small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.hero-mock-progress-card {
  margin-top: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.07);
  border-radius: 12px;
}
.hero-mock-progress-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 12px;
}
.hero-mock-progress-top span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
.hero-mock-progress-top span:last-child {
  font-weight: 500;
  color: var(--text-lo);
}
.hero-mock-progress-track {
  margin-top: 10px;
  height: 8px;
  border-radius: 99px;
  background: #e7edea;
  overflow: hidden;
}
.hero-mock-progress-fill {
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transition: width 1.2s var(--ease);
}
.hero-mock-ledger {
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.07);
  border-radius: 12px;
  overflow: hidden;
}
.hero-mock-ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(11,26,18,.06);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.ledger-link {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--emerald-600);
}
.hero-mock-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(11,26,18,.05);
}
.hero-mock-row:last-child { border-bottom: none; }
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  flex-shrink: 0;
}
.mock-avatar-green { background: #dff5ea; color: var(--emerald-600); }
.mock-avatar-gold { background: #fdf1e6; color: var(--gold-text); }
.mock-row-body { flex: 1; min-width: 0; }
.mock-row-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.turn-badge {
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 5px;
  background: #fdf6e6;
  color: var(--gold-text);
  font-size: 9.5px;
  font-weight: 600;
}
.mock-row-meta {
  font-size: 11.5px;
  color: var(--text-lo);
}
.mock-chip {
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.mock-chip.paid { background: #ecfdf5; color: var(--emerald-600); }
.mock-chip.pending { background: #fdf6e6; color: var(--gold-text); }

/* Pocket overlay */
.pocket-mock {
  position: absolute;
  right: -12px;
  bottom: -48px;
  width: 186px;
  border-radius: 26px;
  padding: 7px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 50px rgba(0,0,0,.55);
  z-index: 2;
}
@media (max-width: 1023px) {
  .pocket-mock { display: none; }
}
.pocket-mock-inner {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-light);
}
.pocket-notch {
  display: flex;
  justify-content: center;
  padding: 6px 0 3px;
}
.pocket-notch::after {
  content: '';
  width: 44px; height: 5px;
  border-radius: 99px;
  background: #0b1220;
}
.pocket-body { padding: 8px 10px 10px; }
.pocket-card-green {
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(150deg, #059669, #0b7a54);
}
.pocket-label {
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.pocket-amt {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.pocket-stats {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.pocket-stat {
  flex: 1;
  padding: 8px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.07);
}
.pocket-stat span {
  display: block;
  font-size: 7.5px;
  color: var(--text-lo);
}
.pocket-stat strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-dark);
}
.pocket-next {
  margin-top: 8px;
  padding: 9px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.07);
}
.pocket-next-title {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.pocket-next-meta {
  margin-top: 4px;
  font-size: 8.5px;
  color: var(--text-lo);
}

/* ---------- Before / After ---------- */
.before-after {
  padding: 34px 0;
  background: var(--bg-0);
}
.before-after-card {
  display: grid;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel);
}
@media (min-width: 768px) {
  .before-after-card {
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: center;
  }
}
.before-after-side {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ba-tag {
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ba-before { background: rgba(255,255,255,.06); color: var(--text-lo); }
.ba-after { background: rgba(16,185,129,.16); color: var(--emerald-400); }
.ba-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.3;
}
.ba-body {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-lo);
  line-height: 1.4;
}
.ba-after + div .ba-body,
.before-after-side:last-child .ba-body { color: var(--text-mid); }
.ba-arrow {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-400);
  text-align: center;
}

/* ---------- Journey ---------- */
.journey {
  padding: 72px 0;
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 1024px) { .journey { padding: 96px 0; } }

.journey-head { max-width: 760px; }
.journey-head h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
}
.journey-head p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mid);
}

.journey-timeline {
  position: relative;
  margin-top: 48px;
}
@media (min-width: 1024px) { .journey-timeline { margin-top: 56px; } }
.journey-line {
  display: none;
}
@media (min-width: 1024px) {
  .journey-line {
    display: block;
    position: absolute;
    left: 6%; right: 6%;
    top: 29px;
    height: 2px;
    background: linear-gradient(90deg, rgba(16,185,129,.15), #10b981 30%, #e6b657 92%);
  }
}
.journey-steps {
  display: grid;
  gap: 28px;
}
@media (min-width: 1024px) {
  .journey-steps { grid-template-columns: repeat(4, 1fr); }
}
.journey-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid rgba(16,185,129,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--emerald-400);
  box-shadow: 0 0 0 8px var(--bg-1), 0 0 34px rgba(16,185,129,.22);
}
.journey-num-gold {
  border-color: rgba(230,182,87,.5);
  color: var(--gold-400);
  box-shadow: 0 0 0 8px var(--bg-1), 0 0 34px rgba(230,182,87,.2);
}
.journey-step h3 {
  margin-top: 22px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}
.journey-step p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 290px;
}

.rotation-card {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
}
@media (min-width: 768px) {
  .rotation-card {
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-top: 52px;
  }
}
.rotation-ring {
  position: relative;
  width: 186px; height: 186px;
  border-radius: 50%;
  margin: 0 auto;
}
.rotation-ring-inner {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rotation-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-lo);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.rotation-turn {
  margin-top: 6px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
.rotation-of {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--emerald-400);
}
.rotation-copy h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.rotation-copy p {
  margin-top: 10px;
  max-width: 640px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-mid);
}
.rotation-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
}
.rotation-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  font-style: normal;
}
.legend-green { background: var(--emerald-500); }
.legend-gold { background: var(--gold-400); }
.legend-gray { background: rgba(255,255,255,.16); }

/* ---------- Pillars (3 features) ---------- */
.pillars {
  padding: 72px 0;
  background: var(--bg-0);
}
@media (min-width: 1024px) { .pillars { padding: 96px 0; } }

.pillars-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.pillars-head h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  max-width: 660px;
}
.pillars-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--emerald-400);
  white-space: nowrap;
}
.pillars-link:hover { color: var(--emerald-500); }

.pillars-grid {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  transition: border-color .25s;
}
.pillar-card:hover { border-color: rgba(16,185,129,.4); }
.pillar-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(16,185,129,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--emerald-400);
}
.pillar-icon-gold {
  background: rgba(230,182,87,.14);
  color: var(--gold-400);
}
.pillar-card h3 {
  margin-top: 22px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}
.pillar-card > p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-mid);
}

.pillar-snippet {
  margin-top: 22px;
  padding: 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
}
.pillar-snippet-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar-snippet-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--emerald-500);
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  flex-shrink: 0;
}
.pillar-snippet-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.2;
}
.pillar-snippet-meta {
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--text-lo);
}
.pillar-snippet-ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pillar-snippet-ledger-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.amt-plus { font-size: 12.5px; font-weight: 600; color: var(--emerald-400); }
.amt-minus { font-size: 12.5px; font-weight: 600; color: var(--gold-400); }
.pillar-snippet-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar-trust-ring {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: conic-gradient(#e6b657 0deg 320deg, rgba(255,255,255,.1) 320deg 360deg);
  flex-shrink: 0;
}
.pillar-trust-ring span {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

/* ---------- Security (light) ---------- */
.security-light {
  padding: 72px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}
@media (min-width: 1024px) { .security-light { padding: 96px 0; } }

.security-light-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .security-light-layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
  }
}
.security-light-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.85rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -1.1px;
  color: var(--text-dark);
}
.security-light-copy .lead {
  margin-top: 16px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-dark-mid);
}
.security-checklist {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 540px;
}
.security-check-item {
  display: flex;
  gap: 13px;
}
.check-icon {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--emerald-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.security-check-item h4 {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
}
.security-check-item p {
  margin-top: 3px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-dark-mid);
}

.security-light-panel {
  display: grid;
  gap: 20px;
}
.house-trust-card {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(11,26,18,.07);
}
.house-trust-ring {
  position: relative;
  width: 132px; height: 132px;
  border-radius: 50%;
  flex-shrink: 0;
}
.house-trust-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.house-trust-score {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
}
.house-trust-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-lo);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.house-trust-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.house-trust-card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dark-mid);
}

.security-status-card {
  padding: 24px 26px;
  background: #ecfdf5;
  border: 1px solid rgba(5,150,105,.16);
  border-radius: var(--radius-md);
}
.security-status-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--emerald-600);
  text-transform: uppercase;
}
.security-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 14.5px;
}
.security-status-row span:first-child {
  font-weight: 500;
  color: var(--text-dark);
}
.security-status-row .ok {
  font-weight: 600;
  font-size: 13px;
  color: var(--emerald-600);
}

/* ---------- Mobile app ---------- */
.mobile-app {
  padding: 72px 0;
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 1024px) { .mobile-app { padding: 96px 0; } }

.mobile-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .mobile-layout {
    grid-template-columns: 1fr auto;
    gap: 70px;
  }
}
.mobile-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.85rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -1.1px;
}
.mobile-copy > p {
  margin-top: 16px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-mid);
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: var(--panel);
  transition: background .2s;
}
.store-badge:hover { background: rgba(255,255,255,.07); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .txt small {
  display: block;
  font-size: 10.5px;
  color: var(--text-lo);
  text-transform: uppercase;
}
.store-badge .txt strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 600;
}
.mobile-footnote {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-lo);
}

/* Phone mock */
.mobile-phone-wrap {
  position: relative;
  margin: 0 auto;
}
.mobile-phone-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.2), transparent 70%);
  filter: blur(26px);
}
.mobile-phone {
  position: relative;
  width: min(290px, 100%);
  border-radius: 38px;
  padding: 9px;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}
.mobile-phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-light);
}
.mobile-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.mobile-island {
  width: 66px; height: 18px;
  border-radius: 99px;
  background: #0b1220;
}
.mobile-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 0;
}
.mobile-app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-app-brand img {
  width: 22px; height: 22px;
  object-fit: contain;
}
.mobile-app-brand span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.mobile-trust-badge {
  padding: 4px 9px;
  border-radius: 99px;
  background: #fdf6e6;
  color: var(--gold-text);
  font-size: 10.5px;
  font-weight: 600;
}
.mobile-screen-body { padding: 12px 14px 0; }
.mobile-screen-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}
.mobile-house-card {
  margin-top: 12px;
  padding: 13px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(11,26,18,.07);
}
.mobile-house-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.chip-due {
  padding: 3px 8px;
  border-radius: 6px;
  background: #fdf6e6;
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 600;
}
.chip-paid {
  padding: 3px 8px;
  border-radius: 6px;
  background: #ecfdf5;
  color: var(--emerald-600);
  font-size: 10px;
  font-weight: 600;
}
.mobile-house-meta {
  margin-top: 7px;
  font-size: 11.5px;
  color: var(--text-lo);
}
.mobile-progress {
  margin-top: 9px;
  height: 6px;
  border-radius: 99px;
  background: #e7edea;
  overflow: hidden;
}
.mobile-progress div {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 99px;
}
.mobile-pocket-card {
  margin-top: 10px;
  padding: 13px;
  border-radius: 13px;
  background: linear-gradient(150deg, #059669, #0b7a54);
  color: #fff;
}
.mobile-pocket-card span {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.mobile-pocket-card strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  font-weight: 700;
}
.mobile-tab-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  padding: 11px 0 14px;
  border-top: 1px solid rgba(11,26,18,.07);
  background: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-lo);
}
.mobile-tab-bar .active { color: var(--emerald-600); }

/* ---------- Testimonials grid ---------- */
.testimonials-grid {
  padding: 72px 0;
  background: var(--bg-0);
}
@media (min-width: 1024px) { .testimonials-grid { padding: 96px 0; } }

.testimonials-grid h2 {
  margin-top: 0;
  max-width: 700px;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.1px;
}
.testimonials-sub {
  margin-top: 12px;
  color: var(--text-mid);
}

.t-grid {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}
@media (min-width: 1024px) {
  .t-grid { grid-template-columns: repeat(3, 1fr); }
}

.t-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-2);
}
.t-quote-mark {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.t-card .quote {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-hi);
}
.t-person {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.t-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(16,185,129,.16);
  color: var(--emerald-400);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
  flex-shrink: 0;
}
.t-person .who strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.t-person .who span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--text-lo);
}

/* ---------- FAQ (2-column) ---------- */
.faq {
  padding: 72px 0;
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 1024px) { .faq { padding: 96px 0; } }

.faq-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
}
.faq-intro h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1.1px;
}
.faq-intro p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
}
.faq-intro a {
  color: var(--emerald-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-intro a:hover { color: var(--emerald-500); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-hi);
}
.faq-toggle {
  font-size: 20px;
  font-weight: 400;
  color: var(--emerald-400);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq-item.active .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  padding: 0 22px;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-mid);
  transition: padding .3s var(--ease);
}
.faq-item.active .faq-a-inner { padding-bottom: 22px; }

/* ---------- Final CTA band ---------- */
.cta-band {
  padding: 34px 0 56px;
  background: var(--bg-0);
}
.cta-band-inner {
  position: relative;
  overflow: hidden;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #047857, #10b981 58%, #34d399);
  box-shadow: 0 26px 60px rgba(16,185,129,.22);
}
@media (min-width: 768px) {
  .cta-band-inner { padding: 64px 60px; }
}
.cta-band-glow {
  position: absolute;
  top: -120px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,182,87,.5), transparent 65%);
  pointer-events: none;
}
.cta-band-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 900px) {
  .cta-band-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
}
.cta-band-content h2 {
  max-width: 640px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1.1px;
  color: var(--emerald-dark);
}
.cta-band-content p {
  margin-top: 14px;
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(4,35,26,.78);
}
.cta-band-copy {
  flex: 1;
  min-width: 0;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .cta-band-actions {
    flex-wrap: nowrap;
    align-self: center;
  }

  .cta-band-actions .btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* ---------- Mobile: side-by-side action rows ---------- */
@media (max-width: 639px) {
  .hero-cta,
  .cta-band-actions,
  .store-badges {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .cta-band-actions {
    width: 100%;
  }

  .hero-cta .btn,
  .cta-band-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 10px;
    font-size: 12.5px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .hero-cta .btn .btn-label-full,
  .cta-band-actions .btn .btn-label-full { display: none; }

  .hero-cta .btn .btn-label-short,
  .cta-band-actions .btn .btn-label-short { display: inline; }

  .hero-cta .btn-lg,
  .cta-band-actions .btn-lg {
    padding: 14px 10px;
    font-size: 12.5px;
  }

  .trust-chips {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .trust-chip {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 8px 5px;
    font-size: 10.5px;
    gap: 4px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .trust-chip .chip-label-full { display: none; }
  .trust-chip .chip-label-short { display: inline; }

  .trust-chip .chip-check {
    width: 12px;
    height: 12px;
    font-size: 7px;
    line-height: 12px;
    flex-shrink: 0;
  }

  .store-badge {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    gap: 7px;
  }

  .store-badge svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }

  .store-badge .txt {
    min-width: 0;
  }

  .store-badge .txt small {
    font-size: 8px;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .store-badge .txt strong {
    font-size: 12px;
    margin-top: 2px;
    line-height: 1.2;
  }

  .cta-band-inner {
    padding: 36px 20px;
  }

  .cta-band-content h2 {
    font-size: 1.55rem;
  }

  .cta-band-content p {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero-cta .btn,
  .cta-band-actions .btn {
    padding: 12px 8px;
    font-size: 11.5px;
  }

  .trust-chip {
    font-size: 9.5px;
    padding: 7px 4px;
  }

  .store-badge {
    padding: 9px 6px;
  }

  .store-badge .txt strong {
    font-size: 11px;
  }
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 40px;
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-top {
  display: grid;
  gap: 36px;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 44px;
  }
}
.footer-brand p {
  margin-top: 18px;
  max-width: 330px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--emerald-400); border-color: rgba(16,185,129,.3); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--text-lo);
  text-transform: uppercase;
}
.footer-col ul { margin-top: 18px; display: grid; gap: 11px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--text-mid);
  transition: color .2s;
}
.footer-col a:hover { color: var(--emerald-400); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13.5px;
  color: var(--text-lo);
}

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover { background: var(--panel); color: var(--text-hi); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mock-progress-fill { transition: none; width: 78% !important; }
}
