.page-home {
  background: #000000;
  color: #e8e8e8;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Spacious vertical rhythm (overrides global .section for production home) */
.page-home .section {
  padding: clamp(72px, 10vw, 120px) 0 clamp(80px, 11vw, 140px);
}

.page-home .section-narrow {
  padding-left: 0;
  padding-right: 0;
}

.page-home .headline-split {
  margin-top: 8px;
}

.page-home footer .container {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

/* --- Hero (full-bleed seamless backdrop, no hard edge cutoffs) --- */
.hero-home {
  position: relative;
  isolation: isolate;
  padding: clamp(120px, 14vw, 160px) 0 clamp(96px, 12vw, 140px);
  min-height: min(96vh, 980px);
  overflow: hidden;
  background-color: #030303;
  background-image:
    radial-gradient(ellipse 130% 95% at 50% -25%, rgba(130, 75, 35, 0.38), transparent 55%),
    radial-gradient(ellipse 110% 85% at 95% 25%, rgba(255, 95, 45, 0.16), transparent 52%),
    radial-gradient(ellipse 100% 90% at 0% 65%, rgba(210, 140, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 140% 70% at 65% 105%, rgba(25, 15, 10, 0.55), transparent 58%),
    linear-gradient(180deg, #0a0a0c 0%, #030303 38%, #030303 62%, #050505 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(ellipse 80% 55% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
  flex-shrink: 0;
  animation: heroTagPulse 2.4s ease-in-out infinite;
}

@keyframes heroTagPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.95);
  }
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height:1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
  color: #fff;
}

.hero-title-thin {
  font-weight: 500;
  color: #b8b8b8;
}

.hero-title-accent {
  background: linear-gradient(135deg, #ff9a6b, #ff773d, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 22px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-cta-note {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #8f8f98;
  font-size: 0.74rem;
  line-height: 1.45;
}

.cta-note-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.36);
  background: rgba(34, 197, 94, 0.12);
  color: #8cf5a7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
  font-weight: 700;
}

.cta-note-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4f4f5d;
}

.hero-social {
  font-size: 0.82rem;
  color: #777;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.hero-geo-flag {
  font-size: 1.45rem;
  line-height: 1;
  margin-right: 4px;
  min-width: 1.35em;
  text-align: center;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.hero-social-link {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #555;
  font-size: 0.78rem;
}

.hero-social-link:hover {
  color: #aaa;
}

.hero-stats {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  column-gap: clamp(16px, 3.5vw, 28px);
  row-gap: 2px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px 11px;
  border-radius: 14px;
  background: rgba(14, 14, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-stats:hover {
  border-color: rgba(255, 119, 61, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 119, 61, 0.12);
}

.hero-stats > div {
  text-align: center;
}

.grad-text {
  display: block;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff9a6b, #ff773d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #666;
  font-weight: 600;
  margin-top: 4px;
}

.hero-stat-green {
  display: block;
  font-weight: 800;
  font-size: 1.12rem;
  color: #22c55e;
  letter-spacing: -0.02em;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff773d, #c53900);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(255, 119, 61, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 119, 61, 0.35);
}

.btn-main svg {
  width: 16px;
  height: 16px;
}

.btn-main-wide {
  margin-top: 8px;
}

.btn-main-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* --- MeloVue-style chat dashboard mock --- */
.mv-dash {
  --mv-vue: #41b883;
  --mv-vue-dim: rgba(65, 184, 131, 0.2);
  --mv-vue-glow: rgba(65, 184, 131, 0.45);
  border-radius: 18px;
  border: 1px solid rgba(65, 184, 131, 0.25);
  background: linear-gradient(165deg, #0f1419 0%, #070a0d 100%);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.65), 0 0 60px var(--mv-vue-dim);
  overflow: hidden;
  font-size: 0.65rem;
}

.mv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-vue-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--mv-vue), #2f7d59);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px var(--mv-vue-glow);
}

.mv-app-name {
  font-weight: 800;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.mv-app-sub {
  font-size: 0.58rem;
  color: #6b7c8c;
  margin-top: 2px;
}

.mv-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-pill {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mv-vue);
  border: 1px solid var(--mv-vue-dim);
  padding: 4px 10px;
  border-radius: 999px;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.mv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #647eff, #7c3aed);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mv-body {
  display: grid;
  grid-template-columns: 108px 1fr 92px;
  min-height: 300px;
}

.mv-rail {
  background: #0a0e12;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 8px;
}

.mv-rail-h {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5c6b7a;
  margin-bottom: 6px;
}

.mv-filter {
  font-size: 0.58rem;
  color: #7a8a9a;
  margin-bottom: 10px;
}

.mv-thread {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 7px 6px;
  border-radius: 8px;
  color: #8a9aaa;
  margin-bottom: 4px;
  position: relative;
}

.mv-thread.active {
  background: rgba(65, 184, 131, 0.1);
  color: #dce4ec;
  box-shadow: inset 0 0 0 1px rgba(65, 184, 131, 0.2);
}

.mv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mv-vue);
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--mv-vue-glow);
}

