:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-2: #f4f2ee;
  --ink: #141313;
  --ink-soft: #3c3a36;
  --muted: #706c63;
  --muted-2: #9b968a;
  --line: #e9e6df;
  --line-strong: #d9d5cc;
  --accent: #4f46e5;
  --accent-strong: #4338ca;
  --accent-soft: #eef0ff;
  --success: #188a4c;
  --success-soft: #e8f7ef;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(20, 19, 19, 0.05);
  --shadow-md: 0 18px 44px -22px rgba(20, 19, 19, 0.22);
  --shadow-lg: 0 34px 80px -30px rgba(20, 19, 19, 0.32);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 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) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }
.h-display {
  font-size: clamp(34px, 5vw, 60px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.04;
}
.h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.lead { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 13px 24px; font-size: 15px; font-weight: 600;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: background .16s, border-color .16s, color .16s, transform .1s, box-shadow .16s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }
.btn-sm { padding: 9px 17px; font-size: 13.5px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #2a2929; box-shadow: var(--shadow-sm); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-strong); box-shadow: 0 8px 22px -8px rgba(79, 70, 229, .55); }

.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2f1ee; }

.btn-white-outline { background: transparent; border-color: rgba(255,255,255,.32); color: #fff; }
.btn-white-outline:hover { border-color: #fff; }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--muted);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.active { background: var(--success-soft); color: var(--success); border-color: #cfeede; }
.badge.active .dot { background: var(--success); }
.badge.accent { background: var(--accent-soft); color: var(--accent); border-color: #dcd9ff; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px;
}
.chip svg { width: 13px; height: 13px; }

/* ---------- Navbar ---------- */
header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 249, 247, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
header.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px;
}
.logo { font-weight: 800; font-size: 18px; letter-spacing: .06em; }
.logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 550; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-user { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 80px; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -140px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 70, 229, .09), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-title { font-size: clamp(40px, 5.6vw, 68px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 26px; }
.hero-sub { color: var(--muted); font-size: 19px; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 26px; display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--muted-2);
}
.hero-note svg { width: 16px; height: 16px; color: var(--accent); }

/* floating hero mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mk-campaign {
  width: 100%; max-width: 360px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 22px; position: relative; z-index: 2;
}
.mk-campaign .art { border-radius: 14px; overflow: hidden; margin-bottom: 16px; }
.mk-campaign .art svg { width: 100%; height: auto; display: block; }
.mk-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mk-head .cat { font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--accent); text-transform: uppercase; }
.mk-platforms { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.mk-stat-row { display: flex; gap: 22px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.mk-stat { display: flex; flex-direction: column; }
.mk-stat .k { font-size: 11.5px; color: var(--muted-2); font-weight: 600; letter-spacing: .02em; }
.mk-stat .v { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }

/* floating accents around hero mockup */
.float-chip {
  position: absolute; z-index: 3;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 650;
  animation: floaty 6s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; color: var(--accent); }
.float-chip.f1 { top: -22px; right: -6px; }
.float-chip.f2 { bottom: 24px; left: -26px; animation-delay: 1.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Sections (shared) ---------- */
.sec { padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head .lead { margin-top: 16px; }

/* ---------- Live campaigns ---------- */
.live { padding: 72px 0 96px; }
.campaign-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 820px) { .campaign-grid { grid-template-columns: 1fr; } }

.cc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .25s, transform .25s;
}
.cc:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cc-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.cc-media svg { width: 100%; height: 100%; display: block; }
.cc-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.cc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cc-top h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; }
.cc-platforms { display: flex; gap: 6px; flex-wrap: wrap; }
.cc-stats { display: flex; gap: 30px; }
.cc-stats .k { display: block; font-size: 12px; color: var(--muted-2); font-weight: 600; margin-bottom: 3px; }
.cc-stats .v { font-size: 16px; font-weight: 750; }
.cc-progress { display: flex; flex-direction: column; gap: 9px; }
.cc-progress-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.cc-progress-meta b { color: var(--ink); font-weight: 700; }
.cc-foot { margin-top: auto; }

.progress { height: 9px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #8b7cff);
  transition: width 1.1s cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Story (alternating) ---------- */
.story { padding: 96px 0; }
.story:nth-of-type(even) { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-grid.flip .story-visual { order: -1; }
.story-copy h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px; }
.story-copy p { color: var(--muted); font-size: 17px; max-width: 480px; }
.story-visual { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-grid.flip .story-visual { order: 0; }
}

/* ---- mockup panels (visuals) ---- */
.mk {
  width: 100%; max-width: 400px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-md);
  padding: 22px;
}
.mk.dark { background: #16161a; border-color: #26262c; color: #f5f4f2; }
.mk-title { font-size: 13px; font-weight: 750; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; }
.mk-title .win { display: flex; gap: 5px; }
.mk-title .win i { width: 9px; height: 9px; border-radius: 50%; background: #333; display: block; }
.mk-field { margin-bottom: 12px; }
.mk-field label { display: block; font-size: 11px; font-weight: 650; color: var(--muted-2); margin-bottom: 5px; letter-spacing: .02em; }
.mk-input {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 9px; padding: 9px 12px;
  font-size: 13px; color: var(--muted); background: var(--surface-2);
}
.mk.dark .mk-input { border-color: #2e2e34; background: #1d1d22; color: #9a9aa2; }
.mk-input .fill { color: var(--ink); font-weight: 600; }
.mk.dark .mk-input .fill { color: #f5f4f2; }
.mk-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mk-tag { font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.mk.dark .mk-tag { border-color: #2e2e34; background: #1d1d22; }
.mk-tag.on { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.mk.dark .mk-tag.on { background: #23233c; }
.mk-btn { margin-top: 16px; }

/* creator submission cards visual */
.creator-cards { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 400px; }
.creator-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-sm);
}
.creator-card .c-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.creator-card .c-body { flex: 1; min-width: 0; }
.creator-card .c-body .u { font-weight: 700; font-size: 14px; }
.creator-card .c-body .p { font-size: 12.5px; color: var(--muted); }
.creator-card .st { font-size: 11.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.st.submitted { background: #eef1ff; color: var(--accent); }
.st.approved { background: var(--success-soft); color: var(--success); }
.st.tracking { background: #fff4e5; color: #b45309; }

/* analytics panel visual */
.analytics { width: 100%; max-width: 400px; }
.analytics .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.ana-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.ana-card .k { font-size: 11.5px; color: var(--muted-2); font-weight: 600; }
.ana-card .v { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding-top: 8px; }
.bars .bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--accent), #8b7cff); opacity: .85; transform-origin: bottom; animation: grow 1s cubic-bezier(.22,1,.36,1) both; }
.bars .bar:nth-child(1) { height: 30%; animation-delay: .05s; }
.bars .bar:nth-child(2) { height: 45%; animation-delay: .12s; }
.bars .bar:nth-child(3) { height: 40%; animation-delay: .19s; }
.bars .bar:nth-child(4) { height: 65%; animation-delay: .26s; }
.bars .bar:nth-child(5) { height: 55%; animation-delay: .33s; }
.bars .bar:nth-child(6) { height: 80%; animation-delay: .4s; }
.bars .bar:nth-child(7) { height: 70%; animation-delay: .47s; }
.bars .bar:nth-child(8) { height: 95%; animation-delay: .54s; }
@keyframes grow { from { transform: scaleY(0); } }

/* ---------- Clipper journey ---------- */
.journey { padding: 96px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.jstep { display: grid; grid-template-columns: 72px 1fr; gap: 24px; position: relative; padding-bottom: 40px; }
.jstep:last-child { padding-bottom: 0; }
.jstep:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 54px; bottom: 0; width: 2px;
  background: linear-gradient(var(--line-strong), var(--line));
}
.jstep .num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--accent); z-index: 1;
}
.jstep h3 { font-size: 20px; font-weight: 750; letter-spacing: -0.01em; margin-bottom: 6px; }
.jstep p { color: var(--muted); font-size: 15px; max-width: 520px; }
.journey-cta { margin-top: 44px; }

/* ---------- Brand CTA band ---------- */
.cta-band { padding: 0 0 96px; }
.cta-band .inner {
  background: var(--ink); color: #fff; border-radius: 28px;
  padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band .inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -40%, rgba(139, 124, 255, .35), transparent 70%);
}
.cta-band h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 16px; position: relative; }
.cta-band p { color: #b7b4ae; font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Forms / fields ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 650; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 12px 15px; font-size: 15px; font-family: inherit; color: var(--ink);
  background: var(--surface); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { resize: vertical; min-height: 96px; }
.field .hint { font-size: 12px; color: var(--muted-2); }

/* ---------- Auth pages ---------- */
.auth-wrap { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
.auth-panel { width: 100%; max-width: 420px; }
.auth-logo { text-align: center; margin-bottom: 34px; }
.auth-logo .logo { font-size: 22px; letter-spacing: .08em; }
.auth-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-md);
}
.auth-card h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; }
.auth-card .sub { color: var(--muted); font-size: 14.5px; margin: 8px 0 26px; }
.auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--muted); }
.auth-switch a { color: var(--accent); font-weight: 650; }

/* choice cards (signup step 1) */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.choice {
  text-align: left; border: 1.5px solid var(--line-strong); border-radius: 18px;
  padding: 24px; background: var(--surface); cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.choice:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.choice .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.choice .ic svg { width: 22px; height: 22px; }
.choice h3 { font-size: 17px; font-weight: 750; margin-bottom: 6px; }
.choice p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 480px) { .choice-grid { grid-template-columns: 1fr; } }

/* platform picks (signup step 3) */
.pick-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.pick {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line-strong); border-radius: 999px;
  padding: 11px 18px; font-size: 14.5px; font-weight: 650; cursor: pointer;
  background: var(--surface); transition: border-color .16s, background .16s, color .16s;
}
.pick svg { width: 16px; height: 16px; }
.pick.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }

/* progress steps indicator (signup) */
.steps-indicator { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.steps-indicator .si {
  height: 5px; flex: 1; border-radius: 999px; background: var(--line); transition: background .3s;
}
.steps-indicator .si.on { background: var(--accent); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13.5px; font-weight: 600; cursor: pointer; margin-bottom: 20px; }
.back-link:hover { color: var(--ink); }

/* ---------- Brands page ---------- */
.brands-hero { padding: 96px 0 72px; position: relative; }
.brands-hero::before {
  content: ""; position: absolute; top: -140px; left: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 70, 229, .09), transparent 65%); pointer-events: none;
}
.process { padding: 72px 0 96px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.process-item { padding: 40px 48px 40px 0; border-top: 1px solid var(--line); }
.process-item .p-num { font-size: 14px; font-weight: 800; color: var(--accent); letter-spacing: .1em; margin-bottom: 12px; }
.process-item h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.process-item p { color: var(--muted); font-size: 15.5px; max-width: 420px; }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } .process-item { padding: 28px 0; } }

/* brand dashboard mockup */
.brand-dash {
  width: 100%; max-width: 460px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-lg); padding: 26px;
}
.brand-dash .bd-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.brand-dash .bd-title { font-size: 15px; font-weight: 750; }
.brand-dash .bd-sub { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }
.bd-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.bd-stat { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.bd-stat .k { font-size: 11.5px; color: var(--muted-2); font-weight: 600; }
.bd-stat .v { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.bd-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.bd-platform { text-align: center; border: 1px solid var(--line); border-radius: 12px; padding: 12px 8px; }
.bd-platform .pname { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.bd-platform .pval { font-size: 15px; font-weight: 800; }

/* ---------- Dashboard (app) ---------- */
.dashboard { display: flex; min-height: calc(100vh - 68px); max-width: 1160px; margin: 0 auto; }
.sidebar {
  width: 224px; flex-shrink: 0; padding: 26px 14px;
  border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px;
  background: var(--surface);
}
.sidebar .logo { padding: 4px 12px 24px; }
.side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  color: var(--muted); font-size: 14px; font-weight: 600; transition: background .12s, color .12s;
}
.side-link svg { flex-shrink: 0; }
.side-link:hover { background: var(--surface-2); color: var(--ink); }
.side-link.on { background: var(--accent-soft); color: var(--accent); }
.sidebar .spacer { flex: 1; }
.sidebar .side-foot { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }

.dash-main { flex: 1; padding: 40px 44px; min-width: 0; }
.dash-head { margin-bottom: 28px; }
.dash-head h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.dash-head p { color: var(--muted); margin-top: 5px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 820px) { .stat-row { grid-template-columns: 1fr; } }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.stat-card .k { font-size: 13px; color: var(--muted-2); font-weight: 600; }
.stat-card .v { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-top: 6px; }

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-hero { display: grid; grid-template-columns: 440px 1fr; gap: 48px; align-items: center; margin: 28px 0 40px; }
.detail-media { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.detail-media svg { width: 100%; height: auto; display: block; }
.detail-info h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
@media (max-width: 860px) { .detail-hero { grid-template-columns: 1fr; gap: 28px; } }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.panel h3 { font-size: 15px; font-weight: 750; margin-bottom: 10px; }
.panel p { color: var(--muted); font-size: 14.5px; }
.panel ul { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.panel li { color: var(--muted); font-size: 14.5px; }
.list-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.list-row:last-child { border-bottom: none; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 19, 19, 0.5); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fade .16s ease;
}
.modal {
  background: var(--surface); border-radius: 24px; width: 100%; max-width: 480px;
  padding: 32px; box-shadow: var(--shadow-lg); animation: pop .2s cubic-bezier(.16,1,.3,1);
  max-height: 90vh; overflow-y: auto;
}
.modal.modal-sm { max-width: 420px; }
.modal h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; }
.modal .lead { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-actions .btn { flex: 1; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }

.success-box { text-align: center; padding: 18px 0; }
.success-box .check {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--success-soft); color: var(--success);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.success-box h3 { font-size: 21px; font-weight: 800; }
.success-box p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 14px;
  padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg);
  transform: translateY(16px); opacity: 0; pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 72px 28px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .logo { font-size: 20px; letter-spacing: .08em; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 260px; margin-top: 14px; }
.footer-col h4 { font-size: 12.5px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-bottom small { color: var(--muted-2); font-size: 13.5px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Responsive nav ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0 56px; }
}

/* ---------- Hero credibility stats ---------- */
.hero-cred {
  margin-top: 30px; display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft);
}
.hero-cred .star { color: var(--accent); }
.hero-stats {
  display: flex; gap: 56px; flex-wrap: wrap; margin-top: 44px;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.hero-stat .v { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.hero-stat .v.big { font-size: 44px; }
.hero-stat .l { color: var(--muted-2); font-size: 13px; margin-top: 8px; max-width: 200px; }

/* ---------- Metric band (1B+) ---------- */
.metric-band { padding: 110px 0; text-align: center; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-value {
  font-size: clamp(80px, 15vw, 170px); font-weight: 800;
  letter-spacing: -0.055em; line-height: .88;
  background: linear-gradient(100deg, var(--ink) 30%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric-label { font-size: 21px; font-weight: 700; margin-top: 14px; letter-spacing: -0.01em; }
.metric-note { color: var(--muted); font-size: 16px; margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }
.metric-meta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Network visual (story section 2) ---------- */
.net-svg { width: 100%; height: auto; display: block; }
.net-svg .flow { stroke: var(--accent); stroke-width: 2; stroke-dasharray: 5 8; stroke-linecap: round; opacity: .55; animation: flowmove 1.15s linear infinite; }
.net-svg .flow.f2 { animation-delay: .35s; }
.net-svg .flow.f3 { animation-delay: .7s; }
@keyframes flowmove { to { stroke-dashoffset: -26; } }
.net-svg text { font-family: var(--font); }
.net-svg .net-title { font-size: 13px; font-weight: 700; fill: var(--ink); }
.net-svg .net-sub { font-size: 11px; font-weight: 600; fill: var(--muted); }

/* ---------- Feed visual (story section 3) ---------- */
.feed-mock { display: flex; gap: 18px; align-items: flex-end; justify-content: center; }
.feed-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feed-phone {
  width: 92px; aspect-ratio: 9 / 16; border-radius: 18px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.feed-phone .play {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.feed-phone .play svg { width: 16px; height: 16px; margin-left: 2px; }
.feed-phone.f1 { background: linear-gradient(160deg, #2a2350, #6f4fe0); transform: translateY(10px); }
.feed-phone.f2 { background: linear-gradient(160deg, #1c1b26, #3c3863); }
.feed-phone.f3 { background: linear-gradient(160deg, #16161a, #4f46e5); transform: translateY(6px); }

/* ---------- Why ClipEth ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; margin-top: 60px; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { padding: 34px 0; border-top: 1px solid var(--line); }
.why-item .w-ic {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.why-item .w-ic svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 19px; font-weight: 750; letter-spacing: -0.01em; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 15px; max-width: 420px; }

/* ---------- Client portal / dashboard ---------- */
.portal { padding: 48px 0 88px; }
.portal-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.portal-top .who { display: flex; align-items: center; gap: 12px; }
.portal-top .who .name { font-weight: 700; font-size: 15px; }
.portal-top .who .role { font-size: 12.5px; color: var(--muted); }
.dash-section-title { font-size: 19px; font-weight: 750; letter-spacing: -0.01em; margin: 40px 0 20px; }
.dash-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .dash-split { grid-template-columns: 1fr; } }

/* ---------- Multi-step form panel (wide) ---------- */
.form-panel-wide { max-width: 560px; margin: 0 auto; }

/* selectable picks (radio/checkbox look) */
.pick::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--line-strong); flex-shrink: 0; transition: border-color .16s, background .16s;
}
.pick.on::before { border-color: var(--accent); background: var(--accent); }
.pick.square::before { border-radius: 4px; }

/* feed phone float */
.feed-phone { animation: floaty 6s ease-in-out infinite; }
.feed-phone.f2 { animation-delay: 1.4s; }
.feed-phone.f3 { animation-delay: 2.8s; }

/* 4-up stat row */
.stat-row.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .stat-row.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stat-row.four { grid-template-columns: 1fr; } }

/* footer 5 columns */
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* footer link as button */
.footer-col .flink {
  display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 12px;
  background: none; border: none; padding: 0; cursor: pointer; text-align: left; font-family: inherit;
}
.footer-col .flink:hover { color: var(--ink); }

/* ---------- Form review / loading / error states ---------- */
.summary-list { display: flex; flex-direction: column; gap: 2px; margin: 18px 0 4px; }
.summary-row {
  display: flex; justify-content: space-between; gap: 18px;
  font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--muted); flex-shrink: 0; }
.summary-row .v { font-weight: 600; text-align: right; overflow-wrap: anywhere; }

.form-error {
  display: none; color: #b3261e; background: #fdecea;
  border: 1px solid #f5c6c3; border-radius: 10px;
  padding: 12px 14px; font-size: 13.5px; margin-top: 14px;
}

.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn.loading { pointer-events: none; }

.turnstile-wrap { margin: 16px 0; min-height: 65px; }


.illustration-label { font-size: 12px; color: var(--muted); margin: 0 0 12px; }

/* ClipEth editorial redesign — all decorative elements remain in their layout cells. */
:root{--bg:#f6f5f0;--surface:#fff;--surface-2:#eeede7;--ink:#191a1b;--muted:#686a66;--muted-2:#70726d;--line:#dedfd6;--accent:#6350e8;--accent-strong:#4d3ac9;--accent-soft:#edeaff;--radius:20px}
body{overflow-x:clip}button,a,input,textarea,select{ -webkit-tap-highlight-color:transparent }a:focus-visible,button:focus-visible,summary:focus-visible,[tabindex]:focus-visible{outline:3px solid var(--accent);outline-offset:5px}button{touch-action:manipulation}
.wrap,.nav-inner,.footer-inner{max-width:1320px;padding-left:48px;padding-right:48px}.nav-inner{height:88px}.logo{font-size:23px;letter-spacing:-1px;display:inline-flex;align-items:center}.logo-mark{font-size:20px;margin-left:7px;color:var(--accent)}header{background:rgba(246,245,240,.94);border-bottom:1px solid var(--line)}.nav-links{gap:32px}.nav-links a{font-size:13px;color:var(--muted);position:relative}.nav-links a[aria-current=page]{color:var(--ink)}.nav-links a[aria-current=page]:after{content:'';position:absolute;left:0;right:0;bottom:-9px;height:2px;background:var(--accent)}.mobile-apply,.menu-toggle{display:none}
.btn{border-radius:8px;padding:17px 24px;font-size:14px;font-weight:600;transition:transform .2s,background .2s,box-shadow .2s}.btn:hover{transform:translateY(-3px)}.btn svg{transition:transform .2s}.btn:hover svg{transform:translateX(3px)}.btn-sm{padding:13px 17px;font-size:12px}.btn-lg{padding:19px 23px;font-size:14px}.btn-outline{border-color:#bfc1b6}.eyebrow{font-size:10px;letter-spacing:.17em;color:var(--muted);margin-bottom:22px}.eyebrow:before{width:7px;height:7px;border-radius:50%;background:var(--accent)}
.hero,.brands-hero{padding:76px 0 90px}.hero:before,.brands-hero:before{display:none}.hero-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:64px;align-items:center}.hero-grid>*{min-width:0}.hero-title{font-size:clamp(60px,7.7vw,110px);font-weight:650;line-height:.96;letter-spacing:-.065em;margin-bottom:30px}.hero-title em{font-style:normal;color:var(--accent)}.hero-sub{font-size:17px;line-height:1.75;max-width:440px;margin-bottom:32px}.hero-cta{gap:10px}.hero-cred{font-size:11px;line-height:1.7;margin-top:28px;max-width:360px;align-items:flex-start;color:var(--muted)}.hero-cred svg{flex-shrink:0;color:var(--accent);margin-top:1px}.brands-hero .hero-title{font-size:clamp(42px,5vw,70px);line-height:1.07;letter-spacing:-.055em}
.distribution-studio{background:#202124;color:#fff;border-radius:20px;padding:26px;box-shadow:0 24px 55px -36px #16171980;isolation:isolate;width:100%;min-width:0}.studio-top{display:flex;align-items:center;gap:8px;color:#d2d2cb;font-size:8px;letter-spacing:.14em}.studio-dot{width:6px;height:6px;border-radius:50%;background:#d8ee99;box-shadow:0 0 14px #d8ee9944}.studio-format{margin-left:auto;color:#93978f}.studio-stage{display:grid;grid-template-columns:minmax(0,1fr) 32px minmax(0,1fr);align-items:center;gap:8px;padding:32px 0}.studio-source{background:#303235;border:1px solid #46484b;border-radius:12px;padding:18px 14px;min-width:0}.studio-source>span{font-size:7px;letter-spacing:.12em;color:#c8cac1;display:block}.studio-source strong{font-size:16px;font-weight:500;line-height:1.4;display:block;margin-top:18px;letter-spacing:-.03em}.waveform{height:65px;display:flex;gap:3px;align-items:center;margin-top:20px}.waveform i{flex:1;height:var(--h);background:#c6d0b0;border-radius:2px;animation:wave-breathe 2s var(--delay) ease-in-out infinite alternate}.studio-connector{color:#b5baaa;display:flex;justify-content:center}.studio-output{background:#cfc6ff;color:#29213d;border-radius:12px;padding:14px 12px;min-width:0;transition:background .3s}.output-top,.output-bottom{display:flex;align-items:center;justify-content:space-between;gap:5px}.output-top{font-size:8px;letter-spacing:.08em}.frame-art{height:120px;display:flex;justify-content:center;align-items:center;gap:6px;overflow:hidden}.frame-art span{display:block;width:22px;height:95px;border:1px solid #6350e8;transform:rotate(28deg);border-radius:30px;transition:transform .5s,background .5s}.frame-art span:nth-child(2){background:#6350e8;height:118px}.frame-art span:nth-child(3){height:70px}.distribution-studio[data-platform=Instagram] .studio-output{background:#e9cdab}.distribution-studio[data-platform=Instagram] .frame-art span{transform:rotate(-28deg)}.distribution-studio[data-platform=YouTube] .studio-output{background:#d8ee99}.distribution-studio[data-platform=YouTube] .frame-art span{transform:rotate(90deg)}.output-caption{font-size:19px;line-height:1.15;letter-spacing:-.045em;font-weight:600}.output-caption em{font-style:normal;opacity:.6}.output-bottom{border-top:1px solid #29213d30;margin-top:18px;padding-top:10px;font-size:5.5px;letter-spacing:.07em}.output-bottom>span:last-child{font-size:14px}.platform-switch{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.platform-switch button{background:transparent;border:1px solid #53554f;border-radius:6px;color:#d4d6cd;cursor:pointer;font-size:10px;padding:12px 8px;display:flex;justify-content:space-between;gap:5px;transition:background .2s,color .2s}.platform-switch button[aria-pressed=true]{background:#e1edbc;border-color:#e1edbc;color:#22271b}.platform-switch button:hover{border-color:#e1edbc}.studio-description{font-size:11px;line-height:1.6;color:#cacdc2;min-height:36px;margin-top:15px}.studio-foot{display:flex;justify-content:space-between;gap:10px;padding-top:18px;margin-top:18px;border-top:1px solid #464842;font-size:6px;color:#a9ada2;letter-spacing:.08em}
@keyframes wave-breathe{from{transform:scaleY(.5)}to{transform:scaleY(1)}}
.metric-band{padding:48px 0;background:#edece5;text-align:left;border-color:var(--line)}.metric-band>.wrap{display:grid;grid-template-columns:auto 1fr 1.2fr;column-gap:30px;align-items:center}.metric-value{font-size:86px;color:var(--ink);background:none;letter-spacing:-.065em;grid-row:span 2}.metric-label{font-size:17px;letter-spacing:-.02em;margin:0}.metric-note{font-size:13px;line-height:1.7;max-width:270px;margin:0;grid-column:3;grid-row:1 / span 2}.metric-meta{justify-content:flex-start;margin:8px 0 0;gap:12px;grid-column:2}.metric-meta .chip{padding:0;background:none;border:0;border-radius:0;font-size:10px;color:var(--muted)}
.workflow-section,.faq-section,.sec{padding:105px 0}.section-intro{display:flex;justify-content:space-between;gap:48px;align-items:flex-end;margin-bottom:48px}.section-intro>p{max-width:340px;font-size:15px;line-height:1.8;color:var(--muted)}.h2{font-size:clamp(32px,4vw,52px);letter-spacing:-.055em;font-weight:600;line-height:1.1}.workflow{display:grid;grid-template-columns:.8fr 1.2fr;border:1px solid var(--line);border-radius:18px;overflow:hidden}.workflow-tabs{padding:25px;background:#eeede7;display:flex;flex-direction:column;justify-content:center}.workflow-tabs button{background:none;text-align:left;border:0;border-bottom:1px solid #d9dbd1;padding:26px 14px;display:flex;align-items:center;gap:18px;font-size:15px;cursor:pointer;color:var(--muted);transition:background .2s,color .2s}.workflow-tabs button>span{font-size:10px;font-variant-numeric:tabular-nums}.workflow-tabs button svg{margin-left:auto;width:16px;flex-shrink:0;opacity:0;transition:opacity .2s}.workflow-tabs button[aria-selected=true]{background:var(--bg);color:var(--ink);border-radius:7px;border-bottom-color:transparent}.workflow-tabs button[aria-selected=true] svg{opacity:1;color:var(--accent)}.workflow-panel{padding:40px;background:#fff;display:grid;grid-template-columns:1fr auto;gap:20px;align-content:space-between;min-height:380px}.workflow-index{grid-column:2;grid-row:1;font-size:70px;line-height:1;letter-spacing:-.06em;color:#e0dced}.workflow-content{grid-column:1;grid-row:1}.workflow-content .eyebrow{font-size:8px}.workflow-content h3{font-size:30px;line-height:1.2;letter-spacing:-.04em;white-space:pre-line;font-weight:600;margin-bottom:18px}.workflow-content p{font-size:13px;color:var(--muted);line-height:1.85;max-width:310px;min-height:96px}.text-link{display:inline-flex;align-items:center;gap:12px;font-size:12px;font-weight:600;margin-top:24px}.text-link svg{width:16px}.workflow-tags{grid-column:1/-1;display:flex;gap:9px;flex-wrap:wrap}.workflow-tags span{font-size:9px;border:1px solid var(--line);padding:5px 10px;border-radius:4px;color:var(--muted)}
.why-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:25px;margin-top:45px}.why-item{padding-top:24px}.why-item .w-ic{background:transparent;border:1px solid #c8c7bf;border-radius:50%;width:40px;height:40px;margin-bottom:35px}.why-item h3{font-size:17px;letter-spacing:-.03em}.why-item p{font-size:12px;line-height:1.8}.sec-head{margin-bottom:30px}.sec-head .h2{max-width:600px}.sec-head.center .h2{margin:auto}.sec-head.center .lead{margin:24px auto 0;max-width:500px;font-size:16px}
.faq-section{padding-top:30px}.faq-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:64px}.faq-list details{border-bottom:1px solid var(--line)}.faq-list summary{padding:23px 0;display:flex;gap:22px;align-items:center;justify-content:space-between;font-size:14px;font-weight:550;list-style:none;cursor:pointer}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary span{font-size:20px;color:var(--accent);transition:transform .2s}.faq-list details[open] summary span{transform:rotate(45deg)}.faq-list details p{font-size:13px;color:var(--muted);line-height:1.9;padding-bottom:25px;max-width:480px}
.creator-statement{padding:32px;background:#e1deed;border-radius:20px;color:#26212e}.statement-top{display:flex;justify-content:space-between;align-items:center;font-size:9px;letter-spacing:.12em}.cut-symbol{height:185px;display:flex;align-items:center;justify-content:center;gap:14px}.cut-symbol span{width:40px;height:120px;background:var(--accent);border-radius:50px;transform:rotate(28deg);transition:transform .4s}.cut-symbol span:nth-child(2){height:160px;background:#b1a2ee}.cut-symbol span:nth-child(3){height:90px;background:#faf9f5}.creator-statement:hover .cut-symbol span{transform:rotate(-15deg)}.creator-statement>p{font-size:clamp(30px,3.4vw,46px);letter-spacing:-.055em;line-height:1.1}.creator-statement>p em{font-style:normal;color:#776999}.statement-bottom{border-top:1px solid #c5bfd4;margin-top:28px;padding-top:20px;font-size:12px;line-height:1.6;color:#625a71}.process{padding:80px 0 100px}.process-grid{gap:30px}.process-item{border-top:1px solid var(--line);padding-top:24px}.process-item .p-num{color:var(--accent);font-size:12px;background:none;width:auto;height:auto;justify-content:flex-start}.process-item h3{font-size:19px;letter-spacing:-.03em}.process-item p{font-size:13px;line-height:1.8}
.cta-band{background:var(--bg);padding:30px 0 90px}.cta-band .inner{background:#242526;color:#fff;border-radius:18px;padding:70px 48px;text-align:center;position:relative;overflow:hidden}.cta-band h2{font-size:clamp(30px,4.4vw,56px);font-weight:500;letter-spacing:-.055em;line-height:1.1;max-width:650px;margin:0 auto 22px}.cta-band p{color:#bcbfb4;font-size:14px;max-width:500px;margin:0 auto 30px}.cta-band .btn-light{background:#e1edbc;color:#22271b}.cta-band .cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}.cta-band>.wrap>.inner:before{display:none}.cta-band>.wrap>h2{color:var(--ink)}footer{background:var(--bg);border-top:1px solid var(--line)}.footer-inner{padding-top:54px}.footer-grid{gap:24px;grid-template-columns:1.7fr repeat(4,1fr)}.footer-brand p{font-size:12px;max-width:180px;margin-top:17px}.footer-col h4{font-size:9px;letter-spacing:.12em;color:var(--muted)}.footer-col a{font-size:12px}.footer-bottom{padding:24px 0}.footer-bottom small{font-size:10px}
.auth-wrap{padding:60px 24px 90px;background:var(--bg)}.auth-card{border-radius:16px;box-shadow:0 15px 40px -30px #191a1b60;border-color:var(--line);padding:36px}.auth-card h1{font-size:30px;letter-spacing:-.045em;line-height:1.15}.auth-card .sub{font-size:13px}.auth-logo{margin-bottom:26px}.field input,.field textarea,.field select{border-radius:7px;background:#fcfcfa;font-size:14px}.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--accent);outline:2px solid #6350e820;outline-offset:1px}.pick{border-radius:8px;font-size:12px}.steps-indicator{gap:6px}.steps-indicator .si{height:3px}.summary-row{font-size:12px}.success-box h3{letter-spacing:-.04em}.back-link{font-size:12px}
@media(min-width:1500px){.hero{padding-top:100px;padding-bottom:110px}}
@media(max-width:1050px){.wrap,.nav-inner,.footer-inner{padding-left:32px;padding-right:32px}.hero-grid{gap:35px}.hero-title{font-size:80px}.hero-sub{font-size:15px}.hero-cta .btn{padding:16px;font-size:12px}.nav-links{gap:20px}.distribution-studio{padding:20px}.studio-stage{gap:4px;grid-template-columns:minmax(0,1fr) 20px minmax(0,1fr)}.studio-source{padding:14px 10px}.studio-source strong{font-size:14px}.workflow-panel{padding:28px;grid-template-columns:1fr}.workflow-index{display:none}.why-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-grid{grid-template-columns:1.6fr repeat(4,1fr);gap:18px}}
@media(max-width:800px){.hero-grid{grid-template-columns:1fr;gap:45px}.hero,.brands-hero{padding:55px 0 64px}.hero-copy{max-width:590px}.hero-title{font-size:clamp(72px,12vw,96px)}.hero-sub{font-size:16px;max-width:480px}.distribution-studio{max-width:560px;margin:auto;padding:28px}.studio-stage{grid-template-columns:minmax(0,1fr) 40px minmax(0,1fr);gap:12px}.studio-source strong{font-size:21px}.studio-source{padding:22px 18px}.frame-art{height:145px}.output-caption{font-size:25px}.nav-links{display:none;position:absolute;left:0;right:0;top:100%;padding:24px 32px;background:var(--bg);border-bottom:1px solid var(--line);box-shadow:0 18px 25px -20px #0005}.nav-links.is-open{display:flex;flex-direction:column;align-items:stretch;gap:0}.nav-links a{padding:15px 0;font-size:16px}.nav-links a[aria-current=page]:after{display:none}.mobile-apply{display:block;color:var(--accent)!important}.menu-toggle{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:42px;height:42px;border:1px solid var(--line);border-radius:7px;background:none;cursor:pointer}.menu-toggle span{width:16px;height:1px;background:var(--ink);transition:transform .2s}.menu-toggle[aria-expanded=true] span:first-child{transform:translateY(3px) rotate(45deg)}.menu-toggle[aria-expanded=true] span:last-child{transform:translateY(-3px) rotate(-45deg)}.nav-inner{height:76px}.nav-actions{gap:10px}.section-intro{gap:25px;align-items:flex-start}.section-intro>p{max-width:270px;font-size:13px}.workflow{grid-template-columns:1fr}.workflow-tabs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));padding:12px;gap:4px}.workflow-tabs button{flex-direction:column;align-items:flex-start;gap:9px;padding:13px 9px;font-size:11px;border:0}.workflow-tabs button svg{display:none}.workflow-panel{min-height:310px;padding:32px;grid-template-columns:1fr auto}.workflow-index{display:block}.workflow-content p{min-height:70px;max-width:380px}.workflow-section,.sec,.faq-section{padding:65px 0}.faq-layout{gap:30px;grid-template-columns:1fr}.faq-section{padding-top:0}.metric-band>.wrap{grid-template-columns:auto 1fr;gap:12px 24px}.metric-value{font-size:72px}.metric-note{grid-column:1/-1;grid-row:auto;max-width:none;margin-top:10px;font-size:12px}.footer-grid{grid-template-columns:repeat(2,1fr);row-gap:30px}.footer-brand{grid-column:1/-1}.footer-brand p{max-width:none}.creator-statement{max-width:560px;width:100%;margin:auto}.process{padding:55px 0}.process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cta-band{padding-bottom:55px}}
@media(max-width:480px){.wrap,.nav-inner,.footer-inner{padding-left:22px;padding-right:22px}.nav-inner{height:70px;gap:10px}.logo{font-size:20px}.logo-mark{font-size:16px}.nav-actions{gap:7px}.nav-actions .btn{font-size:10px;padding:12px 10px}.nav-actions .btn svg{width:13px}.menu-toggle{height:36px;width:36px}.hero-title{font-size:76px}.hero .eyebrow{font-size:9px}.hero-sub{font-size:15px}.hero-cta{display:grid;grid-template-columns:1fr 1fr;gap:8px}.hero-cta .btn{font-size:11px;padding:17px 10px;white-space:normal;line-height:1.2}.hero-cred{font-size:10px}.distribution-studio{padding:18px;border-radius:14px}.studio-top{font-size:7px}.studio-stage{grid-template-columns:minmax(0,1fr) 18px minmax(0,1fr);gap:6px;padding:24px 0}.studio-source{padding:14px 10px}.studio-source>span{font-size:6px}.studio-source strong{font-size:15px}.waveform{height:56px;gap:2px}.studio-output{padding:12px 10px}.frame-art{height:105px;gap:4px}.frame-art span{width:16px;height:70px}.frame-art span:nth-child(2){height:93px}.frame-art span:nth-child(3){height:55px}.output-caption{font-size:18px}.output-top{font-size:7px}.output-bottom{font-size:4px}.studio-foot{font-size:5px;gap:5px}.platform-switch button{font-size:9px;padding:11px 7px}.studio-description{font-size:10px;min-height:34px}.section-intro{display:block}.section-intro>p{max-width:100%;margin-top:22px}.workflow-panel{padding:25px;grid-template-columns:1fr}.workflow-index{display:none}.workflow-content h3{font-size:28px}.workflow-tabs{padding:8px;gap:0}.workflow-tabs button{font-size:9px;line-height:1.4;padding:12px 6px}.workflow-content p{min-height:110px}.why-grid{gap:20px}.why-item h3{font-size:15px}.why-item p{font-size:12px}.h2{font-size:34px}.metric-band{padding:32px 0}.metric-value{font-size:66px}.metric-label{font-size:15px}.metric-meta{gap:8px}.metric-meta .chip{font-size:9px}.cta-band .inner{padding:46px 23px;border-radius:14px}.cta-band h2{font-size:36px}.cta-band .btn{font-size:12px;padding:16px 18px}.auth-wrap{padding:38px 16px 60px}.auth-card{padding:25px 20px}.summary-row{gap:12px}.summary-row .k{max-width:42%;flex-shrink:1}.process-grid{grid-template-columns:1fr}.brands-hero .hero-title{font-size:44px}.creator-statement{padding:25px}.creator-statement>p{font-size:38px}.nav-links{padding-left:22px;padding-right:22px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*:before,*:after{animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}
