/* === Producers — Cyberpunk Vault theme === */
/* All color variables inherited from theme.css — no root block here */

.amber { color: var(--teal); }

/* NAV (top-right CTA button) */
.nav-cta {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  border: 1px solid var(--teal-border);
  padding: 8px 20px; border-radius: 100px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dim); }

/* HERO */
.hero-producers {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 32px 80px; overflow: hidden;
}
.hp-bg { position: absolute; inset: 0; pointer-events: none; }
.hp-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hp-glow-1 {
  position: absolute; top: -100px; right: 10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 65%);
}
.hp-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,170,0.05) 0%, transparent 70%);
}
.hp-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hp-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

/* HERO BLOCK */
.hp-hero { text-align: center; max-width: 720px; margin: 0 auto; }
.hp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--teal-border);
  border-radius: 100px; font-size: 12px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--teal); letter-spacing: 0.03em;
  margin-bottom: 24px; background: var(--teal-dim);
}
.hp-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hp-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 20px;
}
.hp-sub {
  font-size: 17px; line-height: 1.65;
  color: var(--text-dim); max-width: 600px;
  margin: 0 auto;
}

/* VALUE PROPS GRID */
.hp-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; width: 100%;
}
.hp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.hp-card:hover {
  border-color: var(--teal-border);
  background: var(--surface-hover);
  box-shadow: 0 0 20px rgba(0,245,255,0.05);
}
.hp-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.hp-card-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.hp-card-desc {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.55; flex: 1;
}
.hp-card-link {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.hp-card-link:hover { opacity: 0.7; }

/* FORM */
.hp-form-wrap { width: 100%; max-width: 640px; margin: 0 auto; }
.hp-form-card {
  background: var(--surface);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 0 60px rgba(0,245,255,0.06), 0 20px 60px rgba(0,0,0,0.3);
}
.hp-form-header { margin-bottom: 24px; text-align: left; }
.hp-form-tag {
  font-family: var(--font-display); font-size: 11px;
  font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.hp-form-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.hp-form-desc {
  font-size: 15px; color: var(--text-dim);
  line-height: 1.55;
}
.hp-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
.hp-input {
  width: 100%; padding: 13px 16px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.hp-input::placeholder { color: var(--text-muted); }
.hp-input:focus {
  border-color: var(--teal-border);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
}
.hp-submit {
  width: 100%; padding: 15px 24px;
  background: var(--teal); color: #0a0a0f;
  border: none; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 20px rgba(0,245,255,0.2);
}
.hp-submit:hover:not(:disabled) { opacity: 0.88; }
.hp-submit:active:not(:disabled) { transform: scale(0.99); }
.hp-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.hp-form-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 10px; text-align: center;
}
.hp-form-error {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 14px; color: #fca5a5;
  margin-top: 12px;
}

/* FOOTER */
.footer-producers { padding: 48px 32px; border-top: 1px solid var(--border); }
.fp-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.fp-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.fp-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text); }
.fp-hz { font-size: 12px; color: var(--text-muted); font-family: var(--font-display); }
.fp-copy { font-size: 11px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hp-grid-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-producers { padding: 100px 20px 60px; }
  .hp-form-row { grid-template-columns: 1fr; }
  .hp-form-card { padding: 24px; }
  .hp-headline { font-size: 38px; }
}

/* PRODUCER ONBOARDING CHECKLIST */
.hp-checklist {
  display: flex; flex-direction: column; gap: 16px;
  max-width: var(--max); margin: 0 auto;
  list-style: none; padding: 0; width: 100%;
  counter-reset: bvstep;
}
.hp-step {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.hp-step:hover {
  border-color: var(--teal-border);
  background: var(--surface-hover);
  box-shadow: 0 0 24px rgba(0,245,255,0.06);
}
.hp-step-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: var(--teal);
  letter-spacing: -0.03em; text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}
.hp-step-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hp-step-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.hp-step-desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.55;
}
.hp-step-desc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px; color: var(--teal);
  background: var(--teal-dim); padding: 1px 6px; border-radius: 4px;
}
.hp-step-cta {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  border: 1px solid var(--teal-border);
  padding: 10px 18px; border-radius: 100px;
  background: transparent;
  transition: background 0.2s;
  white-space: nowrap;
}
.hp-step-cta:hover { background: var(--teal-dim); }
.hp-step.is-done {
  opacity: 0.55;
  position: relative;
}
.hp-step.is-done::before {
  content: "✓";
  font-family: var(--font-display);
  font-weight: 800; color: var(--teal);
  position: absolute; top: 10px; right: 14px;
  font-size: 14px;
}

.hp-form-secondary {
  display: inline-block;
  font-size: 12px; color: var(--text-dim);
  text-decoration: none; margin-top: 12px;
  transition: color 0.2s;
}
.hp-form-secondary:hover { color: var(--teal); }