.mv-dot.off {
  background: #444;
  box-shadow: none;
}

.mv-thread-name {
  font-weight: 700;
  font-size: 0.62rem;
  color: #e2e8f0;
}

.mv-thread-prev {
  font-size: 0.55rem;
  color: #6b7c8c;
  margin-top: 2px;
}

.mv-badge {
  margin-left: auto;
  font-size: 0.52rem;
  font-weight: 800;
  background: var(--primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  align-self: flex-start;
}

.mv-badge.soft {
  background: rgba(100, 126, 255, 0.35);
}

.mv-main {
  display: flex;
  flex-direction: column;
  background: #080b0f;
  min-height: 0;
}

.mv-thread-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-thread-head strong {
  display: block;
  font-size: 0.72rem;
  color: #fff;
}

.mv-status {
  font-size: 0.55rem;
  color: var(--mv-vue);
  margin-top: 2px;
  display: block;
}

.mv-head-icons {
  display: flex;
  gap: 6px;
}

.mv-head-icons span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.mv-stream {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mv-msg {
  display: flex;
}

.mv-msg.in {
  justify-content: flex-start;
}

.mv-msg.out {
  justify-content: flex-end;
}

.mv-bubble {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 12px;
  line-height: 1.45;
  font-size: 0.62rem;
}

.mv-msg.in .mv-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-msg.out .mv-bubble {
  background: linear-gradient(135deg, rgba(65, 184, 131, 0.25), rgba(100, 126, 255, 0.15));
  border: 1px solid var(--mv-vue-dim);
  color: #e8f5ef;
}

.mv-bubble.dim {
  font-size: 0.55rem;
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.25);
}

.mv-composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}

.mv-plus {
  color: #6b7c8c;
  font-size: 1rem;
  font-weight: 300;
}

.mv-input {
  flex: 1;
  font-size: 0.62rem;
  color: #5c6b7a;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mv-send {
  color: var(--mv-vue);
  font-size: 0.85rem;
  font-weight: 700;
}

.mv-side {
  background: #0a0e12;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 8px;
}

.mv-side-h {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5c6b7a;
  margin-bottom: 10px;
}

.mv-chip {
  font-size: 0.55rem;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(100, 126, 255, 0.12);
  border: 1px solid rgba(100, 126, 255, 0.2);
  color: #a5b4fc;
  margin-bottom: 6px;
}

.mv-side-note {
  margin-top: 12px;
  font-size: 0.55rem;
  line-height: 1.5;
  color: #6b7c8c;
}

/* --- Marquee (ChatterApply brand-bar pattern, saved source CSS) --- */
.marquee-brand-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: #000;
}

.marquee-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: mqBrand 25s linear infinite;
}

