/* ==========================================================================
   Zocollab landing
   ========================================================================== */

:root {
  --ink: #141019;
  --paper: #FDF8F1;
  --white: #fff;
  --violet: #6B4BFF;
  --violet-hover: #5636F5;
  --violet-text: #4B2FD6;
  --coral: #FF5A45;
  --coral-strong: #E8422E;
  --coral-text: #C8371F;
  --lime: #C8F24E;
  --sun: #FFD24E;
  --sky: #45C7FF;
  --green: #0E8F6A;
  --green-deep: #0A6F52;

  --text-body: #5A5366;
  --text-muted: #837B90;
  --text-nav: #4A4356;
  --text-placeholder: #9A93A6;

  --line: rgba(20, 16, 25, 0.10);
  --line-strong: rgba(20, 16, 25, 0.12);
  --on-ink-body: rgba(253, 248, 241, 0.72);
  --on-ink-muted: rgba(253, 248, 241, 0.62);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 120px);
}

/* ---- Base --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: var(--violet); text-decoration: none; }
h1, h2, h3, p, ul, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }

::selection { background: var(--lime); color: var(--ink); }
input::placeholder { color: var(--text-placeholder); }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }
.section--ink :focus-visible,
.payouts-panel :focus-visible,
.cta :focus-visible,
.footer :focus-visible { outline-color: var(--lime); }

.container { max-width: 1240px; margin: 0 auto; }

/* ---- Colour helpers ----------------------------------------------------- */

.t-violet { color: var(--violet); }
.t-coral  { color: var(--coral-strong); }
.t-lime   { color: var(--lime); }
.t-sun    { color: var(--sun); }
.t-sky    { color: var(--sky); }
.t-green  { color: var(--green); }

/* ---- Page chrome -------------------------------------------------------- */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left center;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--dot-color, rgba(20, 16, 25, 0.07)) 1px, transparent 1px);
  background-size: var(--dot-size, 30px) var(--dot-size, 30px);
}
.dots--fade {
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.dots--on-ink    { --dot-color: rgba(253, 248, 241, 0.08); --dot-size: 26px; }
.dots--on-violet { --dot-color: rgba(253, 248, 241, 0.14); --dot-size: 32px; }

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.glow--violet { background: radial-gradient(circle, rgba(107, 75, 255, 0.22), rgba(107, 75, 255, 0) 68%); }
.glow--coral  { background: radial-gradient(circle, rgba(255, 90, 69, 0.18), rgba(255, 90, 69, 0) 68%); }
.glow--lime   { background: radial-gradient(circle, rgba(200, 242, 78, 0.16), rgba(200, 242, 78, 0) 68%); }

/* ---- Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(253, 248, 241, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 16, 25, 0.08);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 8px 8px 8px 2px;
  background: var(--violet);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-nav);
}
.nav-links a { color: inherit; transition: color .18s ease; }
.nav-links a:hover { color: var(--ink); }

.btn-nav {
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color .18s ease;
}
.btn-nav:hover { background: var(--violet); color: var(--paper); }

/* ---- Shared type -------------------------------------------------------- */

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 14px;
  text-wrap: balance;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(20, 16, 25, 0.14);
  background: var(--white);
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 242, 78, 0.35);
}
.badge-dot--flat { box-shadow: none; }

.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.check--lime { background: var(--lime); color: var(--ink); }
.check--lg { width: 24px; height: 24px; border-radius: 8px; }

/* ---- Buttons ------------------------------------------------------------ */

