:root {
  --white: #FFFFFF;
  --ink: #121217;
  --lime: #D6F44C;
  --lime-deep: #B8DC1E;
  --cloud: #F3F4EF;
  --mute: #6E7069;
  --line: rgba(18, 18, 23, 0.12);
  --pop: "Gabarito", sans-serif;
  /* handmade marker strokes */
  --mk1: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 56' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23D6F44C' stroke-linecap='round'%3E%3Cpath d='M11 22 C56 16 124 20 190 17' stroke-width='24'/%3E%3Cpath d='M16 40 C70 44 130 38 184 40' stroke-width='23'/%3E%3C/g%3E%3C/svg%3E");
  --mk2: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 56' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23D6F44C' stroke-linecap='round'%3E%3Cpath d='M10 20 C66 24 134 16 189 20' stroke-width='24'/%3E%3Cpath d='M14 39 C60 35 128 43 186 38' stroke-width='23'/%3E%3C/g%3E%3C/svg%3E");
  --mk-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 56' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-linecap='round'%3E%3Cpath d='M11 22 C56 16 124 20 190 17' stroke-width='24'/%3E%3Cpath d='M16 40 C70 44 130 38 184 40' stroke-width='23'/%3E%3C/g%3E%3C/svg%3E");
  --strike: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'%3E%3Cpath d='M3 32 C50 24 140 36 197 26 L197 33 C140 43 50 31 3 39 Z' fill='%23121217'/%3E%3C/svg%3E");
}
* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--lime); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--pop);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
a { color: inherit; }

/* ---------- Marker highlight ---------- */
.mk {
  display: inline-block;
  background-image: var(--mk1);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.04em 0.2em 0.1em;
  margin: 0 -0.04em;
  transform: rotate(-0.6deg);
  white-space: nowrap;
}
.mk.alt { background-image: var(--mk2); transform: rotate(0.5deg); }
.mk.wide { padding: 0.1em 0.38em 0.16em; margin: 0 -0.12em; }
.mk.white { background-image: var(--mk-white); }
.strike {
  position: relative;
  color: var(--mute);
  white-space: nowrap;
}
.strike::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  top: 8%; bottom: -2%;
  background-image: var(--strike);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ---------- Nav ---------- */
