:root {
  --bg: #f5f7f2;
  --panel: #ffffff;
  --text: #172215;
  --muted: #627061;
  --dark: #101712;
  --line: rgba(18, 27, 18, 0.08);
  --green: #6beb36;
  --green-deep: #2e8e1d;
  --shadow: 0 18px 50px rgba(15, 30, 17, 0.1);
  --container: min(1140px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(107, 235, 54, 0.12), transparent 18%),
    radial-gradient(circle at 92% 22%, rgba(255, 214, 90, 0.1), transparent 20%),
    linear-gradient(180deg, #f4f6f0 0%, #eef2eb 100%);
}
body.menu-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
summary, button, input { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.site-shell { overflow: clip; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 16, 12, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}
.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.menu-toggle {
  display: none;
  appearance: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 46;
}
.menu-toggle-box {
  display: inline-flex;
  width: 18px;
  height: 14px;
  position: relative;
}
.menu-toggle-box span {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle-box span:nth-child(1) {
  top: 0;
}
.menu-toggle-box span:nth-child(2) {
  top: 6px;
}
.menu-toggle-box span:nth-child(3) {
  top: 12px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, #c7ff8f, rgba(199, 255, 143, 0) 55%), linear-gradient(135deg, #4ed620, #89ff4a);
  box-shadow: 0 10px 26px rgba(107, 235, 54, 0.28);
}
.brand-stack { display: flex; flex-direction: column; line-height: 1; }
.brand-stack strong { font-family: "Sora", sans-serif; font-size: 1rem; letter-spacing: 0.04em; color: #fff; }
.brand-stack span { color: rgba(255, 255, 255, 0.6); font-size: 0.84rem; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: rgba(255, 255, 255, 0.74); font-size: 0.95rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.main-nav a[aria-current="page"] { color: #fff; }
.mobile-menu-shell {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 16, 12, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.mobile-menu-shell.is-open {
  display: block;
}
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  z-index: 44;
  border: 0;
  padding: 0;
  background: rgba(5, 8, 6, 0.38);
}
.mobile-menu-backdrop.is-open {
  display: block;
}
.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 18px 0 22px;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a[aria-current="page"] {
  color: #fff;
  border-color: rgba(107, 235, 54, 0.28);
  background: rgba(107, 235, 54, 0.1);
}
.mobile-nav-cta {
  text-align: center;
  font-weight: 800;
  color: #10200b;
  background: linear-gradient(135deg, #93ff58, var(--green)) !important;
}

.nav-cta, .solid-button, .outline-button, .store-link, .store-badge-image-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.nav-cta:hover, .solid-button:hover, .outline-button:hover, .store-link:hover, .store-badge-image-link:hover,
.nav-cta:focus-visible, .solid-button:focus-visible, .outline-button:focus-visible, .store-link:focus-visible, .store-badge-image-link:focus-visible {
  transform: translateY(-2px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  color: #10200b;
  background: linear-gradient(135deg, #93ff58, var(--green));
  box-shadow: 0 12px 26px rgba(107, 235, 54, 0.24);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: 34px 0 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 14, 11, 0.88), rgba(18, 26, 20, 0.82)),
    radial-gradient(circle at 82% 14%, rgba(107, 235, 54, 0.18), transparent 24%),
    radial-gradient(circle at 12% 60%, rgba(120, 205, 44, 0.16), transparent 18%),
    url("images/hero-bg.webp") center/cover no-repeat;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
  pointer-events: none;
}
.hero-grid, .agent-card, .payments-grid, .faq-layout, .download-layout { display: grid; gap: 34px; }
.hero-grid { position: relative; z-index: 1; grid-template-columns: 1fr 1.02fr; align-items: center; min-height: calc(100svh - 130px); }

.section-tag {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
}
.section-tag.green { color: var(--green-deep); }
.section-tag.bright { color: #b8ff95; }
h1, h2, h3 { margin: 0; font-family: "Sora", sans-serif; letter-spacing: -0.04em; }
h1 { max-width: 9ch; font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 0.94; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.08; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
.hero-text { margin-top: 16px; max-width: 52ch; color: rgba(255, 255, 255, 0.74); font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.store-badge-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.store-badge-image {
  display: block;
  width: 202px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.trust-chip {
  padding: 9px 13px;
  border-radius: 999px;
  color: #d6efcb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-visual { position: relative; min-height: 100%; display: flex; align-items: flex-start; justify-content: center; padding-top: 10px; }
.glow { position: absolute; border-radius: 999px; filter: blur(16px); }
.glow-green { top: 22px; right: 34px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(107,235,54,0.34), rgba(107,235,54,0)); }
.glow-lime { bottom: 44px; left: 16px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(170,255,94,0.24), rgba(170,255,94,0)); }
.device-stack { position: relative; width: min(430px, 100%); min-height: 392px; margin-left: auto; }
.hero-device {
  position: absolute;
  top: -8px;
  left: 34px;
  width: min(320px, 100%);
  transform: rotate(-1deg);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.34));
}
.hero-device-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.phone-frame {
  position: absolute;
  border: 11px solid #0d1210;
  border-radius: 38px;
  background: #fcfffa;
  box-shadow: 0 24px 80px rgba(6, 12, 8, 0.34);
}
.phone-frame.large { top: 28px; left: 54px; width: 310px; min-height: 500px; padding: 14px; transform: rotate(-2deg); }
.phone-status { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.phone-status span { width: 38px; height: 5px; border-radius: 999px; background: rgba(11, 18, 13, 0.18); }
.image-phone { overflow: hidden; }
.media-stack { position: relative; height: 100%; }
.immersive-image,
.feature-photo,
.support-photo,
.dashboard-image,
.download-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}
.immersive-image { min-height: 420px; background: #eef5e7; object-position: center center; }
.support-photo {
  width: min(100%, 260px);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  object-position: center top;
}

.wallet-card, .mini-receipt, .mock-card, .testimonial-card, .faq-list details, .payments-copy, .intro-copy, .agent-card, .download-layout {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.wallet-card { padding: 18px; border-radius: 24px; background: linear-gradient(135deg, #0f1712, #1d2a1f); color: #fff; }
.wallet-card p { color: rgba(255,255,255,0.66); }
.wallet-card h2 { margin-top: 10px; font-size: 2.2rem; color: #fff; }
.wallet-pills { display: flex; gap: 10px; margin-top: 16px; }
.wallet-pills span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.08); color: #dff6d5; font-size: 0.85rem; font-weight: 700; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.service-tile { padding: 14px 12px; border-radius: 20px; background: #f4f8ef; border: 1px solid rgba(16, 23, 18, 0.08); }
.service-icon { display: block; width: 40px; height: 40px; border-radius: 14px; margin-bottom: 12px; }
.service-icon.green { background: linear-gradient(135deg, #4ad723, #87fb4f); }
.service-icon.lime { background: linear-gradient(135deg, #b6ff68, #6beb36); }
.service-icon.mint { background: linear-gradient(135deg, #d9ffb5, #8ef262); }
.service-icon.yellow { background: linear-gradient(135deg, #ffe36f, #ffc63d); }

.mini-receipt { border-radius: 24px; padding: 18px; background: linear-gradient(180deg, #ffffff, #f4f9ef); }
.mini-receipt p { color: var(--green-deep); font-size: 0.82rem; font-weight: 800; }
.mini-receipt strong { display: block; margin-top: 10px; line-height: 1.4; }
.mini-receipt ul { margin: 18px 0 0; padding: 0; list-style: none; }
.mini-receipt li { margin-top: 10px; padding: 10px 12px; border-radius: 14px; background: #f0f6ea; color: var(--muted); font-size: 0.88rem; }

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.floating-card p { color: rgba(255,255,255,0.72); font-size: 0.82rem; }
.floating-card strong { display: block; margin-top: 6px; line-height: 1.4; }
.floating-card-top { top: 6px; left: 0; min-width: 170px; }
.floating-card-bottom { right: 0; bottom: 30px; max-width: 210px; }
.dot { display: inline-block; width: 10px; height: 10px; margin-bottom: 10px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 6px rgba(107,235,54,0.18); }

.brand-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 14px 0;
  background: linear-gradient(180deg, #eef5e8, #f6fbf1);
  border-top: 1px solid rgba(84, 126, 62, 0.12);
  border-bottom: 1px solid rgba(84, 126, 62, 0.12);
}
.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandMarquee 28s linear infinite;
}
.brand-marquee-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 27, 18, 0.08);
  box-shadow: 0 10px 26px rgba(15, 30, 17, 0.08);
  color: #132112;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef4e8;
  color: #173114;
  font-size: 0.82rem;
  font-weight: 900;
}
.brand-icon.circles {
  position: relative;
  width: 36px;
  background: transparent;
}
.brand-icon.circles::before,
.brand-icon.circles::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}
.brand-icon.circles::before {
  left: 4px;
  background: #ea001b;
}
.brand-icon.circles::after {
  right: 4px;
  background: #ff9f1a;
  opacity: 0.92;
}
.brand-icon.oval {
  width: 46px;
  border-radius: 999px;
}
.brand-pill.mtn .brand-icon {
  background: #fff8d2;
  border: 2px solid #f3c300;
  color: #d5a400;
}
.brand-pill.airtel .brand-icon {
  background: #fff2f2;
  color: #e31220;
}
.brand-pill.payoneer .brand-icon {
  background: #fff3ec;
  color: #ff5a1f;
}
.brand-pill.visa .brand-icon {
  background: #eef4ff;
  color: #1a47b8;
}
.brand-pill.ninemobile .brand-icon {
  background: #f1ffe7;
  color: #2a8a44;
}
.brand-pill.ikeja .brand-icon {
  background: #fff3e7;
  color: #d86e16;
}
@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.agent-banner, .intro-section, .features, .payments-section, .testimonials, .faq-section, .download-banner { padding: 72px 0; }
.intro-section,
.features,
.payments-section,
.testimonials,
.faq-section {
  position: relative;
  isolation: isolate;
}
.intro-section::before,
.features::before,
.payments-section::before,
.testimonials::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
}
.intro-section::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(107, 235, 54, 0.16), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255, 205, 86, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08));
}
.features::before {
  background:
    radial-gradient(circle at 82% 16%, rgba(107, 235, 54, 0.12), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(173, 255, 111, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02));
}
.payments-section::before {
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 210, 92, 0.18), transparent 20%),
    radial-gradient(circle at 88% 68%, rgba(107, 235, 54, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
.testimonials::before {
  background:
    radial-gradient(circle at 88% 14%, rgba(107, 235, 54, 0.14), transparent 18%),
    radial-gradient(circle at 10% 80%, rgba(255, 226, 123, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.04));
}
.agent-banner,
.intro-section,
.features,
.payments-section,
.testimonials,
.faq-section,
.download-banner {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}
.agent-card {
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: radial-gradient(circle at 80% 30%, rgba(107,235,54,0.14), rgba(107,235,54,0)), linear-gradient(135deg, #152118, #1d2c20);
  border-color: rgba(255,255,255,0.06);
}
.agent-photo {
  min-height: 250px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), #101712;
  display: grid;
  place-items: center;
}
.agent-avatar, .person-avatar {
  position: relative;
  border-radius: 28px;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.2), transparent 22%), linear-gradient(180deg, #43302a, #0f0f0f 72%);
}
.agent-avatar { width: 170px; height: 210px; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; }
.agent-avatar::before, .person-avatar::before {
  content: "";
  position: absolute;
  inset: auto 24% 18% 24%;
  height: 34%;
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(180deg, #17301b, #2d6935);
}
.agent-copy h2, .agent-copy p, .download-layout h2, .download-layout p { color: #fff; }
.agent-copy p:last-of-type { margin-top: 16px; color: rgba(255,255,255,0.72); }
.solid-button, .outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}
.solid-button { color: #11210d; background: linear-gradient(135deg, #98ff5b, var(--green)); }
.outline-button { color: var(--text); background: #fff; border: 1px solid rgba(16, 23, 18, 0.12); }

.intro-copy { max-width: 920px; margin: 0 auto; padding: 40px; border-radius: 28px; text-align: center; }
.intro-copy h2 { max-width: 18ch; margin: 0 auto; }
.intro-copy p:last-child { max-width: 64ch; margin: 18px auto 0; }

.feature-stack { display: grid; gap: 24px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-row {
  position: relative;
  padding: 12px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, rgba(217, 255, 181, 0.28), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(16, 23, 18, 0.08);
  box-shadow: 0 22px 60px rgba(15, 30, 17, 0.08);
  overflow: hidden;
}
.feature-row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(107, 235, 54, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 213, 78, 0.14), transparent 22%);
  opacity: 0.9;
}
.feature-copy, .payments-copy { padding: 34px; border-radius: 28px; background: #fff; border: 1px solid var(--line); }
.feature-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(107, 235, 54, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbf4);
  box-shadow: 0 16px 40px rgba(15, 30, 17, 0.08);
}
.feature-copy::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(107, 235, 54, 0.14), rgba(255, 214, 90, 0.14));
  transform: rotate(16deg);
}
.feature-copy h3 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  margin-top: 16px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.feature-copy p:last-child {
  position: relative;
  z-index: 1;
  max-width: 46ch;
  margin-top: 16px;
  font-size: 1rem;
}
.feature-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 20px;
  color: #173114;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #caff9a, #8ff252);
  box-shadow: 0 16px 32px rgba(107, 235, 54, 0.24);
}
.feature-copy p:last-child { margin-top: 16px; }
.feature-visual {
  min-height: 300px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
  z-index: 1;
}
.photo-panel {
  display: grid;
  place-items: center;
  padding: 22px;
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  align-items: center;
}
.feature-photo {
  width: 100%;
  height: 100%;
  max-height: 340px;
  background: #eef5e7;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: contrast(1.04) saturate(0.94) brightness(0.98);
  transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease;
}
.feature-half:nth-child(1) {
  transform: translateY(18px) rotate(-4deg);
}
.feature-half:nth-child(2) {
  transform: translateY(-12px) rotate(5deg);
}
.feature-row:hover .feature-photo,
.feature-row:focus-within .feature-photo {
  transform: scale(1.02);
  filter: contrast(1.06) saturate(1) brightness(1);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}
.feature-row:hover,
.feature-row:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 30, 17, 0.12);
}
.feature-row:nth-child(2n)::before {
  background:
    radial-gradient(circle at top left, rgba(255, 213, 78, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(107, 235, 54, 0.14), transparent 22%);
}
.feature-row:nth-child(3n) .feature-kicker {
  background: linear-gradient(135deg, #ffe590, #ffc957);
  color: #302108;
  box-shadow: 0 16px 32px rgba(255, 201, 87, 0.24);
}
.feature-row:nth-child(2n) .feature-copy {
  background:
    radial-gradient(circle at top right, rgba(255, 213, 78, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #fbfaf4);
}
.dark-panel {
  background: radial-gradient(circle at top right, rgba(107,235,54,0.16), transparent 22%), linear-gradient(180deg, #172118, #111813);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 70px rgba(10,14,11,0.18);
}
.mock-card { position: absolute; inset: 28px; border-radius: 24px; padding: 20px; background: linear-gradient(180deg, #fcfef9, #eef5e7); }
.mock-line { height: 14px; border-radius: 999px; background: rgba(33, 52, 28, 0.12); }
.mock-line.wide { width: 78%; }
.mock-line.short { width: 42%; margin-top: 12px; }
.mock-line.shorter { width: 28%; }
.network-list, .mock-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.network-list span, .mock-tags span, .schedule-pill, .flight-badge {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}
.network-list span, .mock-tags span { background: #dff6cf; color: #24411c; }
.meter-top { height: 92px; border-radius: 18px; background: linear-gradient(135deg, #122016, #2b4b27); }
.token-box { margin-top: 18px; padding: 18px; border-radius: 18px; background: #fff; color: #1e3118; font-weight: 800; letter-spacing: 0.08em; text-align: center; }
.flight-badge { display: inline-flex; background: #172319; color: #d4ffbd; }
.calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.calendar-grid span { aspect-ratio: 1; border-radius: 14px; background: rgba(35, 58, 28, 0.1); }
.calendar-grid .active { background: linear-gradient(135deg, #92ff59, #65df33); }
.schedule-pill { display: inline-flex; margin-top: 20px; color: #1f3619; background: #d5ffbd; }
.gift-bands { height: 140px; border-radius: 20px; background: linear-gradient(135deg, #79f03f 0 35%, #fff 35% 45%, #1f2d1d 45% 70%, #b0ff79 70% 100%); }
.dashboard-top { display: flex; justify-content: space-between; }
.dashboard-bars { display: flex; align-items: end; gap: 16px; min-height: 170px; margin-top: 22px; }
.dashboard-bars span { flex: 1; border-radius: 999px 999px 16px 16px; background: linear-gradient(180deg, #85f64c, #2f9a1a); }
.dashboard-bars span:nth-child(1) { height: 68%; }
.dashboard-bars span:nth-child(2) { height: 92%; }
.dashboard-bars span:nth-child(3) { height: 54%; }

.payments-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.payments-visual { border-radius: 30px; }
.wide-dashboard {
  padding: 28px;
  border-radius: 30px;
  background: radial-gradient(circle at 85% 15%, rgba(107,235,54,0.14), rgba(107,235,54,0)), linear-gradient(180deg, #171f18, #101611);
  box-shadow: 0 24px 90px rgba(10,14,11,0.22);
}
.dashboard-header { display: flex; justify-content: space-between; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.dashboard-image {
  margin-top: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  filter: contrast(1.03) saturate(0.92);
}
.dashboard-body { display: grid; grid-template-columns: 110px 1fr; gap: 18px; margin-top: 24px; }
.dashboard-sidebar, .dashboard-balance, .dashboard-panels div { border-radius: 22px; background: rgba(255,255,255,0.08); }
.dashboard-sidebar { min-height: 250px; padding: 18px; display: grid; gap: 12px; }
.dashboard-sidebar span { display: block; height: 14px; border-radius: 999px; background: rgba(255,255,255,0.14); }
.dashboard-balance { min-height: 130px; }
.dashboard-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.dashboard-panels div { min-height: 104px; }

.advantage-list { margin: 24px 0 0; padding: 0; list-style: none; }
.advantage-list li { position: relative; padding-left: 28px; margin-top: 14px; }
.advantage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(107,235,54,0.16);
}

.testimonial-header { max-width: 560px; margin-bottom: 26px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testimonial-card { padding: 28px; border-radius: 24px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.person-avatar { width: 74px; height: 74px; border-radius: 22px; }
.avatar-one { background: radial-gradient(circle at 40% 30%, rgba(255,221,194,0.35), transparent 20%), linear-gradient(180deg, #5d4036, #101010 72%); }
.avatar-two { background: radial-gradient(circle at 40% 30%, rgba(255,220,180,0.28), transparent 20%), linear-gradient(180deg, #4f362d, #101010 72%); }
.avatar-three { background: radial-gradient(circle at 40% 30%, rgba(255,233,205,0.3), transparent 20%), linear-gradient(180deg, #65453b, #111111 72%); }
.testimonial-person strong { display: block; }
.testimonial-person span { color: var(--muted); font-size: 0.92rem; }

.faq-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 215, 104, 0.12), transparent 18%),
    radial-gradient(circle at 10% 78%, rgba(107, 235, 54, 0.12), transparent 22%),
    linear-gradient(180deg, #f8faf6, #f0f4ee);
}
.faq-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.faq-copy { padding-right: 18px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 20px 22px; border-radius: 20px; }
.faq-list summary { list-style: none; cursor: pointer; font-weight: 800; line-height: 1.5; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--green-deep); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { margin-top: 14px; }

.download-layout {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: radial-gradient(circle at 90% 20%, rgba(175,255,109,0.18), rgba(175,255,109,0)), linear-gradient(135deg, #153117, #1f5a22);
  border-color: rgba(255,255,255,0.08);
}
.download-showcase {
  display: grid;
  gap: 16px;
  justify-items: end;
}
.download-image {
  width: min(100%, 280px);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: contrast(1.03) saturate(0.95);
}
.store-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-link { color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }

.site-footer {
  position: relative;
  padding: 38px 0 28px;
  color: #d2dacd;
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0.82), rgba(8, 13, 10, 0.92)),
    url("images/footer-bg.webp") center/cover no-repeat;
}

.subpage-main {
  display: grid;
  gap: 0;
}
.subpage-hero {
  position: relative;
  padding: 88px 0 56px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 14, 11, 0.88), rgba(18, 26, 20, 0.84)),
    radial-gradient(circle at 88% 10%, rgba(107, 235, 54, 0.2), transparent 22%),
    radial-gradient(circle at 10% 58%, rgba(255, 205, 86, 0.14), transparent 18%),
    url("images/hero-bg.webp") center/cover no-repeat;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.48;
}
.subpage-hero .container {
  position: relative;
  z-index: 1;
}
.subpage-hero-grid,
.page-split,
.contact-grid,
.blog-grid,
.stats-grid {
  display: grid;
  gap: 24px;
}
.subpage-hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}
.subpage-copy {
  max-width: 60ch;
}
.subpage-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}
.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.subpage-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}
.subpage-visual img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.content-section {
  padding: 72px 0;
}
.page-stack {
  display: grid;
  gap: 24px;
}
.page-panel,
.page-card {
  border-radius: 28px;
  border: 1px solid rgba(18, 27, 18, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(15, 30, 17, 0.08);
}
.page-panel {
  padding: 34px;
}
.page-card {
  padding: 28px;
}
.page-panel.dark-panel,
.page-card.dark-panel {
  color: #fff;
  background: radial-gradient(circle at top right, rgba(107,235,54,0.16), transparent 22%), linear-gradient(180deg, #172118, #111813);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 70px rgba(10,14,11,0.18);
}
.page-panel.dark-panel h2,
.page-panel.dark-panel h3,
.page-panel.dark-panel li,
.page-card.dark-panel h2,
.page-card.dark-panel h3,
.page-card.dark-panel li {
  color: #fff;
}
.page-panel.dark-panel p,
.page-card.dark-panel p {
  color: rgba(255,255,255,0.74);
}
.page-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.page-list,
.contact-list,
.timeline-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.page-list li,
.contact-list li,
.timeline-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
}
.page-list li::before,
.contact-list li::before,
.timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(107, 235, 54, 0.16);
}
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbf4);
  border: 1px solid rgba(18, 27, 18, 0.08);
  box-shadow: 0 16px 34px rgba(15, 30, 17, 0.06);
}
.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.contact-card-map {
  min-height: 100%;
  overflow: hidden;
}
.contact-card-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}
.contact-method {
  display: block;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7faf3;
  border: 1px solid rgba(18, 27, 18, 0.08);
}
.contact-method strong {
  display: block;
  color: var(--text);
}
.contact-method span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card {
  display: grid;
  gap: 18px;
  align-content: start;
}
.blog-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  background: #eef5e7;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.faq-hero-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.faq-hero-list span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}
.footer-shell {
  display: grid;
  gap: 0;
  padding: 26px 0 0;
}
.footer-main,
.footer-supporting,
.footer-bottom { display: grid; gap: 20px; }
.footer-main {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-supporting {
  grid-template-columns: 0.84fr 1.16fr;
  gap: 36px;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-side {
  display: grid;
  gap: 22px;
  align-content: start;
}
.footer-brand-block {
  max-width: 320px;
}
.footer-intro {
  margin-top: 16px;
  font-size: 0.96rem;
  line-height: 1.8;
}
.footer-brand-block p, .footer-links a, .footer-links p, .footer-bottom p, .footer-services p, .footer-corporate p, .social-links a, .footer-label { color: rgba(255,255,255,0.64); }
.footer-links h3 { margin: 0 0 12px; font-size: 1rem; color: #fff; }
.footer-links a, .footer-links p {
  display: block;
  margin: 0 0 12px;
  line-height: 1.7;
}
.footer-label {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.footer-store-group {
  gap: 12px;
}
.footer-store-link .store-badge-image {
  width: 168px;
}
.footer-services h3,
.footer-corporate h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #fff;
}
.footer-services,
.footer-corporate,
.footer-social,
.footer-availability {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-services p + p,
.footer-corporate p + p {
  margin-top: 12px;
}
.footer-bottom {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 18px;
  font-size: 0.92rem;
}

.reveal-card,
.reveal-slide-left,
.reveal-slide-right,
.reveal-slide-up {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-card,
.reveal-slide-up { transform: translateY(26px); }
.reveal-slide-left { transform: translateX(-36px); }
.reveal-slide-right { transform: translateX(36px); }
.reveal-card.is-visible,
.reveal-slide-left.is-visible,
.reveal-slide-right.is-visible,
.reveal-slide-up.is-visible { opacity: 1; transform: translate(0, 0); }
.depth-card {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}
.depth-card:hover {
  filter: contrast(1.05) saturate(1.02);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-cta, .solid-button, .outline-button, .store-link, .store-badge-image-link, .reveal-card, .reveal-slide-left, .reveal-slide-right, .reveal-slide-up, .depth-card {
    transition: none;
  }
  .brand-marquee-track { animation: none; }
  .reveal-card,
  .reveal-slide-left,
  .reveal-slide-right,
  .reveal-slide-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .agent-card, .payments-grid, .faq-layout, .download-layout, .footer-main, .footer-supporting, .footer-bottom, .feature-row, .subpage-hero-grid, .page-split, .contact-grid, .blog-grid, .stats-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 360px; padding-top: 0; order: -1; }
  .device-stack { margin: 0 auto; }
  .feature-row.reverse .feature-copy, .feature-row.reverse .feature-visual { order: initial; }
  .faq-copy { padding-right: 0; }
  .download-showcase { justify-items: start; }
  .download-layout > div:first-child { max-width: 100%; }
}

@media (max-width: 760px) {
  .hero, .agent-banner, .intro-section, .features, .payments-section, .testimonials, .faq-section, .download-banner { padding: 42px 0; }
  .hero { padding-bottom: 0; }
  .subpage-hero { padding: 58px 0 40px; }
  .content-section { padding: 52px 0; }
  h1 { max-width: none; }
  .nav-cta { display: none; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .nav-row { min-height: 72px; gap: 12px; }
  .brand { min-width: 0; }
  .brand-stack strong { font-size: 0.92rem; }
  .brand-stack span { font-size: 0.78rem; }
  .mobile-menu-backdrop { inset: 72px 0 0; }
  .store-group, .testimonial-grid { display: grid; grid-template-columns: 1fr; }
  .hero-actions { display: flex; flex-wrap: nowrap; gap: 8px; justify-content: flex-start; }
  .hero-grid { gap: 18px; align-items: start; }
  .hero-copy { order: 1; padding-top: 4px; }
  .hero-copy h1 { max-width: 9ch; font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .hero-text { font-size: 0.95rem; }
  .hero-visual { order: 2; min-height: 300px; margin-top: 10px; }
  .device-stack { width: min(264px, 100%); min-height: 288px; }
  .hero-device { left: 0; right: 0; margin: 0 auto; width: 198px; top: 28px; transform: none; }
  .store-badge-image { width: 128px; }
  .floating-card-top { left: 0; top: 40px; }
  .floating-card-bottom { right: -2px; bottom: 18px; max-width: 152px; }
  .floating-card-top { min-width: 118px; }
  .floating-card p { font-size: 0.72rem; }
  .floating-card strong { font-size: 0.8rem; }
  .brand-marquee { padding: 12px 0; }
  .brand-marquee-group { gap: 12px; padding-right: 12px; }
  .brand-pill { padding: 9px 14px; font-size: 0.84rem; }
  .brand-icon { width: 30px; height: 30px; }
  .immersive-image { min-height: 260px; }
  .agent-card, .intro-copy, .feature-copy, .payments-copy, .download-layout { padding: 24px; }
  .agent-card { gap: 20px; }
  .agent-photo { min-height: 200px; }
  .payments-copy, .faq-copy, .intro-copy { text-align: left; }
  .feature-row { padding: 10px; border-radius: 28px; }
  .feature-copy h3 { max-width: none; font-size: 1.45rem; }
  .feature-kicker { min-width: 56px; min-height: 56px; border-radius: 18px; font-size: 0.95rem; }
  .feature-copy::after { width: 56px; height: 56px; top: 16px; right: 16px; }
  .mock-card { inset: 18px; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .photo-pair,
  .store-group { grid-template-columns: 1fr; }
  .photo-pair { display: grid; }
  .feature-half:nth-child(1),
  .feature-half:nth-child(2) { transform: none; }
  .feature-photo { max-height: none; }
  .download-image { width: 100%; }
  .download-layout { gap: 18px; }
  .download-layout h2 { max-width: 12ch; }
  .download-showcase { justify-items: stretch; }
  .subpage-visual { min-height: 220px; }
  .subpage-visual img { width: min(100%, 280px); }
  .page-panel,
  .page-card,
  .stat-card { padding: 22px; border-radius: 22px; }
  .blog-card img { height: 180px; }
  .contact-card-map iframe { min-height: 280px; }
  .footer-store-link .store-badge-image { width: 160px; }
  .footer-main,
  .footer-supporting,
  .footer-bottom { gap: 16px; }
  .footer-shell { padding-top: 18px; }
  .footer-brand-block { max-width: none; }
  .footer-bottom { grid-template-columns: 1fr; }
}