.btn-submit {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 14px;
  border: 0;
  background: var(--violet);
  color: var(--white);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn-submit:hover { background: var(--violet-hover); }
.btn-submit--ink { padding: 16px 28px; background: var(--ink); color: var(--paper); }
.btn-submit--ink:hover { background: var(--lime); color: var(--ink); }
.btn-submit:disabled { cursor: progress; opacity: .7; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  --hover-t: transform .18s ease, background-color .18s ease;
  transition: var(--hover-t);
}
.btn-pill .arrow { font-family: var(--font-display); }
.btn-pill--lime { margin-top: 32px; background: var(--lime); color: var(--ink); }
.btn-pill--ink  { margin-top: 30px; background: var(--ink); color: var(--paper); }
.btn-pill--ink:hover { background: var(--violet); color: var(--paper); }

/* Lift on hover only where hover is real (no sticky lifts on touch). */
@media (hover: hover) {
  .btn-submit:hover,
  .btn-pill:hover,
  .btn-accept:hover { transform: translateY(-2px); }
  .btn-submit:active { transform: translateY(0); }
}

/* ---- Waitlist forms ----------------------------------------------------- */

.waitlist-form { max-width: 520px; }

.form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.field {
  flex: 1 1 200px;
  min-width: 0;
  font-family: inherit;
  font-size: 16px; /* >= 16px keeps iOS from zooming on focus */
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(20, 16, 25, 0.16);
  background: var(--white);
  color: var(--ink);
}
.field--paper { padding: 16px 18px; border: 0; background: var(--paper); }

.form-success {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.form-success:focus { outline: none; }
.form-success--lg {
  justify-content: center;
  padding: 18px 24px;
  border-radius: 16px;
  text-align: left;
}

/* ---- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 104px) var(--gutter) clamp(56px, 6vw, 96px);
}
.hero-glow-a { top: -240px; right: -160px; width: 620px; height: 620px; }
.hero-glow-b { bottom: -300px; left: -180px; width: 560px; height: 560px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-top: 20px;
  text-wrap: balance;
}

.hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--text-body);
  max-width: 46ch;
  margin-top: 22px;
  text-wrap: pretty;
}

.hero-form { margin-top: 30px; }

.hero-note {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero mockup cards */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 0;
}

/* Rotation lives in `transform`; scroll parallax feeds --parallax and the
   reveal animation uses `translate`, so the three never overwrite each other. */
.creator-card,
.brief-card {
  --parallax: 0px;
  border-radius: 22px;
  transform: translateY(var(--parallax)) rotate(var(--tilt));
}

.creator-card {
  --tilt: -1.8deg;
  max-width: 420px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -34px rgba(20, 16, 25, 0.45);
}
.creator-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #EFE8DE;
}
.creator-meta { min-width: 0; }
.creator-handle { font-weight: 700; font-size: 17px; }
.creator-sub { font-size: 13.5px; color: var(--text-muted); }
.verified {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(14, 143, 106, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.chips--dark { gap: 8px; }
.chip {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
}
.chip--violet  { background: rgba(107, 75, 255, 0.12); color: var(--violet-text); }
.chip--coral   { background: rgba(255, 90, 69, 0.12); color: var(--coral-text); }
.chip--neutral { background: rgba(20, 16, 25, 0.07); color: var(--text-nav); }
.chip--ghost   { background: rgba(253, 248, 241, 0.12); }

.rate-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(20, 16, 25, 0.16);
}
.rate-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.rate-value {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.brief-card {
  --tilt: 2.2deg;
  width: 92%;
  max-width: 400px;
  margin-left: auto;
  padding: 22px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 34px 80px -30px rgba(20, 16, 25, 0.6);
}
.brief-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.brief-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.brief-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.brief-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.btn-accept,
.btn-counter {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
}
.btn-accept {
  flex: 1 1 auto;
  font-weight: 700;
  border: 0;
  background: var(--lime);
  color: var(--ink);
  transition: transform .18s ease;
}
.btn-counter {
  font-weight: 600;
  border: 1px solid rgba(253, 248, 241, 0.28);
  background: transparent;
  color: var(--paper);
  transition: background-color .18s ease;
}
.btn-counter:hover { background: rgba(253, 248, 241, 0.1); }

.sticker {
  position: absolute;
  right: 4%;
  top: 42%;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 10px 15px;
  border-radius: 999px;
  transform: rotate(-9deg);
  box-shadow: 0 14px 30px -14px rgba(20, 16, 25, 0.5);
  animation: zc-bob 5.5s ease-in-out infinite;
}

@keyframes zc-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* ---- Ticker ------------------------------------------------------------- */

.ticker {
  background: var(--violet);
  color: var(--paper);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 16, 25, 0.1);
  border-bottom: 1px solid rgba(20, 16, 25, 0.1);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: zc-marquee 34s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}
.ticker-star { color: var(--lime); }

@keyframes zc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sections ----------------------------------------------------------- */

.section {
  position: relative;
  padding: var(--section-y) var(--gutter);
}
.section--ink {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

/* How it works */

.how-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.how-title {
  font-size: clamp(34px, 5vw, 64px);
  max-width: 18ch;
}
.how-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 34ch;
  margin-left: auto;
  text-wrap: pretty;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  --hover-t: transform .3s var(--ease-out), box-shadow .3s ease;
  transition: var(--hover-t);
}
@media (hover: hover) {
  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -30px rgba(20, 16, 25, 0.4);
  }
}
.step-bar { height: 7px; background: var(--accent); }
.step-body { padding: 26px 24px 30px; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-text);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.step-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  margin-top: 10px;
  text-wrap: pretty;
}