header { position: sticky; top: 0; z-index: 50; padding: 16px 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wordmark .spark {
  width: 12px; height: 12px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a.plain {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--mute);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a.plain:hover { color: var(--ink); background: var(--cloud); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--pop);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-lime { background: var(--lime); color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-login { padding: 10px 20px; margin-left: 6px; }
.btn-big { font-size: 17px; padding: 15px 30px; }
/* mobile-only elements, hidden by default */
.burger, .menu, .swipe-hint, .strip-inner .dup { display: none; }

/* ---------- Section primitives ---------- */
.sec-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
}
.sec-kicker.lime { background: var(--lime); color: var(--ink); border: 1.5px solid var(--ink); }
h2.display {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 22px;
  text-wrap: balance;
}
.sec-sub { margin-top: 16px; font-size: 18px; color: var(--mute); max-width: 56ch; text-wrap: pretty; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 96px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px;
  color: var(--mute);
}
.kicker b { color: var(--ink); font-weight: 700; }
.hero h1 {
  font-size: min(58px, calc(5vw - 8px));
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.hero h1 span.line { display: block; }
.hero p.sub {
  margin-top: 24px;
  font-size: 19px;
  font-weight: 400;
  color: var(--mute);
  max-width: 46ch;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--mute); font-weight: 500; }

/* ---------- Hero collage ---------- */
.collage { position: relative; min-height: 560px; }
.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 rgba(18,18,23,0.92);
}
.mgr-card { position: absolute; top: 12px; left: 0; right: 48px; padding: 22px 24px; }
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.card-head h4 { font-size: 16px; font-weight: 700; }
.chip { font-size: 12px; font-weight: 700; background: var(--cloud); border-radius: 100px; padding: 4px 12px; color: var(--mute); }
.roster-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1.5px solid var(--cloud);
  font-size: 14px;
}
.roster-row:last-child { border-bottom: none; }
.ava {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cloud);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.ava.a1 { background: var(--lime); }
.ava.a2 { background: #FFE1F0; }
.ava.a3 { background: #DDE9FF; }
.roster-row .name { font-weight: 700; flex: 1; }
.roster-row .views { color: var(--mute); font-weight: 500; font-variant-numeric: tabular-nums; }
.pill-status { font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 100px; border: 1.5px solid var(--ink); }
.pill-status.live { background: var(--lime); }
.pill-status.review { background: var(--white); color: var(--mute); border-color: var(--line); }

.creator-card {
  position: absolute;
  bottom: 0; right: 0; left: 110px;
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 6px 6px 0 var(--lime);
  border: 2px solid var(--ink);
}
.mini-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.creator-card .money { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.creator-card .money small { font-size: 16px; font-weight: 600; color: var(--lime); margin-left: 8px; }
.lb { margin-top: 16px; border-top: 1.5px solid rgba(255,255,255,0.15); padding-top: 12px; }
.lb-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 6px 0; color: rgba(255,255,255,0.7); font-weight: 500; }
.lb-row.you { color: var(--white); font-weight: 700; }
.lb-row .rank { width: 22px; font-weight: 800; color: rgba(255,255,255,0.45); }
.lb-row.you .rank { color: var(--lime); }
.lb-row .pts { margin-left: auto; font-variant-numeric: tabular-nums; }
.lb-row .you-chip { background: var(--lime); color: var(--ink); font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 100px; }
.float-chip {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(18,18,23,0.92);
  white-space: nowrap;
  z-index: 2;
}
.float-chip.payout { top: -14px; right: 12px; background: var(--lime); transform: rotate(3deg); }
.float-chip.rank { bottom: 252px; left: 24px; transform: rotate(-4deg); }

/* floating animation */
@media (prefers-reduced-motion: no-preference) {
  @keyframes float-card { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }
  @keyframes float-chip-a { 0%, 100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -8px; rotate: 1.6deg; } }
  @keyframes float-chip-b { 0%, 100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -7px; rotate: -1.8deg; } }
  .mgr-card { animation: float-card 6.5s ease-in-out infinite; }
  .creator-card { animation: float-card 8s ease-in-out 1.1s infinite; }
  .float-chip.payout { animation: float-chip-a 5s ease-in-out 0.5s infinite; }
  .float-chip.rank { animation: float-chip-b 5.8s ease-in-out 1.6s infinite; }
}

/* ---------- Lime strip ---------- */
.strip { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--lime); padding: 14px 0; overflow: hidden; }
.strip-inner { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; font-weight: 700; font-size: 15px; }
.strip-inner span { display: flex; align-items: center; gap: 10px; }
.strip-inner i { font-style: normal; font-weight: 800; }

/* ---------- Old way vs CREATON ---------- */
.problem { padding: 110px 0; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; align-items: stretch; }
.compare .col { border-radius: 28px; padding: 36px 38px; }
.compare .old { background: var(--cloud); }
.compare .new { background: var(--ink); color: var(--white); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--lime); }
.compare h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; display: flex; align-items: center; gap: 12px; }
.compare .old h3 { color: var(--mute); }
.compare ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.compare li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 500; padding: 12px 16px; border-radius: 14px; }
.compare .old li { background: var(--white); color: var(--mute); }
.compare .new li { background: rgba(255,255,255,0.08); font-weight: 600; }
.mark-x, .mark-tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.mark-x { background: var(--cloud); color: var(--mute); border: 2px solid var(--line); }
.mark-tick { background: var(--lime); color: var(--ink); border: 2px solid var(--lime); }
.problem-close { margin-top: 38px; font-size: 20px; font-weight: 600; text-align: center; }

