/* LootFlow — landing styles */
:root {
  --bg: #0d1117;
  --bg-2: #0b0f15;
  --surface: #11161d;
  --surface-2: #161c25;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --text: #e6edf3;
  --text-dim: #9ba3af;
  --text-muted: #6b7280;
  --profit: #10b981;
  --profit-dim: #059669;
  --loss: #ef4444;
  --accent-glow: rgba(16, 185, 129, 0.45);
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

/* ---------- background texture ---------- */
.bg-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% -10%, rgba(16, 185, 129, 0.08), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.04), transparent 35%);
}
.bg-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.h-display {
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
}
.h-section {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
}
.h-card {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.lede {
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
}

/* ---------- word clip reveal ---------- */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0 0.02em;
}
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.15, 1);
  will-change: transform;
}
.word-reveal.in > span { transform: translateY(0); }

.accent { color: var(--profit); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  transition: backdrop-filter 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #0a0e15;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  position: relative;
}
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta {
  margin-left: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #0d1117;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.nav-cta:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.nav-links a { white-space: nowrap; }

/* language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  margin-left: 8px;
  margin-right: 4px;
}
.lang-opt {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-opt:hover { color: var(--text); }
.lang-opt.active {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}
@media (max-width: 960px) {
  .nav-links a:nth-of-type(3) { display: none; } /* WhatsApp Bot */
}
@media (max-width: 820px) {
  .nav { padding: 14px 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- containers ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
section { position: relative; z-index: 2; }

/* ---------- buttons ---------- */
.btn {
  --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 var(--pad-x);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  font-family: inherit;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(180deg, #14d499 0%, #10b981 100%);
  color: #04130d;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 12px 24px -10px rgba(16,185,129,0.55),
    0 0 0 1px rgba(16,185,129,0.4);
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 18px 32px -10px rgba(16,185,129,0.7),
    0 0 0 1px rgba(16,185,129,0.55);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }

/* gradient border CTA (final) */
.btn-gradient-border {
  position: relative;
  background: #0d1117;
  color: var(--text);
  isolation: isolate;
}
.btn-gradient-border::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 11.5px;
  padding: 1.5px;
  background: conic-gradient(from var(--ang, 0deg), #10b981, #34d399, #10b981, #047857, #10b981);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: spinBorder 6s linear infinite;
  z-index: -1;
}
@property --ang {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes spinBorder { to { --ang: 360deg; } }

/* ---------- hero ---------- */
.hero {
  padding: 160px 0 60px;
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.hero-meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--profit); box-shadow: 0 0 12px var(--accent-glow); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* dashboard frame */
.dash-frame-wrap {
  margin-top: 80px;
  perspective: 2400px;
  position: relative;
}
.dash-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #0e141b, #0a0f15);
  box-shadow:
    0 80px 120px -40px rgba(0,0,0,0.8),
    0 30px 60px -20px rgba(16,185,129,0.15),
    0 0 0 1px rgba(255,255,255,0.03);
  transform: rotateX(var(--tilt, 8deg)) translateY(var(--ty, 0));
  transform-origin: 50% 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.15, 1);
  will-change: transform;
  position: relative;
}
.dash-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0) 60%, rgba(13,17,23,1) 100%);
  pointer-events: none;
  opacity: var(--fade-bottom, 0);
  transition: opacity 0.6s;
}

/* ---------- stats bar ---------- */
.stats {
  padding: 120px 0 60px;
  border-top: 1px solid var(--border);
  margin-top: 100px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat {
  padding: 36px 32px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat-num {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.stat-num .unit { color: var(--text-muted); margin-left: 6px; font-size: 0.55em; font-weight: 500; }
.stat-num.accent { color: var(--profit); }
.stat-label {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 28ch;
}
.stat-tag {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- features grid ---------- */
.features {
  padding: 120px 0;
}
.section-head {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--profit);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.feature-visual {
  margin-top: auto;
  position: relative;
  height: 140px;
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (max-width: 920px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
}

/* ---------- how it works ---------- */
.howto {
  padding: 120px 0;
  position: relative;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  padding: 28px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--profit);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.step-num span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.06);
  color: var(--profit);
  font-size: 12px;
  margin-right: 10px;
  vertical-align: middle;
}
.step h3 { font-size: 22px; margin: 0 0 12px 0; letter-spacing: -0.015em; font-weight: 600; }
.step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0; }
.howto-line {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 2px;
  z-index: 0;
}
@media (max-width: 920px) {
  .howto-steps { grid-template-columns: 1fr; gap: 8px; }
  .howto-line { display: none; }
}

/* ---------- WhatsApp callout ---------- */
.wa-section { padding: 120px 0; }
.wa-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #11161d, #0b0f15);
  border: 1px solid var(--border-strong);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(16,185,129,0.1), transparent 50%);
  pointer-events: none;
}
.wa-copy { position: relative; z-index: 1; }
.wa-copy h2 { margin-bottom: 16px; }
.wa-copy p { color: var(--text-dim); line-height: 1.6; font-size: 16px; max-width: 46ch; }
.wa-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--profit);
  margin-bottom: 22px;
  padding: 6px 10px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 999px;
}
@media (max-width: 980px) {
  .wa-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

/* ---------- privacy ---------- */
.privacy { padding: 60px 0; }
.privacy-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-radius: 14px;
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
}
.privacy-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--profit);
  display: grid;
  place-items: center;
}
.privacy-card h3 { margin: 0 0 4px 0; font-size: 17px; font-weight: 600; }
.privacy-card p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.5; }
.privacy-chip {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border: 1px solid var(--border);
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .privacy-card { grid-template-columns: 44px 1fr; }
  .privacy-chip { grid-column: 1 / -1; justify-self: start; }
}