.marquee-brand-track > span {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  padding: 16px clamp(16px, 3vw, 40px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.marquee-brand-track .marquee-brand-fill {
  -webkit-text-stroke: 0;
  background: linear-gradient(135deg, rgba(255, 119, 61, 0.2), rgba(197, 57, 0, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.marquee-brand-track .marquee-brand-dot {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 clamp(8px, 2vw, 20px);
  line-height: 1;
  -webkit-text-stroke: 0;
}

@keyframes mqBrand {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Live payout counter (glass card + chart) --- */
.payout-counter-section {
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.payout-counter-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 32px) clamp(22px, 4vw, 32px) clamp(18px, 3vw, 26px);
  border-radius: clamp(22px, 4vw, 34px);
  position: relative;
  isolation: isolate;
  background: linear-gradient(155deg, rgba(22, 24, 32, 0.82) 0%, rgba(8, 9, 12, 0.88) 100%);
  border: 1px solid rgba(120, 210, 255, 0.38);
  box-shadow:
    0 0 0 1px rgba(120, 210, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(100, 200, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.payout-counter-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 55% 40% at 18% 0%, rgba(255, 100, 180, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 8%, rgba(100, 200, 255, 0.1), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.payout-counter-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.payout-counter-brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f2f2f2;
}

.payout-counter-live {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ee787;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 231, 135, 0.35);
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.18);
}

.payout-counter-label {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c8c8d0;
  letter-spacing: -0.01em;
}

.payout-counter-value-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 4px 0 18px;
}

.payout-counter-currency {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  transform: translateY(-0.06em);
}

.payout-counter-value {
  font-size: clamp(2.5rem, 8vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.payout-counter-value.is-updating {
  transform: scale(1.02);
  opacity: 0.92;
}

.payout-counter-chart {
  margin: 0 -6px 14px;
  border-radius: 14px;
  padding: 10px 8px 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.payout-counter-chart-svg {
  display: block;
  width: 100%;
  height: clamp(72px, 18vw, 100px);
}

.payout-chart-area {
  transform-origin: center bottom;
  animation: payoutChartDrift 14s ease-in-out infinite alternate;
}

.payout-chart-line {
  animation: payoutChartDrift 14s ease-in-out infinite alternate;
}

@keyframes payoutChartDrift {
  from {
    transform: translateX(-2%);
  }
  to {
    transform: translateX(2%);
  }
}

.payout-chart-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a5a68;
  padding: 0 4px 2px;
}

.payout-counter-foot {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #6a6a78;
}

.payout-counter-foot .payout-counter-sep {
  color: #444;
}

/* --- Conversion proof strip --- */
.conversion-proof {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(56px, 8vw, 92px);
}

.conversion-proof-head {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 34px);
}

.conversion-proof-head .section-title-lg {
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}

.proof-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(19, 19, 23, 0.96), rgba(8, 8, 10, 0.96));
  padding: 18px 18px 20px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 119, 61, 0.25);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.proof-kpi {
  margin: 0 0 8px;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, #ff9a6b, #ff773d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #fff;
}

.proof-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #9a9aa2;
}

.proof-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 4vw, 30px);
  flex-wrap: wrap;
}

/* --- Mid-flow CTA --- */
.section-mid-cta {
  padding: clamp(30px, 5vw, 52px) 0 clamp(40px, 7vw, 72px);
}

.mid-cta-box {
  border-radius: 20px;
  border: 1px solid rgba(255, 119, 61, 0.18);
  background:
    radial-gradient(ellipse 95% 90% at 50% 0%, rgba(255, 119, 61, 0.09), transparent 58%),
    linear-gradient(180deg, #121217, #09090c);
  padding: clamp(28px, 5vw, 42px);
  text-align: center;
}

.mid-cta-title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.mid-cta-sub {
  margin: 0 auto;
  max-width: 560px;
  color: #9898a4;
  line-height: 1.62;
}

.mid-cta-trust {
  list-style: none;
  margin: 16px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mid-cta-trust li {
  color: #adadb8;
  font-size: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.mid-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* --- Mobile sticky apply pathway --- */
.sticky-apply-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: calc(var(--z-nav) + 1);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 12, 0.93);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.sticky-apply-bar.is-visible {
  transform: translateY(0);
}

.sticky-apply-copy {
  margin: 0;
  font-size: 0.72rem;
  color: #9f9fab;
  line-height: 1.35;
}

.sticky-apply-btn {
  padding: 10px 16px;
  font-size: 0.83rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- Shared section --- */
#new,
#about,
#proof,
#payouts,
#process,
#requirements,
#offer,
#faq {
  scroll-margin-top: var(--layout-section-scroll-margin);
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 16px;
}

.section-narrow {
  max-width: 820px;
}

.section-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.headline-split {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
  color: #b0b0b0;
  margin: 0;
}

.hl-strong {
  color: #fff;
  font-weight: 700;
}

.hl-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-accent {
  color: var(--primary);
}

.section-title-lg {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(20px, 3vw, 32px);
  color: #fff;
}

/* --- About split --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(56px, 7vw, 88px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.about-headline {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.about-head-white {
  color: #fff;
}

.about-head-accent {
  color: var(--primary);
}

.about-lead {
  color: #a3a3a3;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

.about-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

.about-stats li {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-split.reveal.is-visible .about-stats li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}
.about-split.reveal.is-visible .about-stats li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.16s;
}
.about-split.reveal.is-visible .about-stats li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s;
}

.about-stats li:last-child {
  border-bottom: 0;
}

.about-split.reveal.is-visible .about-copy {
  animation: softRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.about-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff9a6b, #ff773d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 600;
}

/* --- Step cards --- */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}

.step-card {
  background: #0c0c0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px 18px 22px;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease;
}

.step-card:hover {
  border-color: rgba(255, 119, 61, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.step-card-mock {
  position: relative;
  height: 130px;
  border-radius: 12px;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
}

.step-mock-apply {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 119, 61, 0.12), transparent 55%);
}

.mock-app-win {
  width: 92%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
}

.mock-app-title {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 8px;
}

.mock-app-steps {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.mock-app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #444;
}

.mock-app-dot.on {
  background: var(--primary);
  border-color: #ff9a6b;
  box-shadow: 0 0 10px rgba(255, 119, 61, 0.5);
  animation: stepGlow 1.8s ease-in-out infinite;
}

.mock-app-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}

@keyframes stepGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 119, 61, 0.45);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 119, 61, 0.85);
  }
}