/* Split layouts (creators / brands) */

.split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split-title { font-size: clamp(34px, 5vw, 62px); }
.split-lede {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 44ch;
  margin-top: 20px;
  text-wrap: pretty;
}
.split-lede--on-ink { color: var(--on-ink-body); }

.photo-frame { position: relative; }
.photo-outline {
  position: absolute;
  border-radius: 22px;
  pointer-events: none;
}
.photo-frame--lime .photo-outline   { inset: 16px -16px -16px 16px; border: 1px solid rgba(200, 242, 78, 0.5); }
.photo-frame--violet .photo-outline { inset: 16px 16px -16px -16px; border: 1px solid rgba(107, 75, 255, 0.45); }
.photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  background: #211B2B;
}
.photo--light { background: #EFE8DE; }
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Creators */

.creators-glow { top: -160px; left: -120px; width: 520px; height: 520px; }

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16.5px;
  line-height: 1.45;
}
.checklist strong { font-weight: 700; }

/* Brands */

.brands { overflow: hidden; }
.brands-glow {
  bottom: -200px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(107, 75, 255, 0.16), rgba(107, 75, 255, 0) 68%);
}
.brands-copy  { order: 2; }
.brands-photo { order: 1; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 14px;
  margin-top: 30px;
}
.feature {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 18px;
  background: var(--white);
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.feature-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  margin-top: 7px;
}

/* ---- Payouts ------------------------------------------------------------ */

.payouts { padding: 0 var(--gutter) var(--section-y); }

.payouts-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 68px);
}

.payouts-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.payouts-title { font-size: clamp(32px, 4.4vw, 56px); }
.payouts-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-ink-body);
  max-width: 42ch;
  margin-top: 18px;
  text-wrap: pretty;
}

.payout-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(253, 248, 241, 0.18);
}
.payout-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.payout-label {
  font-size: 13.5px;
  color: var(--on-ink-muted);
  font-weight: 500;
  margin-top: 4px;
}

.receipt {
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.6);
}
.receipt-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.receipt-rows {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  font-size: 15.5px;
}
.receipt-rows > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.receipt-rows dt { color: var(--text-muted); }
.receipt-rows dd {
  margin-left: auto;
  font-weight: 600;
  text-align: right;
}
.receipt-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(20, 16, 25, 0.2);
}
.receipt-total-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.receipt-total-value {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
}
.receipt-note {
  margin-top: 16px;
  background: rgba(14, 143, 106, 0.12);
  color: var(--green-deep);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 12px;
}

/* ---- Waitlist CTA ------------------------------------------------------- */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--violet);
  color: var(--paper);
  padding: clamp(64px, 8vw, 128px) var(--gutter);
}
.cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.badge--on-violet {
  background: transparent;
  border-color: rgba(253, 248, 241, 0.35);
  padding: 7px 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 20px;
  text-wrap: balance;
}
.cta-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(253, 248, 241, 0.82);
  max-width: 48ch;
  margin: 20px auto 0;
  text-wrap: pretty;
}
.cta-form {
  max-width: 540px;
  margin: 34px auto 0;
}