/* ---------- final cta ---------- */
.final-cta {
  padding: 140px 0 160px;
  text-align: center;
}
.final-cta h2 { font-size: clamp(40px, 5vw, 72px); }
.final-cta-row { display: flex; justify-content: center; margin-top: 32px; }

/* ---------- footer ---------- */
.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer a:hover { color: var(--text); }
.footer .made {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---------- scroll reveal base ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.15, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.15, 1);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.15, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.15, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 110ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 330ms; }

.pulse-once {
  animation: pulseOnce 0.6s cubic-bezier(0.2, 0.7, 0.15, 1);
}
@keyframes pulseOnce {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.0), 0 0 0 1px var(--border); }
  40% { box-shadow: 0 0 0 8px rgba(16,185,129,0.12), 0 0 0 1px rgba(16,185,129,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0), 0 0 0 1px var(--border); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .word-reveal > span { transform: none !important; }
  .dash-frame { transform: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════
   VISUAL POLISH — LF brand identity refresh
   ═══════════════════════════════════════════════════════ */

/* --- Nav logo mark: gradient ring on hover --- */
.nav-logo-mark {
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.nav-logo:hover .nav-logo-mark {
  border-color: rgba(74,222,128,0.35);
  box-shadow:
    0 0 10px rgba(74,222,128,0.18),
    0 0 20px rgba(56,189,248,0.10),
    inset 0 0 8px rgba(74,222,128,0.05);
}

/* --- Nav logo wordmark gradient --- */
.nav-logo {
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.85; }

/* --- Feature cards: lift + accent glow --- */
.feature-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.11);
  box-shadow:
    0 24px 48px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(74,222,128,0.06);
  transform: translateY(-4px);
}
.feature-card:hover .feature-icon {
  background: rgba(16,185,129,0.14);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 0 16px rgba(16,185,129,0.15);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

/* --- Stat cards: subtle lift + border reveal --- */
.stat {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s ease;
}
.stat:hover {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
/* green accent on top edge */
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16,185,129,0.06) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.stat:hover::before { opacity: 1; }

/* --- How-it-works steps: hover background --- */
.step {
  border-radius: 14px;
  transition: background 0.2s;
}
.step:hover { background: rgba(255,255,255,0.015); }
.step:hover .step-num span {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.45);
  transition: background 0.2s, border-color 0.2s;
}

/* --- WA card: stronger ambient glow --- */
.wa-card {
  transition: box-shadow 0.3s;
}
.wa-card:hover {
  box-shadow:
    0 0 0 1px rgba(16,185,129,0.15),
    0 40px 80px -40px rgba(16,185,129,0.12);
}

/* --- Hero: enhanced dash-frame border --- */
.dash-frame {
  box-shadow:
    0 80px 120px -40px rgba(0,0,0,0.85),
    0 30px 60px -20px rgba(16,185,129,0.18),
    0 0 0 1px rgba(255,255,255,0.04);
}

/* --- Privacy card: hover lift --- */
.privacy-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.privacy-card:hover {
  border-color: rgba(16,185,129,0.2);
  box-shadow: 0 12px 32px -12px rgba(16,185,129,0.08);
  transform: translateY(-2px);
}

/* --- Footer mark: hover glow --- */
.footer .nav-logo-mark:hover,
footer .nav-logo-mark:hover {
  border-color: rgba(74,222,128,0.3);
  box-shadow: 0 0 10px rgba(74,222,128,0.15);
}

/* --- Buttons: tighter active press --- */
.btn:active { transform: translateY(1px) scale(0.99); }

/* --- Final CTA: subtle radial behind button --- */
.final-cta {
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(16,185,129,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.final-cta .wrap { position: relative; z-index: 1; }