.mock-app-field {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.mock-app-field.short {
  width: 65%;
}

.mock-app-btn {
  margin-top: 8px;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff773d, #c53900);
  color: #fff;
}

.step-mock-learn {
  padding: 12px;
  background: linear-gradient(180deg, rgba(65, 184, 131, 0.08), transparent);
}

.mock-learn-head {
  font-size: 0.58rem;
  font-weight: 800;
  color: #41b883;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.mock-learn-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.58rem;
  color: #888;
  padding: 6px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid transparent;
}

.mock-learn-row.done {
  color: #666;
}

.mock-learn-row.active {
  background: rgba(65, 184, 131, 0.1);
  border-color: rgba(65, 184, 131, 0.25);
  color: #dce8e4;
}

.mock-learn-icon {
  font-size: 0.55rem;
  opacity: 0.7;
}

.mock-learn-icon.glow {
  color: #41b883;
  animation: iconFloat 2.2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

.mock-learn-check {
  margin-left: auto;
  color: #22c55e;
  font-weight: 800;
}

.mock-learn-pulse {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41b883;
  animation: learnRowPulse 1.5s ease-in-out infinite;
}

@keyframes learnRowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.75;
  }
}

.step-mock-earn {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.15), transparent 50%);
}

.mock-earn-label {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  font-weight: 700;
}

.mock-earn-big {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
  background: linear-gradient(90deg, #fff, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-earn-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 8px;
}

.mock-earn-chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #22c55e, rgba(34, 197, 94, 0.2));
  animation: barWave 2.4s ease-in-out infinite;
}

.mock-earn-chart span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.mock-earn-chart span:nth-child(2) {
  height: 65%;
  animation-delay: 0.1s;
}
.mock-earn-chart span:nth-child(3) {
  height: 50%;
  animation-delay: 0.2s;
}
.mock-earn-chart span:nth-child(4) {
  height: 85%;
  animation-delay: 0.15s;
}
.mock-earn-chart span:nth-child(5) {
  height: 55%;
  animation-delay: 0.25s;
}
.mock-earn-chart span:nth-child(6) {
  height: 95%;
  animation-delay: 0.05s;
}

@keyframes barWave {
  0%,
  100% {
    opacity: 0.85;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.06);
  }
}

.mock-earn-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.52rem;
  color: #666;
}

.mock-earn-up {
  color: #22c55e;
  font-weight: 700;
}

.mock-earn-live {
  color: #41b883;
  font-weight: 600;
}

.step-card-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.55;
}

/* --- Requirements --- */
.req-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 72px);
  align-items: start;
  padding: clamp(64px, 9vw, 112px) 0;
}

.req-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.req-sub {
  color: #a3a3a3;
  line-height: 1.65;
  margin: 0 0 8px;
  max-width: 420px;
}

.req-bullets {
  margin: 0;
  padding: 8px 0 0 0;
  list-style: none;
}

.req-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #ccc;
  line-height: 1.5;
}

.req-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255, 119, 61, 0.5);
}

/* --- Offer shell --- */
.offer-shell {
  background: linear-gradient(180deg, #0d0d12 0%, #08080a 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: clamp(36px, 5vw, 56px);
  margin: clamp(40px, 6vw, 64px) 0 clamp(64px, 9vw, 100px);
}

.offer-shell-glow {
  position: relative;
  animation: offerShellGlow 5s ease-in-out infinite;
}

@keyframes offerShellGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 119, 61, 0.08), 0 24px 80px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 119, 61, 0.22), 0 32px 100px rgba(255, 119, 61, 0.08);
  }
}

.offer-sub {
  color: #888;
  margin: 0 0 28px;
  max-width: 520px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.offer-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(22px);
}

#offer.reveal.is-visible .offer-card {
  opacity: 1;
  transform: translateY(0);
}