/* ---------- How it works ---------- */
.how { background: var(--cloud); border-radius: 36px; padding: 90px 0; }
.how .wrap { max-width: 1180px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.step { background: var(--white); border-radius: 24px; padding: 30px; position: relative; }
.step .n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800;
}
.step h3 { font-size: 21px; font-weight: 700; margin-top: 18px; letter-spacing: -0.01em; }
.step p { margin-top: 8px; font-size: 15.5px; color: var(--mute); text-wrap: pretty; }

/* ---------- Feature sections ---------- */
.feature { padding: 110px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-grid.flip .fig { order: -1; }
.feature .who-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--lime);
  border: 1.5px solid var(--ink);
}
.feature h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.06; margin-top: 20px; text-wrap: balance; }
.feature p.lead { margin-top: 14px; font-size: 17.5px; color: var(--mute); max-width: 46ch; text-wrap: pretty; }
.feat-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  background: var(--cloud);
  border-radius: 16px;
  padding: 14px 18px;
}
.feat-list .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* manager figure */
.fig { position: relative; }
.fig .card { position: relative; }
.payrow { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1.5px solid var(--cloud); font-size: 14px; }
.payrow:last-of-type { border-bottom: none; }
.payrow .who { font-weight: 700; display: flex; align-items: center; gap: 10px; }
.payrow .amt { font-weight: 700; font-variant-numeric: tabular-nums; }
.pay-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1.5px solid var(--cloud); }
.pay-foot span { font-size: 13.5px; color: var(--mute); font-weight: 600; }
.pay-foot .approve { background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 100px; }