/* ---- Footer ------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(44px, 5vw, 72px) var(--gutter) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 36px;
}
.brand--footer { margin-right: 0; color: var(--paper); }
.brand--footer .brand-mark { width: 24px; height: 24px; background: var(--lime); }
.brand--footer .brand-name { font-size: 20px; }
.footer-tagline {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(253, 248, 241, 0.6);
  margin-top: 14px;
  max-width: 30ch;
}
.footer-heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 248, 241, 0.45);
}
.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  font-size: 15px;
}
.footer-links a {
  justify-self: start;
  color: rgba(253, 248, 241, 0.82);
  transition: color .18s ease;
}
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 248, 241, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(253, 248, 241, 0.5);
}
.footer-bottom-right { margin-left: auto; }

/* ---- Scroll reveal ------------------------------------------------------ */
/* `.js` is set in <head> so hidden-until-revealed never applies without JS. */

.js [data-reveal] {
  opacity: 0;
  translate: 0 var(--reveal-dist, 36px);
  transition:
    opacity .7s var(--ease-out) var(--reveal-delay, 0s),
    translate .85s var(--ease-out) var(--reveal-delay, 0s),
    var(--hover-t, opacity 0s);
}
.js [data-reveal].is-revealed { opacity: 1; translate: 0 0; }
[data-motion="subtle"] { --reveal-dist: 14px; }

[data-motion="off"] [data-reveal] { opacity: 1; translate: none; }
[data-motion="off"] .ticker-track,
[data-motion="off"] .sticker { animation: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; translate: none; }
  .ticker-track,
  .sticker { animation: none; }
}

/* ---- Responsive --------------------------------------------------------- */

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* Tablet and below: headline copy sits under the title instead of floating right. */
@media (max-width: 720px) {
  .how-lede { margin-left: 0; }
  .brands-photo { max-width: 520px; }
  .photo-frame--lime { max-width: 520px; }
}

/* Phones */
@media (max-width: 560px) {
  :root { --gutter: 20px; }

  .hero-grid { gap: 44px; }

  /* Full-width, thumb-friendly form controls */
  .form-fields .field,
  .form-fields .btn-submit { flex: 1 1 100%; }
  .form-success { padding: 15px 18px; font-size: 15px; }
  .form-success--lg { justify-content: flex-start; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .stat-num { font-size: clamp(22px, 7vw, 26px); }

  .hero-visual { padding: 4px 6px 0; }
  .creator-card { padding: 18px; }
  .creator-card-head { gap: 12px; }
  .avatar { width: 50px; height: 50px; }
  .brief-card { width: 94%; padding: 20px; }
  .brief-title { font-size: 23px; }
  /* Tuck the sticker under the brief card's bottom-left corner so it never covers the chips. */
  .sticker {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    align-self: flex-start;
    margin: -30px 0 0 4px;
    font-size: 14px;
    padding: 9px 13px;
  }

  .ticker { padding: 13px 0; }
  .ticker-group { gap: 24px; padding-right: 24px; }

  .step-body { padding: 22px 20px 26px; }
  .step-num { font-size: 48px; }
  .step-title { font-size: 23px; }

  .split-lede,
  .how-lede,
  .payouts-lede { font-size: 16.5px; }
  .checklist li { font-size: 16px; }

  /* Keep the offset outline inside the gutter */
  .photo-frame--lime .photo-outline   { inset: 12px -12px -12px 12px; }
  .photo-frame--violet .photo-outline { inset: 12px 12px -12px -12px; }

  .btn-pill { width: 100%; justify-content: center; }

  .payouts { padding-left: 12px; padding-right: 12px; }
  .payouts-panel { border-radius: 22px; padding: 32px 20px; }
  .payout-stats { gap: 22px 28px; }
  .receipt { padding: 22px 18px; }
  .receipt-rows { font-size: 15px; }
  .receipt-total-value { font-size: 34px; }

  .cta-title { font-size: clamp(36px, 11vw, 56px); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom-right { margin-left: 0; }
}

/* Very small phones */
@media (max-width: 380px) {
  .nav { gap: 12px; }
  .brand-name { font-size: 19px; }
  .btn-nav { padding: 10px 14px; font-size: 13px; }
  .verified { display: none; }
  .brief-actions { flex-wrap: wrap; }
  .btn-counter { flex: 1 1 auto; }
}