#offer.reveal.is-visible .offer-card:nth-child(1) {
  transition-delay: 0.05s;
}
#offer.reveal.is-visible .offer-card:nth-child(2) {
  transition-delay: 0.1s;
}
#offer.reveal.is-visible .offer-card:nth-child(3) {
  transition-delay: 0.15s;
}
#offer.reveal.is-visible .offer-card:nth-child(4) {
  transition-delay: 0.2s;
}
#offer.reveal.is-visible .offer-card:nth-child(5) {
  transition-delay: 0.25s;
}
#offer.reveal.is-visible .offer-card:nth-child(6) {
  transition-delay: 0.3s;
}

.offer-card:hover {
  border-color: rgba(255, 119, 61, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 119, 61, 0.35);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.offer-icon svg {
  width: 22px;
  height: 22px;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #fff;
}

.offer-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.55;
}

/* --- FAQ accordion --- */
.faq-title-lg {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item-acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #eee;
  position: relative;
}

.faq-item-acc summary::-webkit-details-marker {
  display: none;
}

.faq-item-acc summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item-acc[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item-acc p {
  margin: 0 0 18px;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.65;
  padding-right: 24px;
  animation: faqOpen 0.45s ease both;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --- Scroll + entrance motion --- */
.reveal-hero {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
}

.reveal-hero.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-copy > .reveal-hero:nth-child(1) {
  transition-delay: 0.02s;
}
.hero-copy > .reveal-hero:nth-child(2) {
  transition-delay: 0.1s;
}
.hero-copy > .reveal-hero:nth-child(3) {
  transition-delay: 0.18s;
}
.hero-copy > .reveal-hero:nth-child(4) {
  transition-delay: 0.26s;
}
.hero-copy > .reveal-hero:nth-child(5) {
  transition-delay: 0.34s;
}
.hero-copy > .reveal-hero:nth-child(6) {
  transition-delay: 0.42s;
}

.mv-dash.reveal-hero {
  transition-delay: 0.36s;
}

/* Scroll-in sections: ChatterApply .rv pattern (translateY 24px, ~0.7s material easing) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#process .step-card {
  opacity: 0;
  transform: translateY(28px) rotateX(6deg);
  transform-origin: top center;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#process.reveal.is-visible .step-card:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.06s;
}
#process.reveal.is-visible .step-card:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.14s;
}
#process.reveal.is-visible .step-card:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

/* --- Final CTA --- */
.section-final-cta {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
}

.final-cta-box {
  text-align: center;
  padding: clamp(36px, 6vw, 56px) 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 119, 61, 0.2);
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255, 119, 61, 0.12), transparent 55%),
    linear-gradient(180deg, #101014, #08080a);
  box-shadow: 0 0 80px rgba(255, 119, 61, 0.08);
  animation: ctaBreathe 4.5s ease-in-out infinite;
}

@keyframes ctaBreathe {
  0%,
  100% {
    box-shadow: 0 0 60px rgba(255, 119, 61, 0.06), 0 0 0 1px rgba(255, 119, 61, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 100px rgba(255, 119, 61, 0.14), 0 0 0 1px rgba(255, 119, 61, 0.28);
    transform: scale(1.008);
  }
}

.final-cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.final-cta-sub {
  color: #999;
  max-width: 480px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.final-cta-foot {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-stats {
    max-width: 400px;
  }

  .step-cards {
    grid-template-columns: 1fr;
  }

  .req-split {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .mv-body {
    grid-template-columns: 88px 1fr;
  }

  .mv-side {
    display: none;
  }
}

@media (max-width: 960px) {
  .sticky-apply-bar {
    display: flex;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
  }

  .mv-dash {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .reveal-hero,
  .reveal-hero.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .offer-card,
  #process .step-card,
  #process.reveal.is-visible .step-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-tag-dot,
  .mv-pill,
  .mock-app-dot.on,
  .mock-learn-pulse,
  .mock-earn-chart span,
  .offer-shell-glow,
  .final-cta-box {
    animation: none !important;
  }

  .marquee-brand-track {
    animation-duration: 70s !important;
    animation-timing-function: linear !important;
  }

  .about-stats li,
  .about-split.reveal.is-visible .about-stats li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .about-split.reveal.is-visible .about-copy {
    animation: none !important;
  }

  .payout-chart-area,
  .payout-chart-line {
    animation: none !important;
    transform: none !important;
  }

  .payout-counter-value.is-updating {
    transform: none !important;
  }

  .sticky-apply-bar {
    transition: none !important;
  }
}