/* creator section (dark) */
.creator-sec { background: var(--ink); color: var(--white); border-radius: 36px; padding: 56px 0 64px; }
.creator-sec .who-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  margin-bottom: 32px;
}
.creator-sec p.lead { color: rgba(255,255,255,0.6); }
.creator-sec .feat-list li { background: rgba(255,255,255,0.08); }
.creator-sec .feat-list .tick { border-color: var(--lime); }
.dash { background: #1B1B22; border: 2px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 26px 28px; box-shadow: 8px 8px 0 var(--lime); }
.dash .money { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.dash .money small { font-size: 16px; font-weight: 600; color: var(--lime); margin-left: 8px; }
.prog { margin-top: 18px; }
.prog .prog-head { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.prog .bar { height: 10px; background: rgba(255,255,255,0.12); border-radius: 100px; margin-top: 8px; overflow: hidden; }
.prog .bar i { display: block; height: 100%; width: 68%; background: var(--lime); border-radius: 100px; }
.dash .next {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14.5px; font-weight: 600;
}
.dash .next .submit { background: var(--lime); color: var(--ink); font-size: 13px; font-weight: 800; padding: 8px 18px; border-radius: 100px; }

/* ---------- Credibility ---------- */
.proof { padding: 110px 0 90px; text-align: center; }
.proof .avatars { display: flex; justify-content: center; margin-top: 30px; }
.proof .ava { width: 44px; height: 44px; font-size: 14px; margin: 0 -6px; }
.proof blockquote {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 760px;
  margin: 30px auto 0;
  text-wrap: balance;
}
.proof .attr { margin-top: 20px; font-size: 15px; color: var(--mute); font-weight: 500; }
.proof .attr b { color: var(--ink); }
.proof .origin { max-width: 52ch; margin: 40px auto 0; font-size: 17px; color: var(--mute); text-wrap: pretty; }

/* ---------- Testimonials ---------- */
.testis { padding: 0 0 110px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.testi { background: var(--cloud); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.testi p.quote { font-size: 16.5px; font-weight: 500; line-height: 1.5; text-wrap: pretty; flex: 1; }
.testi .person { display: flex; align-items: center; gap: 12px; }
.testi .person .meta { font-size: 13.5px; line-height: 1.35; }
.testi .person .meta b { display: block; font-size: 14.5px; }
.testi .person .meta span { color: var(--mute); }

/* ---------- Pricing ---------- */
.pricing { background: var(--cloud); border-radius: 36px; padding: 90px 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; align-items: stretch; }
.plan {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.plan:not(.hot):hover { border-color: var(--ink); }
.plan.hot { border-color: var(--ink); box-shadow: 8px 8px 0 var(--lime); }
.plan .pop-chip {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan h3 { font-size: 19px; font-weight: 700; }
.plan .price { margin-top: 14px; font-size: 42px; font-weight: 800; letter-spacing: -0.02em; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--mute); letter-spacing: 0; }
.plan .for { margin-top: 4px; font-size: 14px; color: var(--mute); font-weight: 500; }
.plan ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; font-weight: 500; }
.plan li::before { content: "✓"; font-weight: 800; color: var(--lime-deep); }
.plan .btn { justify-content: center; }
.price-note { text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--mute); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; }
.faq-cols { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.15s ease;
}
details:hover { border-color: var(--ink); }
details[open] { border-color: var(--ink); box-shadow: 5px 5px 0 var(--lime); }
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker { display: none; }
summary .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
details[open] summary .plus { transform: rotate(45deg); background: var(--lime); }
details .a { padding: 0 24px 20px; font-size: 15.5px; color: var(--mute); text-wrap: pretty; }
details .a b { color: var(--ink); font-weight: 600; }

/* ---------- Final CTA ---------- */
.final { background: var(--lime); border-top: 2px solid var(--ink); padding: 110px 0; text-align: center; }
.final h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.final h2 span.line { display: block; }
.final p { margin-top: 18px; font-size: 18px; font-weight: 500; color: rgba(18,18,23,0.7); }
.final-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 36px; }
.final .btn-ghost { border-color: rgba(18,18,23,0.35); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--white); padding: 64px 0 72px; }
.foot { display: flex; justify-content: space-between; align-items: center; }
.foot .wordmark { color: var(--white); }
.foot .wordmark .spark { border-color: var(--white); }
.foot-links { display: flex; gap: 28px; }
.foot-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.15s ease; }
.foot-links a:hover { color: var(--lime); }
.fine { margin-top: 30px; font-size: 13px; color: rgba(255,255,255,0.45); }
.fine .lime { color: var(--lime); font-weight: 600; }

@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .final h2 { font-size: 42px; }
  .compare, .steps, .feature-grid, .testi-grid, .price-grid { grid-template-columns: 1fr; }
  .feature-grid.flip .fig { order: 0; }
  .nav-links a.plain { display: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }

  /* nav: compact CTA + hamburger, links move into the sheet menu */
  header { padding: 12px 0; background: rgba(255,255,255,0.88); border-bottom: 1.5px solid var(--line); }
  .nav { gap: 10px; }
  .wordmark { font-size: 20px; }
  .wordmark .spark { width: 11px; height: 11px; }
  .nav-links { gap: 8px; }
  .btn { font-size: 16px; padding: 14px 26px; min-height: 48px; justify-content: center; }
  .nav-links .btn { font-size: 14px; padding: 9px 18px; min-height: 40px; }
  .btn-login { display: none; }

  .burger {
    display: flex;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
  }
  .burger:active { border-color: var(--ink); }
  .burger i { display: block; width: 16px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  body.menu-open .burger i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.menu-open .burger i:nth-child(2) { opacity: 0; }
  body.menu-open .burger i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .menu {
    position: absolute;
    left: 12px; right: 12px;
    top: calc(100% + 10px);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 22px;
    box-shadow: 6px 6px 0 rgba(18,18,23,0.92);
    padding: 10px;
    flex-direction: column;
  }
  body.menu-open .menu { display: flex; }
  .menu a.item {
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu a.item:active { background: var(--cloud); }
  .menu a.item .arr { color: var(--mute); font-weight: 500; }
  .menu .menu-cta { margin: 8px 6px 6px; display: flex; flex-direction: column; gap: 8px; }
  .menu .btn-block { display: flex; width: 100%; }

  /* hero: keep the 20px side gutter (.hero and .wrap share the div, so the
     shorthand must restate it) */
  .hero { padding: 36px 20px 64px; gap: 0; }
  .kicker { display: inline-block; line-height: 1.45; font-size: 12.5px; padding: 7px 16px; text-align: center; text-wrap: balance; }
  .hero h1 { font-size: clamp(32px, 10.3vw, 40px); line-height: 1.05; margin-top: 18px; }
  .hero p.sub { font-size: 16.5px; margin-top: 16px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-ctas .btn { width: 100%; }

  /* hero collage: two overlapping stacked cards, trimmed to fit */
  .collage { min-height: 0; margin-top: 40px; padding-top: 28px; }
  .card { border-radius: 20px; box-shadow: 5px 5px 0 rgba(18,18,23,0.92); }
  .mgr-card { position: relative; top: auto; left: auto; right: auto; z-index: 1; margin-right: 22px; padding: 18px 18px 14px; animation: none; }
  .card-head h4 { font-size: 15px; white-space: nowrap; }
  .chip { font-size: 11.5px; padding: 3px 11px; white-space: nowrap; }
  .roster-row { gap: 10px; padding: 10px 0; font-size: 13px; }
  .mgr-card .roster-row:nth-last-child(1) { display: none; }
  .mgr-card .roster-row:nth-last-child(2) { border-bottom: none; }
  .ava { width: 28px; height: 28px; font-size: 10px; }
  .creator-card {
    position: relative;
    bottom: auto; right: auto; left: auto;
    z-index: 2;
    margin: -14px 0 0 22px;
    border-radius: 20px;
    padding: 20px 20px 16px;
    box-shadow: 5px 5px 0 var(--lime);
    animation: none;
  }
  .creator-card .money { font-size: 36px; }
  .creator-card .money small { font-size: 14px; margin-left: 7px; }
  .lb { margin-top: 12px; padding-top: 8px; }
  .lb-row { font-size: 13px; gap: 9px; padding: 5px 0; }
  .lb .lb-row:nth-child(2) { display: none; }
  .float-chip { font-size: 13px; padding: 8px 15px; z-index: 3; }
  .float-chip.payout { top: 0; right: 0; }
  .float-chip.rank { display: none; }

  /* lime strip: auto-scrolling ticker */
  .strip { padding: 12px 0; }
  .strip-inner {
    max-width: none;
    margin: 0;
    padding: 0 0 0 32px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
    gap: 32px;
    font-size: 14px;
  }
  .strip-inner span { white-space: nowrap; }
  .strip-inner .dup { display: flex; }

  /* sections */
  h2.display { font-size: clamp(28px, 8.5vw, 33px); line-height: 1.08; margin-top: 16px; }
  .strike { font-size: 0.85em; }
  .problem, .feature, .faq { padding: 64px 0; }
  .proof { padding: 64px 0 52px; }
  .testis { padding: 0 0 64px; }
  .compare { margin-top: 30px; gap: 16px; }
  .compare .col { padding: 24px 22px; border-radius: 22px; }
  .compare h3 { font-size: 20px; }
  .compare li { font-size: 14.5px; padding: 11px 13px; border-radius: 13px; gap: 10px; }
  .problem-close { font-size: 17px; margin-top: 28px; text-wrap: balance; }

  /* inset panels align at the 20px gutter */
  .how, .pricing, .creator-sec { margin: 0 20px; border-radius: 28px; padding: 48px 0; }

  /* steps: number beside text */
  .steps { margin-top: 30px; gap: 14px; }
  .step {
    padding: 22px;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .step .n { width: 38px; height: 38px; font-size: 16px; grid-row: 1 / span 2; }
  .step h3 { margin-top: 0; font-size: 18px; }
  .step p { grid-column: 2; margin-top: 5px; font-size: 14.5px; }

  /* feature sections */
  .feature-grid { gap: 0; }
  .fig { margin-top: 30px; }
  .feature h2, .creator-sec h2 { font-size: clamp(26px, 8vw, 31px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; margin-top: 16px; text-wrap: balance; }
  .feature p.lead { font-size: 15.5px; margin-top: 12px; }
  .feat-list { margin-top: 20px; gap: 10px; }
  .feat-list li { font-size: 15px; padding: 13px 16px; border-radius: 15px; gap: 11px; }
  .feat-list .tick { width: 21px; height: 21px; font-size: 11px; }
  .payrow { font-size: 13.5px; padding: 10px 0; }
  .pay-foot { gap: 10px; margin-top: 12px; padding-top: 12px; }
  .pay-foot span { font-size: 12.5px; }
  .pay-foot .approve { font-size: 12.5px; padding: 8px 16px; flex-shrink: 0; white-space: nowrap; }
  .creator-sec .who-chip { margin-bottom: 0; }
  .dash { padding: 20px; border-radius: 20px; box-shadow: 6px 6px 0 var(--lime); margin-right: 6px; }
  .dash .money { font-size: 38px; }
  .dash .next { margin-top: 16px; border-radius: 14px; padding: 12px 14px; font-size: 13.5px; gap: 10px; }
  .dash .next .submit { font-size: 12.5px; padding: 8px 15px; flex-shrink: 0; white-space: nowrap; }

  /* proof */
  .proof .avatars { margin-top: 22px; }
  .proof .ava { width: 42px; height: 42px; font-size: 13px; }
  .proof .origin { font-size: 15.5px; margin-top: 24px; }

  /* testimonials: swipeable rail */
  .testi-grid {
    display: flex;
    gap: 14px;
    margin: 28px -20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 8px;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi { flex: 0 0 80%; scroll-snap-align: center; border-radius: 20px; padding: 22px; gap: 16px; }
  .testi p.quote { font-size: 15.5px; }
  .swipe-hint { display: block; margin-top: 10px; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--mute); }

  /* pricing: swipeable rail, most popular leads */
  .price-grid {
    display: flex;
    gap: 14px;
    margin: 16px -20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 18px 20px 8px;
    scrollbar-width: none;
  }
  .price-grid::-webkit-scrollbar { display: none; }
  .price-grid .plan:nth-child(2) { order: -1; }
  .plan { flex: 0 0 82%; border-radius: 20px; padding: 26px 24px; }
  .plan .pop-chip { top: -13px; left: 22px; padding: 3px 13px; font-size: 11.5px; white-space: nowrap; }
  .plan h3 { font-size: 18px; }
  .plan .price { font-size: 36px; margin-top: 10px; }
  .plan .for { font-size: 13.5px; }
  .plan ul { margin: 18px 0 22px; gap: 8px; }
  .plan li { font-size: 14px; }
  .plan .btn { width: 100%; }

  /* faq */
  .faq-cols { margin-top: 28px; gap: 10px; }
  details { border-radius: 16px; }
  summary { font-size: 15px; padding: 15px 18px; gap: 14px; }
  summary .plus { width: 25px; height: 25px; font-size: 14px; }
  details .a { padding: 0 18px 16px; font-size: 14.5px; }

  /* final CTA + footer */
  .final { padding: 64px 0; }
  .final h2 { font-size: clamp(30px, 9.2vw, 36px); line-height: 1.08; }
  .final p { font-size: 16px; margin-top: 14px; }
  .final-ctas { flex-direction: column; gap: 10px; margin-top: 26px; }
  .final-ctas .btn { width: 100%; }
  .btn-big { font-size: 16px; padding: 14px 26px; }
  footer { padding: 44px 0 48px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .foot-links { flex-wrap: wrap; gap: 8px 22px; }
  .foot-links a { font-size: 14px; padding: 4px 0; }
  .fine { margin-top: 26px; font-size: 12.5px; }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .strip-inner { animation: ticker 22s linear infinite; }
}
