/* ============== ZCreators — Design System ============== */
:root {
  /* Accents (Tweakable) */
  --accent: #6C4CF1;          /* electric violet */
  --accent-press: #5A3CE0;
  --accent-soft: #EDE9FF;
  --accent-ink: #2B1B6B;
  --coral: #FF6B57;           /* friendly pop */
  --coral-soft: #FFE6E1;
  --mint: #1FC98B;            /* money / paid */
  --mint-soft: #DBF7EC;

  /* Neutrals — cool-warm balanced */
  --ink: #14141A;             /* primary text on light */
  --ink-2: #45454F;           /* secondary text */
  --ink-3: #7A7A86;           /* muted */
  --line: #E7E6EC;            /* hairlines on light */
  --bg: #F5F4F8;              /* page light base */
  --surface: #FFFFFF;         /* cards */
  --surface-2: #FBFBFD;

  /* Dark sections */
  --dark: #0E0E14;            /* deep ink, slightly cool */
  --dark-2: #16161F;
  --dark-surface: #1C1C28;
  --dark-line: rgba(255,255,255,0.10);
  --dark-text: #EDEDF2;
  --dark-muted: #9A9AA8;

  /* Radius / shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,20,26,.06);
  --shadow-md: 0 14px 40px -14px rgba(20,20,26,.18);
  --shadow-lg: 0 40px 90px -30px rgba(20,20,26,.30);
  --shadow-accent: 0 18px 48px -16px color-mix(in srgb, var(--accent) 60%, transparent);

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

/* ============== Typography ============== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; }
.display {
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -.035em;
}
.h2 { font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -.03em; line-height: 1.0; }
.h3 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.02em; }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.55; }
.mono { font-family: var(--font-mono); }
.text-balance { text-wrap: balance; }
.section-head { max-width: 720px; }
.section-head .h2 { margin: 16px 0 0; }
.section-head .lead { margin-top: 18px; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -.01em;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap; position: relative;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(20,20,26,.05); }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: var(--r-pill);
}

/* ============== Header ============== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--dark) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--dark-line);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.03em; color: #fff; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-size: 19px; font-weight: 800; transform: rotate(-6deg);
  box-shadow: var(--shadow-accent);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--dark-muted); font-size: 14.5px; font-weight: 600;
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav .btn-login { color: var(--dark-text); font-weight: 700; font-size: 14.5px; padding: 10px 16px; }
.nav .btn-login:hover { color: #fff; }
.nav-burger { display: none; }

/* ============== Hero ============== */
.hero {
  position: relative; background: var(--dark); color: var(--dark-text);
  padding: 132px 0 92px; overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.hero-glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(90px); opacity: .55;
}
.hero-glow.g1 { width: 560px; height: 560px; left: -160px; top: -160px; background: var(--accent); opacity:.35; }
.hero-glow.g2 { width: 420px; height: 420px; right: -120px; top: 120px; background: var(--coral); opacity:.22; }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--dark-line) 1px, transparent 1px), linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 70% 30%, #000 0%, transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); border: 1px solid var(--dark-line);
  padding: 7px 7px 7px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--dark-text);
}
.hero-badge .pill {
  background: var(--mint); color: #04150D; font-weight: 800; font-size: 11px;
  padding: 4px 10px; border-radius: var(--r-pill); letter-spacing:.02em;
}
.hero h1 { color: #fff; margin: 24px 0 0; }
.hero h1 .hl { color: var(--accent); position: relative; }
.hero h1 .hl-coral { color: var(--coral); }
.hero .lead { color: var(--dark-muted); max-width: 480px; margin-top: 22px; }

.hero-form { display: flex; gap: 10px; margin-top: 30px; max-width: 440px; }
.hero-form .field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: var(--dark-surface); border: 1px solid var(--dark-line);
  border-radius: var(--r-pill); padding: 5px 6px 5px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.hero-form .field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 24%, transparent); }
.hero-form input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: 15px; font-family: inherit; min-width: 0;
}
.hero-form input::placeholder { color: var(--dark-muted); }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--dark-muted); display: flex; align-items: center; gap: 8px; }
.hero-note .avatars { display: flex; }
.hero-note .avatars span {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--dark);
  margin-left: -7px; background-size: cover;
}
.hero-note .avatars span:first-child { margin-left: 0; }

.hero-stats { display: flex; gap: 34px; margin-top: 44px; }
.hero-stats .stat .num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -.03em; }
.hero-stats .stat .num .mono { font-family: var(--font-mono); }
.hero-stats .stat .lbl { font-size: 12.5px; color: var(--dark-muted); margin-top: 3px; }