@media (max-width: 700px) {
  .hp-step {
    grid-template-columns: 1fr;
    gap: 12px; padding: 20px;
  }
  .hp-step-num {
    border-right: none; border-bottom: 1px solid var(--border);
    padding-right: 0; padding-bottom: 10px;
    text-align: left; font-size: 22px;
  }
  .hp-step-cta {
    justify-self: stretch; text-align: center;
  }
}

/* === PRODUCER SIGNUP WIZARD === */
/* Wizard sits in the same Cyberpunk Vault look as the landing page. */

.hero-producers--wizard {
  min-height: auto;
  padding: 140px 32px 80px;
}

.hp-form-wrap--wide { max-width: 760px; }

/* PROGRESS BAR */
.pw-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pw-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: not-allowed;
  user-select: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.pw-step[role="button"] { cursor: pointer; }
.pw-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
}
.pw-step.is-active {
  color: var(--teal);
  border-color: var(--teal-border);
  background: var(--teal-dim);
}
.pw-step.is-active .pw-step-num {
  background: var(--teal);
  color: #0a0a0f;
  border-color: var(--teal);
  box-shadow: 0 0 10px rgba(0,245,255,0.4);
}
.pw-step.is-done {
  color: var(--teal);
  border-color: var(--teal-border);
  background: var(--bg-alt);
}
.pw-connector {
  width: 28px; height: 1px;
  background: var(--border);
  margin: 0 -1px;
  position: relative;
  flex-shrink: 0;
}
.pw-connector.is-done { background: var(--teal-border); }

/* PANELS */
.pw-form {
  display: flex;
  flex-direction: column;
}
.pw-panel {
  background: var(--surface);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 0 60px rgba(0,245,255,0.06), 0 20px 60px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.pw-panel.is-active {
  display: flex;
}
.pw-panel-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 4px;
}
.pw-panel-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pw-panel-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pw-panel-desc {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.55; margin-bottom: 4px;
}

/* FIELDS */
.pw-field {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.pw-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pw-req { color: var(--teal); margin-left: 2px; }
.pw-hint {
  font-size: 12px; color: var(--text-muted);
}
.pw-err {
  font-size: 12px; color: #fca5a5;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 4px;
  padding: 6px 10px;
  margin-top: 2px;
}
.pw-textarea {
  font-family: var(--font-body);
  resize: vertical;
  min-height: 76px;
  line-height: 1.5;
}
.pw-form input.pw-invalid,
.pw-form select.pw-invalid,
.pw-form textarea.pw-invalid {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

/* ACTIONS */
.pw-actions {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.pw-actions--end { justify-content: flex-end; }

.pw-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.15s, border-color 0.2s;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  letter-spacing: 0.02em;
}
.pw-btn--primary {
  background: var(--teal); color: #0a0a0f;
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0,245,255,0.2);
}
.pw-btn--primary:hover:not(:disabled) { opacity: 0.88; }
.pw-btn--primary:active:not(:disabled) { transform: scale(0.99); }
.pw-btn--primary:disabled { opacity: 0.6; cursor: not-allowed; }
.pw-btn--ghost {
  background: transparent; color: var(--text-dim);
  border-color: var(--border);
}
.pw-btn--ghost:hover { color: var(--text); border-color: var(--teal-border); }

/* PRICE INPUT */
.pw-price-wrap {
  position: relative;
}
.pw-price-symbol {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  pointer-events: none;
}
.pw-price-wrap .hp-input { padding-left: 28px; }

/* FILE DROP ZONES */
.pw-drop {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.pw-drop.is-drag,
.pw-drop:hover {
  border-color: var(--teal-border);
  background: var(--teal-dim);
}
.pw-drop input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
}
.pw-drop-content {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.pw-drop-main {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text);
}
.pw-drop-sub {
  font-size: 12px; color: var(--text-muted);
}
.pw-file-name {
  margin-top: 8px;
  font-size: 12px; color: var(--teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pw-thumb {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--bg-alt);
  max-width: 180px;
}
.pw-thumb img {
  display: block; width: 100%; height: auto;
  border-radius: 4px;
}

/* RECEIPT (welcome page) */
.pw-receipt {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.pw-receipt-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pw-receipt-row:last-of-type { border-bottom: none; }
.pw-receipt-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pw-receipt-val {
  font-size: 15px; color: var(--text);
  font-family: var(--font-body);
}
.pw-receipt-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .pw-progress {
    flex-wrap: wrap; gap: 6px;
    justify-content: flex-start;
  }
  .pw-connector { display: none; }
  .pw-step { font-size: 11px; padding: 6px 10px; }
  .pw-step-label { display: none; }
  .pw-panel { padding: 22px; }
  .pw-panel-num { font-size: 22px; }
  .pw-panel-title { font-size: 18px; }
  .pw-receipt-row { grid-template-columns: 1fr; gap: 2px; }
  .pw-actions { flex-direction: column-reverse; align-items: stretch; }
  .pw-btn { justify-content: center; }
}