/* ============== Phone mockup ============== */
.phone-stage { position: relative; display: grid; place-items: center; min-height: 560px; }
.phone {
  position: relative; width: 300px; height: 614px;
  background: #0a0a0f; border-radius: 46px; padding: 11px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06), var(--shadow-lg), 0 0 90px -30px var(--accent);
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--bg); position: relative;
}
.phone .notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0a0a0f; border-radius: var(--r-pill); z-index: 5;
}

/* in-app UI (reused) */
.app { height: 100%; display: flex; flex-direction: column; background: var(--bg); color: var(--ink); }
.app-status { display:flex; justify-content: space-between; align-items:center; padding: 16px 20px 6px; font-size: 12px; font-weight: 700; }
.app-top { padding: 8px 18px 14px; display:flex; align-items:center; justify-content: space-between; }
.app-top .greet { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.app-top .bal { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing:-.02em; }
.app-top .bal .mono { font-family: var(--font-mono); }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--coral)); }
.app-body { flex: 1; overflow: hidden; padding: 4px 16px; display: flex; flex-direction: column; gap: 11px; }
.app-section-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin: 4px 2px 0; display:flex; justify-content:space-between; }
.camp {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 13px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-sm);
}
.camp-top { display:flex; align-items:center; gap: 10px; }
.camp-logo { width: 36px; height: 36px; border-radius: 11px; display:grid; place-items:center; font-weight:800; font-size:15px; color:#fff; flex-shrink:0; }
.camp-name { font-weight: 700; font-size: 13.5px; line-height:1.1; }
.camp-meta { font-size: 11px; color: var(--ink-3); margin-top:2px; }
.camp-plat { margin-left:auto; display:flex; gap:5px; }
.plat-ico { width: 22px; height:22px; border-radius: 7px; display:grid; place-items:center; font-size:11px; }
.camp-pay { display:flex; align-items:center; justify-content:space-between; padding-top: 10px; border-top: 1px dashed var(--line); }
.camp-pay .rate { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--ink); }
.camp-pay .rate small { color: var(--ink-3); font-size: 10px; font-weight:700; }
.camp-pay .go { background: var(--accent); color:#fff; font-weight:800; font-size: 12px; padding: 8px 14px; border-radius: var(--r-pill); }
.app-tabbar {
  display:flex; justify-content: space-around; align-items:center;
  padding: 12px 16px 18px; border-top: 1px solid var(--line); background: var(--surface);
}
.app-tab { width: 26px; height: 26px; border-radius: 8px; background: var(--line); }
.app-tab.on { background: var(--accent); }

/* floating cards around phone */
.floaty {
  position: absolute; background: var(--surface); color: var(--ink);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 14px 16px;
  z-index: 4; border: 1px solid rgba(255,255,255,.6);
}
.floaty.payout { left: -38px; top: 92px; width: 220px; }
.floaty.streak { right: -30px; top: 300px; width: 176px; }
.floaty.rank { right: -46px; top: 36px; }
.payout-row { display:flex; align-items:center; gap: 11px; }
.payout-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--mint-soft); color: var(--mint); display:grid; place-items:center; flex-shrink:0; }
.payout-row .t1 { font-size: 12px; color: var(--ink-3); font-weight:600; }
.payout-row .t2 { font-family: var(--font-mono); font-weight: 700; font-size: 17px; color: var(--ink); }
.payout-bar { height: 6px; border-radius: 99px; background: var(--mint-soft); margin-top: 11px; overflow:hidden; }
.payout-bar i { display:block; height:100%; width: 72%; background: var(--mint); border-radius:99px; }
.streak .big { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.streak .lbl { font-size: 11.5px; color: var(--ink-3); font-weight:600; }
.rank { display:flex; align-items:center; gap:10px; }
.rank .medal { width: 34px; height:34px; border-radius:10px; background: var(--coral-soft); color: var(--coral); display:grid; place-items:center; font-weight:800; }

/* floating "bubble" animation */
@media (prefers-reduced-motion: no-preference) {
  .floaty { animation: floatBob 6s ease-in-out infinite; will-change: transform; }
  .floaty.payout { animation-duration: 5.4s; animation-delay: -.4s; }
  .floaty.rank   { animation-duration: 6.6s; animation-delay: -2.1s; }
  .floaty.streak { animation-duration: 6s;   animation-delay: -3.4s; }
  .floaty .payout-bar i { animation: barFill 5.4s ease-in-out infinite; }
}
@keyframes floatBob {
  0%   { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-13px) rotate(-1.1deg); }
  66%  { transform: translateY(7px) rotate(.8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes barFill {
  0%,100% { width: 58%; }
  50%     { width: 86%; }
}

/* ============== Logos strip ============== */
.logos { padding: 30px 0 6px; }
.logos .lbl { text-align:center; font-size: 12px; font-weight:700; color: var(--ink-3); letter-spacing:.1em; text-transform:uppercase; }
.logos-row { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap: 14px 40px; margin-top: 20px; opacity:.8; }
.logos-row .lg { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink-3); letter-spacing:-.02em; }

/* ============== Sections base ============== */
section { position: relative; }
.pad { padding: 84px 0; }
.pad-lg { padding: 110px 0; }
.center { text-align:center; }
.center .section-head { margin-inline:auto; }

/* How it works */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 28px; position: relative; transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .n {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--accent);
  display:inline-flex; align-items:center; gap:8px;
}
.step .ico {
  width: 56px; height: 56px; border-radius: 16px; display:grid; place-items:center;
  margin: 18px auto 18px; font-size: 24px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; }
.step .ico.v { background: var(--accent-soft); color: var(--accent); }
.step .ico.c { background: var(--coral-soft); color: var(--coral); }
.step .ico.m { background: var(--mint-soft); color: var(--mint); }
.step-connector { position:absolute; top: 54px; right: -16px; color: var(--line); z-index:2; }

/* Features showcase */
.feature-wrap { display:grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items:center; margin-top: 48px; }
.feature-tabs { display:flex; flex-direction:column; gap: 10px; }
.ftab {
  text-align:left; border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--r-md); padding: 18px 20px; transition: all .22s; position:relative; overflow:hidden;
}
.ftab:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.ftab.on { border-color: transparent; background: var(--ink); color:#fff; box-shadow: var(--shadow-md); }
.ftab .ft-head { display:flex; align-items:center; gap: 13px; }
.ftab .ft-ico { width: 40px; height:40px; border-radius: 11px; display:grid; place-items:center; background: var(--accent-soft); color: var(--accent); flex-shrink:0; transition: background .2s,color .2s; }
.ftab.on .ft-ico { background: var(--accent); color:#fff; }
.ftab h3 { font-size: 18px; }
.ftab p { font-size: 14px; color: var(--ink-2); margin-top: 0; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s, margin-top .3s; }
.ftab.on p { max-height: 90px; opacity:1; margin-top: 12px; }
.ftab.on p { color: var(--dark-muted); }
.feature-visual {
  background: var(--dark); border-radius: var(--r-xl); padding: 40px; position: relative; overflow:hidden;
  min-height: 460px; display:grid; place-items:center;
}
.feature-visual .hero-glow.g1 { left:auto; right:-120px; top:auto; bottom:-140px; width:360px; height:360px; opacity:.4; }

/* Earnings / payout proof */
.earn { background: var(--dark); color: var(--dark-text); border-radius: var(--r-xl); overflow:hidden; }
.earn-inner { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; padding: 64px 56px; position:relative; }
.earn h2 { color:#fff; }
.earn .lead { color: var(--dark-muted); }
.calc {
  background: var(--dark-surface); border: 1px solid var(--dark-line); border-radius: var(--r-lg); padding: 30px;
}
.calc-label { font-size: 13px; color: var(--dark-muted); font-weight:600; display:flex; justify-content:space-between; align-items:baseline; }
.calc-label b { color:#fff; font-family: var(--font-mono); font-size: 15px; }
.calc-views { font-family: var(--font-display); font-weight: 800; font-size: 30px; color:#fff; margin-top: 4px; }
.slider { width:100%; margin: 22px 0 8px; -webkit-appearance:none; appearance:none; height: 8px; border-radius:99px; background: rgba(255,255,255,.12); outline:none; }
.slider::-webkit-slider-thumb { -webkit-appearance:none; width: 26px; height:26px; border-radius:50%; background: var(--accent); cursor:pointer; box-shadow: 0 0 0 5px color-mix(in srgb,var(--accent) 30%, transparent); border:3px solid #fff; }
.slider::-moz-range-thumb { width: 22px; height:22px; border-radius:50%; background: var(--accent); cursor:pointer; border:3px solid #fff; }
.calc-out { margin-top: 26px; padding-top: 24px; border-top:1px solid var(--dark-line); display:flex; align-items:flex-end; justify-content:space-between; }
.calc-out .small { font-size: 12px; color: var(--dark-muted); font-weight:600; }
.calc-out .money { font-family: var(--font-mono); font-weight: 700; font-size: clamp(30px, 7vw, 44px); color: var(--mint); letter-spacing:-.02em; line-height:1; white-space: nowrap; }
.calc-platforms { display:flex; gap:8px; margin-top: 22px; }
.calc-platforms button { flex:1; padding: 10px; border-radius: var(--r-sm); border:1px solid var(--dark-line); background:transparent; color: var(--dark-muted); font-weight:700; font-size:12.5px; transition: all .2s; }
.calc-platforms button.on { background:#fff; color: var(--ink); border-color:#fff; }
.payout-feed { display:flex; flex-direction:column; gap: 12px; }
.pf-item { display:flex; align-items:center; gap: 13px; background: var(--dark-surface); border:1px solid var(--dark-line); border-radius: var(--r-md); padding: 14px 16px; }
.pf-ava { width:42px; height:42px; border-radius: 12px; flex-shrink:0; display:grid; place-items:center; font-weight:800; color:#fff; }
.pf-name { font-weight:700; font-size:14px; color:#fff; }
.pf-sub { font-size: 12px; color: var(--dark-muted); }
.pf-amt { margin-left:auto; font-family: var(--font-mono); font-weight:700; color: var(--mint); font-size: 16px; }

/* Brands */
.brands-split { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.brands-card {
  background: linear-gradient(160deg, var(--accent), color-mix(in srgb,var(--accent) 55%, var(--coral)));
  border-radius: var(--r-xl); padding: 48px; color:#fff; position:relative; overflow:hidden;
  min-height: 380px; display:flex; flex-direction:column; justify-content:space-between;
}
.brands-card .b-stat { display:flex; gap: 36px; }
.brands-card .b-stat .num { font-family: var(--font-display); font-weight:800; font-size: 38px; }
.brands-card .b-stat .lbl { font-size: 13px; opacity:.85; margin-top:2px; }
.brands-list { display:flex; flex-direction:column; gap: 20px; }
.brand-feat { display:flex; gap: 16px; align-items:flex-start; }
.brand-feat .bf-ico { width: 46px; height:46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; flex-shrink:0; }
.brand-feat h3 { font-size: 18px; margin-bottom: 5px; }
.brand-feat p { color: var(--ink-2); font-size: 15px; }

/* ===== Brand AI highlight + dashboard ===== */
.ai-highlight {
  position: relative; border-radius: var(--r-lg); padding: 24px 24px 22px;
  background: var(--ink); color: #fff; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ai-highlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb,var(--accent) 40%, var(--coral)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.ai-glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: var(--accent); filter: blur(70px); opacity: .35; top: -90px; right: -70px; pointer-events: none; }
.ai-tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: color-mix(in srgb, var(--accent) 35%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  padding: 6px 12px; border-radius: var(--r-pill); position: relative; z-index: 1;
}
.ai-tag .spark { width: 13px; height: 13px; }
.ai-highlight h3 { font-size: 22px; margin: 16px 0 8px; position: relative; z-index: 1; }
.ai-highlight p { color: var(--dark-muted); font-size: 14.5px; position: relative; z-index: 1; max-width: 420px; }
.ai-checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; position: relative; z-index: 1; }
.ai-check {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid var(--dark-line); color: var(--dark-text);
  padding: 7px 12px; border-radius: var(--r-pill);
}
.ai-check svg { color: var(--mint); flex-shrink: 0; }

/* dashboard card */
.bz-dash {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.bz-dash-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--surface-2);
}
.bz-dash-head .t { display: flex; align-items: center; gap: 12px; }
.bz-dash-logo { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg,#FF6B57,#FF8A3C); display: grid; place-items: center; color: #fff; font-weight: 800; }
.bz-dash-head .nm { font-weight: 700; font-size: 14.5px; line-height: 1.1; }
.bz-dash-head .sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.bz-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--mint); background: var(--mint-soft); padding: 6px 11px; border-radius: var(--r-pill); }
.bz-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
@media (prefers-reduced-motion: no-preference) { .bz-live .dot { animation: pulse 1.6s ease-in-out infinite; } .ai-tag .spark { animation: spin 4s linear infinite; } }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 color-mix(in srgb,var(--mint) 70%, transparent);} 50%{ box-shadow: 0 0 0 5px transparent;} }
@keyframes spin { to { transform: rotate(360deg); } }

.bz-kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); }
.bz-kpi { background: var(--surface); padding: 16px 18px; }
.bz-kpi .k-lbl { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: 6px; }
.bz-kpi .k-val { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -.02em; margin-top: 5px; }
.bz-kpi .k-val .mono { font-family: var(--font-mono); font-size: 20px; }
.bz-kpi .k-delta { font-size: 11.5px; font-weight: 700; color: var(--mint); }
.bz-kpi .k-delta.down { color: var(--ink-3); }
.k-aibadge { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; color: var(--accent); background: var(--accent-soft); padding: 2px 6px; border-radius: 5px; }
.bz-prog { height: 6px; border-radius: 99px; background: var(--bg); margin-top: 9px; overflow: hidden; }
.bz-prog i { display: block; height: 100%; width: 80%; background: var(--accent); border-radius: 99px; }

.bz-chart { padding: 18px 20px 8px; }
.bz-chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.bz-chart-head .ttl { font-size: 12px; font-weight: 700; color: var(--ink-2); }
.bz-legend { display: flex; gap: 14px; font-size: 11px; font-weight: 600; color: var(--ink-3); }
.bz-legend span { display: inline-flex; align-items: center; gap: 6px; }
.bz-legend i { width: 9px; height: 9px; border-radius: 3px; }
.bz-svg { width: 100%; height: auto; display: block; }

/* AI verification strip inside dashboard */
.bz-ai {
  margin: 6px 16px 16px; border-radius: var(--r-md); padding: 15px 16px;
  background: linear-gradient(135deg, color-mix(in srgb,var(--accent) 10%, var(--surface)), var(--surface));
  border: 1px solid color-mix(in srgb,var(--accent) 30%, var(--line)); position: relative; overflow: hidden;
}
.bz-ai-scan { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 40%, color-mix(in srgb,var(--accent) 22%, transparent) 50%, transparent 60%);
  background-size: 250% 100%; }
@media (prefers-reduced-motion: no-preference) { .bz-ai-scan { animation: scan 3.2s ease-in-out infinite; } }
@keyframes scan { 0%{ background-position: 130% 0; } 100%{ background-position: -130% 0; } }
.bz-ai-head { display: flex; align-items: center; gap: 9px; position: relative; z-index: 1; }
.bz-ai-head .ico { width: 28px; height: 28px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.bz-ai-head .ttl { font-weight: 700; font-size: 13.5px; }
.bz-ai-head .score { margin-left: auto; font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--accent); }
.bz-ai-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; position: relative; z-index: 1; }
.bz-ai-row { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-2); }
.bz-ai-row svg { color: var(--mint); flex-shrink: 0; }
.bz-ai-row b { color: var(--ink); font-weight: 700; }
.bz-ai-row .tag { margin-left: auto; font-size: 10.5px; font-weight: 700; color: var(--mint); background: var(--mint-soft); padding: 3px 8px; border-radius: 99px; }

/* brand stat strip */
.bz-stripe { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 28px; }
.bz-stripe .cell { background: var(--surface); padding: 24px 22px; }
.bz-stripe .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3vw,38px); letter-spacing: -.03em; }
.bz-stripe .num .accent { color: var(--accent); }
.bz-stripe .lbl { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
@media (max-width: 720px) { .bz-stripe { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding: 24px 4px; text-align:left; font-family: var(--font-display); font-weight: 700; font-size: clamp(17px,2vw,21px); letter-spacing:-.01em; color: var(--ink); }
.faq-q .pm { width: 30px; height:30px; border-radius:50%; background: var(--bg); display:grid; place-items:center; flex-shrink:0; transition: background .2s, transform .3s; color: var(--accent); }
.faq-item.open .faq-q .pm { background: var(--accent); color:#fff; transform: rotate(135deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1); }
.faq-a p { padding: 0 4px 24px; color: var(--ink-2); font-size: 16px; max-width: 660px; }

/* Final CTA */
.cta {
  background: var(--dark); color:#fff; border-radius: var(--r-xl); padding: 80px 56px; text-align:center;
  position:relative; overflow:hidden;
}
.cta h2 { color:#fff; }
.cta .lead { color: var(--dark-muted); margin: 18px auto 0; max-width: 540px; }
.store-row { display:flex; gap: 14px; justify-content:center; margin-top: 34px; flex-wrap:wrap; }
.store-btn {
  display:flex; align-items:center; gap: 12px; background:#fff; color: var(--ink);
  padding: 13px 22px; border-radius: var(--r-md); transition: transform .2s, box-shadow .2s;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -16px rgba(0,0,0,.6); }
.store-btn .si { font-size: 26px; }
.store-btn .st { text-align:left; line-height:1.1; }
.store-btn .st small { font-size: 10.5px; opacity:.7; font-weight:700; }
.store-btn .st b { font-size: 17px; font-family: var(--font-display); font-weight:800; letter-spacing:-.02em; }

/* Footer */
.footer { background: var(--dark); color: var(--dark-muted); padding: 70px 0 34px; margin-top: 22px; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-line); }
.footer .brand { margin-bottom: 16px; }
.footer .f-about { font-size: 14px; max-width: 280px; line-height:1.6; }
.footer .f-social { display:flex; gap: 10px; margin-top: 20px; }
.footer .f-social a { width: 38px; height:38px; border-radius: 11px; background: var(--dark-surface); display:grid; place-items:center; color: var(--dark-text); transition: background .2s, transform .2s; }
.footer .f-social a:hover { background: var(--accent); color:#fff; transform: translateY(-2px); }
.f-col h4 { color:#fff; font-family: var(--font-body); font-size: 13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom: 16px; }
.f-col a { display:block; font-size: 14.5px; padding: 7px 0; transition: color .2s; }
.f-col a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top: 26px; font-size: 13px; flex-wrap:wrap; gap:12px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity:1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity:1 !important; transform:none !important; }
}

/* ============== Tweakable states ============== */
.hero.light { background: var(--surface); border-bottom: 1px solid var(--line); }
.hero.light .hero-grid-bg { background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); opacity:.8; }
.hero.light .hero-glow.g1 { opacity:.18; }
.hero.light .hero-glow.g2 { opacity:.12; }
.hero.light h1 { color: var(--ink); }
.hero.light .lead { color: var(--ink-2); }
.hero.light .hero-badge { background: var(--accent-soft); border-color: transparent; color: var(--accent-ink); }
.hero.light .hero-form .field { background: var(--bg); border-color: var(--line); }
.hero.light .hero-form input { color: var(--ink); }
.hero.light .hero-form input::placeholder { color: var(--ink-3); }
.hero.light .hero-note { color: var(--ink-3); }
.hero.light .hero-note .avatars span { border-color: var(--surface); }
.hero.light .hero-note b { color: var(--ink) !important; }
.hero.light .hero-stats .stat .num { color: var(--ink); }
.hero.light .hero-stats .stat .lbl { color: var(--ink-3); }
.hero.light .nav.scrolled, .nav.on-light.scrolled { background: color-mix(in srgb, var(--surface) 82%, transparent); border-bottom-color: var(--line); }

body.hide-floaty .floaty { display: none; }

/* Light hero → adapt nav colors (pre-scroll) */
body.hero-light .nav:not(.scrolled) .brand { color: var(--ink); }
body.hero-light .nav:not(.scrolled) .nav-links a { color: var(--ink-2); }
body.hero-light .nav:not(.scrolled) .nav-links a:hover { color: var(--ink); background: rgba(20,20,26,.05); }
body.hero-light .nav:not(.scrolled) .btn-login { color: var(--ink); }
body.hero-light .nav.scrolled { background: color-mix(in srgb, var(--surface) 82%, transparent); border-bottom-color: var(--line); }
body.hero-light .nav.scrolled .brand, body.hero-light .nav.scrolled .nav-links a, body.hero-light .nav.scrolled .btn-login { color: var(--ink); }
body.hero-light .nav.scrolled .nav-links a { color: var(--ink-2); }

#tweaks-root { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
#tweaks-root > * { pointer-events: auto; }

/* ============== Responsive ============== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .phone-stage { order: -1; margin-bottom: 10px; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display:none; }
  .feature-wrap, .earn-inner, .brands-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-visual { min-height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display:none; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .hero { padding-top: 110px; }
  .hero-form { flex-direction: column; }
  .hero-form .btn { width:100%; }
  .hero-stats { gap: 22px; flex-wrap:wrap; }
  .floaty.payout { left: -12px; width: 190px; }
  .floaty.streak { right: -8px; }
  .earn-inner, .cta, .brands-card { padding: 40px 26px; }
  .earn-inner { padding: 34px 22px; gap: 26px; }
  .calc { padding: 22px; }
  .calc-views { font-size: 26px; }
  .calc-out { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 22px; padding-top: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .store-row { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content:center; }
}
