:root {
  color-scheme: dark;
  --bg: #050617;
  --surface: #0b0e2a;
  --surface-soft: #111643;
  --ink: #f7fbff;
  --muted: #b8c0e7;
  --line: rgba(139, 95, 255, 0.32);
  --accent: #8f3dff;
  --accent-strong: #19c8ff;
  --gold: #f05dff;
  --danger: #ff6b8b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(115, 74, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.home-page {
  --bg: #050617;
  --surface: #0b0e2a;
  --surface-soft: #111643;
  --line: rgba(139, 95, 255, 0.32);
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 60, 255, 0.18), transparent 34%),
    var(--bg);
}

.venue-page {
  --bg: #031018;
  --surface: #071b28;
  --surface-soft: #0b2638;
  --line: rgba(25, 200, 255, 0.34);
  background:
    radial-gradient(circle at 78% 0%, rgba(25, 200, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #031018 0%, #061421 52%, #050617 100%);
}

.artist-page {
  --bg: #120719;
  --surface: #1d0d2a;
  --surface-soft: #2a123b;
  --line: rgba(240, 93, 255, 0.34);
  background:
    radial-gradient(circle at 78% 0%, rgba(240, 93, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #120719 0%, #180b24 52%, #050617 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(170px, max-content) minmax(0, 1fr) max-content;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(139, 95, 255, 0.24);
  background: rgba(5, 6, 23, 0.96);
}

body:not(.venue-page):not(.artist-page) .site-header::after {
  content: "";
  width: 186px;
}

.plans-page .site-header,
.support-page .site-header {
  grid-template-columns: minmax(170px, max-content) minmax(0, 1fr) max-content;
}

.audience-badge {
  justify-self: end;
  min-width: 186px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.venue-page .audience-badge {
  color: var(--accent-strong);
  background: rgba(25, 200, 255, 0.12);
}

.artist-page .audience-badge {
  color: var(--gold);
  background: rgba(240, 93, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 200, 255, 0.34);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(143, 61, 255, 0.44), 0 0 18px rgba(25, 200, 255, 0.24);
  object-fit: cover;
}

.brand span {
  background: linear-gradient(90deg, #fff, #d8c5ff 44%, #6be7ff);
  background-clip: text;
  color: transparent;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 1vw, 14px);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  color: var(--muted);
  font-size: 14px;
}

nav::-webkit-scrollbar {
  display: none;
}

.plans-page .site-header nav,
.support-page .site-header nav {
  justify-content: flex-start;
}

.ops-page [hidden] {
  display: none !important;
}

nav a {
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
}

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 900;
}

nav a:hover,
.nav-button:hover {
  color: var(--accent-strong);
}

.nav-button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.ops-area-tab.active,
.ops-area-tab[aria-pressed="true"] {
  border-color: rgba(25, 200, 255, 0.36);
  background: rgba(25, 200, 255, 0.12);
  color: var(--ink);
  box-shadow: inset 0 0 18px rgba(143, 61, 255, 0.18);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 61, 255, 0.24), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(25, 200, 255, 0.18), transparent 30%),
    var(--bg);
}

.login-panel {
  width: min(100%, 520px);
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 14, 42, 0.92);
  box-shadow: var(--shadow);
}

.login-panel h1 {
  font-size: clamp(34px, 6vw, 54px);
}

.login-message {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.ops-page {
  min-height: 100vh;
  background: var(--bg);
}

.ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: end;
  padding: 58px 40px 42px;
  border-bottom: 1px solid var(--line);
}

.ops-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 68px);
}

.ops-hero p {
  max-width: 760px;
  font-size: 18px;
}

.ops-status {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 22, 67, 0.96), rgba(8, 12, 40, 0.96));
}

.ops-visual-panel {
  display: grid;
  gap: 12px;
}

.ops-visual-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.ops-status span,
.ops-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.ops-status strong,
.ops-metrics strong {
  display: block;
  font-size: 28px;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.ops-metrics article {
  position: relative;
  padding: 22px 24px;
  padding-right: 52px;
  border-right: 1px solid var(--line);
}

.ops-metrics article:last-child {
  border-right: 0;
}

.native-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.native-status-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.native-status-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.native-status-grid strong {
  display: block;
  font-size: 22px;
}

.ops-section {
  padding: 56px 40px;
  border-bottom: 1px solid var(--line);
}

.ops-section.alt {
  background: var(--surface);
}

.today-section {
  background: radial-gradient(circle at 20% 0%, rgba(143, 61, 255, 0.16), transparent 34%), var(--bg);
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 16px;
}

.next-action-card,
.daily-checklist {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.next-action-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.daily-checklist {
  display: grid;
  gap: 10px;
  align-content: start;
}

.daily-checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.4;
}

.daily-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.ops-list {
  display: grid;
  gap: 16px;
}

.execution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.execution-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  padding-right: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.execution-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.execution-head > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.execution-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-size: 12px;
  text-transform: uppercase;
}

.execution-badge.status-interested {
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
}

.execution-badge.status-not-interested,
.execution-badge.status-no-response {
  background: rgba(255, 107, 139, 0.16);
  color: var(--danger);
}

.execution-actions,
.execution-result-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  padding-right: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.contact-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-rows p {
  margin: 0;
}

.contact-rows span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-rows strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
}

.contact-note {
  margin: 0;
  font-size: 13px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.contact-action,
.contact-actions span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-actions span {
  color: var(--muted);
}

.contact-edit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: end;
}

.contact-edit label {
  position: relative;
  display: grid;
  gap: 4px;
  padding-right: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-edit .wide {
  grid-column: span 2;
}

.contact-edit input {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.contact-edit button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.execution-result-grid button {
  min-height: 34px;
  padding: 0 12px;
  background: var(--surface-soft);
  color: var(--ink);
}

.execution-result-grid button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.live-result-grid button {
  background: var(--accent);
  color: #fff;
}

.live-result-grid button:hover {
  background: var(--accent-strong);
}

.execution-result-grid button:hover {
  background: var(--line);
}

.live-result-grid button:hover {
  background: var(--accent-strong);
}
}

.ops-contact,
.command-grid article,
.ops-rules article {
  position: relative;
  padding: 18px;
  padding-right: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.ops-contact-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ops-contact-head > span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 0 8px;
  text-align: center;
  line-height: 1.2;
  font-size: 0.72rem;
}

.ops-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.ops-mini-grid p {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px;
  padding-right: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.ops-mini-grid span,
.ops-mini-grid strong {
  display: block;
}

.ops-mini-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.ops-mini-grid strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.airtable-live-samples {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.airtable-live-samples li {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.airtable-live-samples span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.ops-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ops-empty-actions a,
.ops-empty-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(25, 200, 255, 0.48);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(25, 200, 255, 0.12);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ops-empty-actions a:first-child {
  border-color: rgba(157, 57, 255, 0.72);
  background: linear-gradient(135deg, #8f37ff, #19c8ff);
  color: #fff;
}

.ops-contact pre,
.command-grid pre,
.payload-builder pre,
.recommendation-output-panel pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #02030c;
  color: var(--ink);
  line-height: 1.5;
}

.command-grid,
.ops-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-grid,
.scenario-grid,
.data-quality-summary,
.public-lead-summary,
.geo-summary-grid,
.decision-grid,
.follow-up-grid,
.intake-grid,
.ai-score-grid,
.score-breakdown-grid,
.monetization-grid,
.validation-grid,
.protection-grid,
.contact-monitor-grid,
.readiness-summary {
  display: grid;
  gap: 14px;
}

.dashboard-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.data-quality-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.public-lead-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.geo-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.decision-grid {
  grid-template-columns: minmax(0, 2fr) repeat(4, minmax(120px, 1fr));
}

.follow-up-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.intake-grid {
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  margin-bottom: 18px;
}

.ai-score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.score-breakdown-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 18px;
}

.monetization-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.validation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.protection-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.contact-monitor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.protection-control-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.protection-control-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.protection-control-card > span {
  display: inline-flex;
  margin-bottom: 12px;
}

.protection-control-card h3 {
  margin: 0 0 8px;
}

.protection-control-card p {
  margin: 0;
  color: var(--muted);
}

.bypass-signal-list {
  display: grid;
  gap: 8px;
}

.bypass-signal-list p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.bypass-signal-list strong {
  color: var(--ink);
}

.readiness-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.dashboard-grid article,
.scenario-grid article,
.data-quality-summary article,
.public-lead-summary article,
.geo-summary-grid article,
.decision-grid article,
.follow-up-grid article,
.intake-grid article,
.ai-score-grid article,
.score-breakdown-grid article,
.monetization-grid article,
.validation-grid article,
.protection-grid article,
.contact-monitor-grid article,
.readiness-summary article,
.data-quality-group {
  position: relative;
  min-height: 112px;
  padding: 18px;
  padding-right: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

[data-help] {
  cursor: help;
}

[data-help]::after {
  content: "?";
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(25, 200, 255, 0.42);
  border-radius: 50%;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  background: rgba(25, 200, 255, 0.1);
}

[data-help]::before {
  content: attr(data-help);
  position: absolute;
  right: 10px;
  bottom: calc(100% - 4px);
  z-index: 20;
  width: min(280px, calc(100vw - 48px));
  padding: 12px 14px;
  border: 1px solid rgba(25, 200, 255, 0.42);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  background: #070a20;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 120ms ease, transform 120ms ease;
}

[data-help]:hover::before,
[data-help]:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.field-help {
  position: relative;
  padding-right: 30px;
}

.field-help[data-help]::after {
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.field-help[data-help]::before {
  right: 0;
  bottom: calc(100% + 6px);
}

.dashboard-grid span,
.scenario-grid span,
.data-quality-summary span,
.public-lead-summary span,
.geo-summary-grid span,
.decision-grid span,
.follow-up-grid span,
.intake-grid span,
.ai-score-grid span,
.score-breakdown-grid span,
.monetization-grid span,
.validation-grid span,
.protection-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-monitor-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.readiness-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-grid strong,
.scenario-grid strong,
.data-quality-summary strong,
.public-lead-summary strong,
.geo-summary-grid strong,
.decision-grid strong,
.follow-up-grid strong,
.intake-grid strong,
.ai-score-grid strong,
.score-breakdown-grid strong,
.monetization-grid strong,
.validation-grid strong,
.protection-grid strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.contact-monitor-grid strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.readiness-summary strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.geo-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.geo-map-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 300px minmax(260px, 1fr);
  align-content: start;
  gap: 14px;
  padding: 18px;
  padding-right: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.geo-map-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.geo-map {
  position: relative;
  height: 300px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(25, 200, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 200, 255, 0.08), transparent 48%),
    radial-gradient(circle at 78% 58%, rgba(25, 200, 255, 0.18), transparent 10%),
    radial-gradient(circle at 12% 22%, rgba(143, 61, 255, 0.18), transparent 8%),
    #050817;
}

.geo-provider-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.04) brightness(0.72);
}

.geo-map[data-map-provider="aqua"] .geo-provider-frame {
  display: none;
}

.geo-provider-toolbar {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(25, 200, 255, 0.32);
  border-radius: 8px;
  background: rgba(5, 8, 23, 0.9);
}

.geo-provider-toolbar button {
  min-height: 28px;
  padding: 5px 9px;
  border-color: transparent;
  color: var(--muted);
  font-size: 12px;
  background: transparent;
}

.geo-provider-toolbar button.active {
  color: var(--ink);
  border-color: rgba(25, 200, 255, 0.42);
  background: rgba(25, 200, 255, 0.16);
}

.geo-map-inner {
  position: absolute;
  inset: 0;
  transform-origin: center;
  transition: transform 180ms ease;
}

.map-zoom-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 23, 0.96);
}

.map-zoom-controls button {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
}

.map-zoom-controls span {
  min-width: 46px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.geo-ocean {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 13% 25%, rgba(255, 255, 255, 0.18), transparent 3%),
    radial-gradient(ellipse at 21% 15%, rgba(255, 255, 255, 0.14), transparent 2.4%),
    radial-gradient(ellipse at 42% 9%, rgba(255, 255, 255, 0.14), transparent 2.8%),
    radial-gradient(ellipse at 82% 56%, rgba(255, 255, 255, 0.18), transparent 5%),
    radial-gradient(ellipse at 96% 91%, rgba(255, 255, 255, 0.14), transparent 3%);
  opacity: 0.46;
  pointer-events: none;
}

.geo-map:not([data-map-provider="aqua"]) .geo-ocean,
.geo-map:not([data-map-provider="aqua"]) .geo-island,
.geo-map:not([data-map-provider="aqua"]) .geo-pin {
  display: none;
}

.geo-island {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.72);
  pointer-events: none;
  white-space: nowrap;
}

.geo-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  min-height: 16px;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 22px rgba(25, 200, 255, 0.34);
  transform: translate(-50%, -50%);
}

.geo-pin.band {
  background: var(--gold);
}

.geo-pin.venue {
  background: var(--accent-strong);
}

.geo-pin.concert {
  width: 20px;
  height: 20px;
  min-height: 20px;
  background: var(--accent-pink);
  box-shadow: 0 0 0 6px rgba(240, 93, 255, 0.16), 0 0 26px rgba(240, 93, 255, 0.44);
}

.geo-pin:hover {
  background: #fff;
}

.geo-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 260px;
  max-height: 260px;
  overflow: auto;
}

.geo-list article {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.geo-list article:first-child {
  border-top: 0;
}

.geo-list strong {
  color: var(--ink);
  font-size: 14px;
}

.geo-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.geo-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.geo-map-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(25, 200, 255, 0.36);
  border-radius: 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(25, 200, 255, 0.08);
}

.geo-map-actions a:hover {
  border-color: var(--accent-strong);
  background: rgba(25, 200, 255, 0.14);
}

.readiness-list {
  display: grid;
  gap: 14px;
}

.relationship-list {
  display: grid;
  gap: 14px;
}

.relationship-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.relationship-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.relationship-head > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.relationship-head > span.ready {
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
}

.relationship-head > span.blocked {
  background: rgba(240, 93, 255, 0.16);
  color: var(--gold);
}

.relationship-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.relationship-status-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.relationship-status-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.relationship-status-grid strong {
  color: var(--ink);
}

.relationship-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.relationship-metrics strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

.relationship-card pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #02030c;
  color: var(--muted);
}

.readiness-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.readiness-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.readiness-head > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-head > span.ready {
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
}

.readiness-head > span.blocked {
  background: rgba(240, 93, 255, 0.16);
  color: var(--gold);
}

.readiness-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.readiness-status-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.readiness-status-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.decision-main pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #02030c;
  color: var(--ink);
}

.follow-up-command pre,
.intake-command pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 8px 0 0;
  color: var(--muted);
}

.data-quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.data-quality-group {
  display: grid;
  align-content: start;
  gap: 14px;
}

.data-quality-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-quality-group li {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.data-quality-group li:first-child {
  padding-top: 0;
  border-top: 0;
}

.data-quality-group li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.scenario-grid p {
  margin: 8px 0 0;
}

.validation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.validation-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.ops-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.ops-actions button,
.payload-controls button {
  min-height: 38px;
}

.payload-builder {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.ops-live-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-color: rgba(25, 200, 255, 0.28);
  background: radial-gradient(circle at 10% 10%, rgba(25, 200, 255, 0.13), transparent 32%), var(--surface);
}

.ops-live-panel h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.ops-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.ops-live-actions span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.ops-live-actions .live-ok {
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
}

.ops-live-actions .live-off {
  background: rgba(255, 107, 139, 0.16);
  color: var(--danger);
}

.recommendation-builder {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.recommendation-form,
.recommendation-output-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.recommendation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recommendation-form .wide {
  grid-column: 1 / -1;
}

.recommendation-output-panel .ops-actions {
  margin-top: 0;
}

.batch-control {
  max-width: 420px;
  margin-bottom: 18px;
}

.payload-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.chatgpt-test-panel form {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.chatgpt-test-panel .wide {
  grid-column: auto;
}

.chatgpt-test-panel textarea {
  min-height: 124px;
}

.chatgpt-response {
  margin-top: 18px;
}

.chatgpt-response h3 {
  margin-bottom: 10px;
}

.result-controls {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 1fr) auto;
}

.booking-controls {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #02030c;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(25, 200, 255, 0.25), transparent 32%),
    radial-gradient(circle at 14% 40%, rgba(143, 61, 255, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(2, 3, 12, 0.93), rgba(8, 8, 35, 0.64) 52%, rgba(4, 8, 35, 0.48)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 40px));
  padding: 0 0 68px 40px;
  color: #fff;
}

.hero-visual {
  position: absolute;
  right: 40px;
  bottom: 68px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, 0.72fr);
  gap: 14px;
  width: min(42vw, 680px);
  pointer-events: none;
}

.hero-visual figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.hero-visual-main {
  grid-row: span 2;
}

.hero-visual-main img {
  min-height: 420px;
}

.hero-visual figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 8, 23, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.audience-hero {
  min-height: calc(100vh - 70px);
  align-items: center;
  padding: clamp(56px, 7vh, 92px) 0;
}

.audience-hero .hero-content {
  width: min(760px, calc(52vw - 48px));
  padding: 0 0 0 40px;
}

.audience-hero .hero-visual {
  top: 50%;
  bottom: auto;
  right: 28px;
  grid-template-columns: minmax(0, 1.28fr) minmax(180px, 0.72fr);
  gap: 18px;
  width: min(47vw, 780px);
  transform: translateY(-43%);
}

.audience-hero .hero-visual img {
  min-height: clamp(210px, 27vh, 280px);
}

.audience-hero .hero-visual-main img {
  min-height: clamp(440px, 55vh, 590px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.free-registration-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(65, 214, 255, 0.48);
  border-radius: 8px;
  background: rgba(7, 18, 48, 0.78);
  color: #fff;
  box-shadow: 0 0 28px rgba(65, 214, 255, 0.22);
}

.free-registration-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 7px;
  background: linear-gradient(135deg, #41d6ff, #923cff);
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

.free-registration-badge strong {
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.referral-badge {
  border-color: rgba(36, 214, 255, 0.62);
  box-shadow: 0 0 32px rgba(36, 214, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
}

.referral-badge:hover {
  border-color: rgba(102, 231, 255, 0.9);
  transform: translateY(-1px);
}

.free-registration-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.free-registration-note strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
}

button:hover,
.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.metric-strip article {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric-strip article:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 34px;
}

.metric-strip span {
  color: var(--muted);
}

.photo-strip-section {
  padding: 18px 40px 34px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-strip figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 8, 23, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.billing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(24px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 14, 38, 0.82);
}

.billing-band h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 40px);
}

.billing-band p {
  max-width: 780px;
  color: var(--muted);
}

.choice-section {
  padding: 72px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.referral-section {
  scroll-margin-top: 92px;
  padding: 72px 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 214, 255, 0.1), transparent 30%),
    var(--surface);
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.referral-grid article,
.referral-fieldset {
  padding: 22px;
  border: 1px solid rgba(124, 60, 255, 0.48);
  border-radius: 8px;
  background: rgba(18, 22, 58, 0.82);
}

.referral-grid span,
.referral-fieldset legend {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.referral-grid h3 {
  margin: 10px 0 8px;
}

.referral-grid p,
.referral-fieldset p {
  margin: 0;
  color: var(--muted);
}

.referral-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.referral-fieldset {
  display: grid;
  gap: 14px;
  margin: 6px 0 0;
}

.referral-fieldset legend {
  padding: 0 8px;
}

.recommendation-entry-section {
  scroll-margin-top: 92px;
  padding: 72px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--background);
}

.recommendation-entry-section.anchor-highlight {
  outline: 2px solid rgba(36, 214, 255, 0.72);
  outline-offset: -10px;
  box-shadow: inset 0 0 42px rgba(36, 214, 255, 0.16);
}

.recommendation-entry-form {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(124, 60, 255, 0.48);
  border-radius: 8px;
  background: rgba(12, 15, 42, 0.86);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-entry-form button {
  justify-self: start;
}

.referral-status {
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.choice-card {
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(143, 61, 255, 0.18), rgba(11, 14, 42, 0.94));
  box-shadow: var(--shadow);
  text-decoration: none;
}

.choice-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(25, 200, 255, 0.16), rgba(11, 14, 42, 0.94));
}

.choice-card span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-card h3 {
  margin: auto 0 0;
  font-size: 28px;
}

.choice-card p {
  margin-bottom: 0;
}

.choice-card:hover {
  border-color: rgba(25, 200, 255, 0.68);
  transform: translateY(-2px);
}

.flow-map {
  padding: 72px 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(143, 61, 255, 0.16), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(25, 200, 255, 0.14), transparent 28%),
    var(--bg);
}

.flow-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-lanes article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 14, 42, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.flow-lanes article:nth-child(2) {
  border-color: rgba(240, 93, 255, 0.42);
}

.flow-lanes article:nth-child(3) {
  border-color: rgba(25, 200, 255, 0.42);
  background: rgba(17, 22, 67, 0.9);
}

.flow-lanes span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-lanes h3,
.flow-lanes p {
  margin-bottom: 0;
}

.flow-lanes ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.flow-lanes li {
  padding-left: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.flow-lanes a {
  align-self: end;
  width: fit-content;
  margin-top: 4px;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.flow-lanes a:hover {
  color: #fff;
}

.split-section,
.workspace,
.public-dashboard-section,
.trust-section,
.signup-section,
.signin-monetization-section,
.feedback-section,
.complementary-heading-section,
.join-section {
  padding: 72px 40px;
}

.home-page main,
.venue-page main,
.artist-page main {
  display: flex;
  flex-direction: column;
}

.flow-step-overview main > section:not(.hero):not(.referral-section):not(#como-funciona):not(#join),
.flow-step-signup main > section:not(#signup),
.flow-step-signin main > section:not(#sign-in),
.venue-page.flow-step-profile main > section:not(#join),
.artist-page.flow-step-profile main > section:not(#perfil):not(#join),
.venue-page.flow-step-showcase main > section:not(#promoter-tools),
.venue-page.flow-step-selection main > section:not(#promoter-tools),
.artist-page.flow-step-selection main > section:not(#artist-tools),
.flow-step-proposal main > section:not(#proposal),
.flow-step-contract main > section:not(#contract),
.flow-step-payment main > section:not(#protected-payment),
.flow-step-poster main > section:not(#event-poster),
.flow-step-precheck main > section:not(#pre-event-checklist),
.flow-step-review main > section:not(#post-event-review) {
  display: none;
}

.flow-step-signup #signup,
.flow-step-signin #sign-in,
.flow-step-profile #join,
.flow-step-showcase .post-profile-section,
.flow-step-selection .post-profile-section,
.flow-step-proposal .proposal-section,
.flow-step-contract .contract-section,
.flow-step-payment .protected-payment-section,
.flow-step-poster .event-poster-section,
.flow-step-precheck .pre-event-checklist-section,
.flow-step-review .post-event-review-section {
  min-height: calc(100vh - 70px);
}

.post-profile-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.proposal-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.contract-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.protected-payment-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.pre-event-checklist-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.post-event-review-section {
  padding: 72px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.post-profile-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.post-profile-option-grid.two-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-profile-option {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.post-profile-option span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.post-profile-option h3,
.post-profile-option p {
  margin-bottom: 0;
}

.post-profile-option:hover {
  border-color: var(--accent-strong);
}

.post-profile-panels {
  display: grid;
  gap: 18px;
}

.post-profile-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.compact-heading {
  margin-bottom: 18px;
}

.standalone-map-grid {
  grid-template-columns: 1fr;
}

.post-profile-search-form {
  margin-top: 0;
}

.promoter-ai-assistant {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.promoter-ai-assistant pre {
  min-height: 120px;
  max-height: 360px;
  overflow: auto;
  white-space: pre-wrap;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(25, 200, 255, 0.28);
  border-radius: 8px;
  background: rgba(2, 5, 20, 0.72);
  color: var(--text);
  font: 600 0.95rem/1.55 var(--font);
}

.venue-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.venue-showcase-card {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.venue-showcase-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-showcase-card h3,
.venue-showcase-card p {
  margin-bottom: 0;
}

.select-button {
  width: fit-content;
}

.selected-zone {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.promoter-flow-context {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(47, 203, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 203, 255, 0.12), rgba(124, 60, 255, 0.14));
  box-shadow: var(--shadow);
}

.promoter-flow-context h3,
.promoter-flow-context p {
  margin-bottom: 0;
}

.promoter-flow-context-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px;
  min-width: min(520px, 100%);
}

.promoter-flow-context-meta span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 4, 22, 0.26);
}

.promoter-flow-context-meta small {
  color: var(--muted);
  font-weight: 900;
}

.promoter-flow-context-meta strong {
  color: var(--ink);
}

.selection-event-note {
  margin-top: 6px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 900;
}

.selected-list,
.proposal-list {
  display: grid;
  gap: 12px;
}

.selected-item,
.proposal-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.selected-item h3,
.selected-item p,
.proposal-item h3,
.proposal-item p {
  margin-bottom: 0;
}

.proposal-item {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.proposal-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.proposal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proposal-form h3,
.proposal-form .wide {
  grid-column: 1 / -1;
}

.proposal-form h3,
.proposal-form p {
  margin-bottom: 0;
}

.proposal-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  color: var(--accent-strong);
  font-weight: 900;
}

.proposal-inbox-section {
  margin-top: 28px;
}

.proposal-inbox,
.contract-list,
.payment-list,
.pre-event-checklist-list,
.post-event-review-list {
  display: grid;
  gap: 14px;
}

.proposal-card,
.contract-card,
.payment-card,
.pre-event-card,
.review-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.proposal-card h3,
.proposal-card p,
.contract-card h3,
.contract-card p,
.payment-card h3,
.payment-card p,
.pre-event-card h3,
.pre-event-card p,
.review-card h3,
.review-card p {
  margin-bottom: 0;
}

.proposal-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contract-advantage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contract-advantage-list article {
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contract-advantage-list article.active {
  border-color: rgba(72, 153, 114, 0.42);
  background: rgba(72, 153, 114, 0.1);
}

.contract-advantage-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.contract-advantage-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.contract-advantage-list + .contract-list {
  margin-top: 14px;
}

.platform-benefit-list,
.platform-incentive-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.platform-incentive-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 8px;
}

.platform-benefit-list article,
.platform-incentive-list article {
  min-height: 118px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.platform-benefit-list article.active,
.platform-incentive-list article.active {
  border-color: rgba(72, 153, 114, 0.42);
  background: rgba(72, 153, 114, 0.1);
}

.platform-incentive-list article.blocked {
  border-color: rgba(227, 96, 96, 0.42);
  background: rgba(227, 96, 96, 0.08);
}

.platform-benefit-list span,
.platform-incentive-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-benefit-list strong,
.platform-incentive-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.platform-benefit-list p,
.platform-incentive-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.negotiation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.negotiation-fields .wide {
  grid-column: 1 / -1;
}

.negotiation-summary {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: rgba(124, 60, 255, 0.12);
}

.bypass-review-warning {
  padding: 12px 14px;
  border: 1px solid rgba(196, 79, 79, 0.42);
  border-radius: 8px;
  background: rgba(196, 79, 79, 0.1);
}

.bypass-review-warning strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.bypass-review-warning p {
  color: var(--muted);
}

.payment-final-flow-status,
.rebook-suggestion-status {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.proposal-event-summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(36, 207, 255, 0.28);
  border-radius: 8px;
  background: rgba(36, 207, 255, 0.07);
}

.proposal-event-summary h4,
.proposal-event-summary p {
  margin: 0;
}

.proposal-event-summary h4 {
  color: var(--ink);
  font-size: 18px;
}

.payment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.contract-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contract-draft {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contract-draft label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contract-draft textarea {
  min-height: 260px;
  resize: vertical;
}

.verbal-agreement-summary {
  border-color: rgba(24, 214, 255, 0.35);
}

.verbal-agreement-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.verbal-agreement-summary li + li {
  margin-top: 6px;
}

.contract-status {
  color: var(--accent-strong);
  font-weight: 900;
}

.payment-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-breakdown span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-breakdown small {
  color: var(--muted);
  font-weight: 800;
}

.payment-readiness-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(36, 207, 255, 0.34);
  border-radius: 8px;
  background: rgba(36, 207, 255, 0.07);
}

.payment-readiness-state {
  display: grid;
  gap: 4px;
}

.payment-readiness-state span,
.payment-readiness-grid small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-readiness-state strong {
  color: var(--ink);
  font-size: 18px;
}

.payment-readiness-state p {
  color: var(--muted);
}

.payment-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-readiness-grid span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-readiness-grid strong {
  color: var(--accent-strong);
}

.payment-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.payment-card textarea {
  min-height: 110px;
  resize: vertical;
}

.pre-event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pre-event-form label,
.pre-event-form .wide {
  display: grid;
  gap: 8px;
}

.pre-event-form .wide {
  grid-column: 1 / -1;
}

.pre-event-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pre-event-check-panel,
.pre-event-ops-panel,
.review-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.pre-event-check-panel,
.pre-event-ops-panel {
  display: grid;
  gap: 12px;
}

.pre-event-check-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pre-event-check-panel h4,
.pre-event-ops-panel h4,
.review-block h4 {
  margin: 0;
  color: var(--text);
}

.pre-event-check-panel p,
.pre-event-ops-panel p {
  margin: 0;
  color: var(--muted);
}

.pre-event-progress {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 900;
  white-space: nowrap;
}

.pre-event-progress strong {
  color: var(--text);
  font-size: 1.4rem;
}

.pre-event-form .pre-event-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pre-event-form .pre-event-checks label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}

.pre-event-form .pre-event-checks input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent-strong);
}

.pre-event-form .pre-event-checks span {
  display: grid;
  gap: 4px;
}

.pre-event-form .pre-event-checks strong {
  color: var(--text);
}

.pre-event-form .pre-event-checks small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.pre-event-status {
  color: var(--accent-strong);
  font-weight: 900;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.review-block {
  display: grid;
  gap: 12px;
}

.review-block fieldset {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-block-header span {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-block-header h4 {
  margin: 4px 0 0;
}

.review-platform-block {
  border-color: rgba(36, 207, 255, 0.28);
  background: rgba(36, 207, 255, 0.06);
}

.star-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.star-rating label {
  cursor: pointer;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 900;
}

.star-rating label.active span {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
  background: rgba(124, 60, 255, 0.16);
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.review-status,
.profile-review-summary {
  color: var(--accent-strong);
  font-weight: 900;
}

.suggestion-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.78);
}

.suggestion-modal[hidden] {
  display: none;
}

.suggestion-dialog {
  position: relative;
  width: min(720px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.suggestion-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 0;
}

.suggestion-modal-form {
  display: grid;
  gap: 12px;
}

.suggestion-modal-form label {
  display: grid;
  gap: 8px;
}

.suggestion-modal-form textarea {
  min-height: 180px;
  resize: vertical;
}

.suggestion-status {
  color: var(--accent-strong);
  font-weight: 900;
}

.payment-flow-actions {
  margin: 12px 0;
}

.payment-flow-dialog {
  width: min(820px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
}

.payment-flow-context {
  color: var(--accent-strong);
  font-weight: 900;
}

.payment-flow-steps {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0;
  list-style: none;
}

.payment-flow-steps li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-flow-steps strong {
  color: var(--ink);
}

.payment-flow-steps span,
.payment-flow-note {
  color: var(--muted);
  line-height: 1.45;
}

.payment-flow-note {
  padding: 14px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
}

.payment-status,
.payment-release-status,
.payment-commission-status {
  color: var(--accent-strong);
  font-weight: 900;
}

.flow-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.event-poster-section {
  background:
    radial-gradient(circle at 75% 18%, rgba(36, 207, 255, 0.18), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(146, 58, 255, 0.2), transparent 36%),
    var(--surface);
}

.poster-generator-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.poster-preview-card,
.poster-brief-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 10, 30, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.poster-preview-card {
  position: relative;
  min-height: 620px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.poster-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(155deg, rgba(4, 8, 22, 0.45), rgba(4, 8, 22, 0.9)),
    url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=900&q=82") center/cover;
}

.poster-preview-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -24% -30%;
  z-index: -1;
  height: 42%;
  background: radial-gradient(circle, rgba(146, 58, 255, 0.46), transparent 62%);
}

.poster-accent-cyan::after {
  background: radial-gradient(circle, rgba(36, 207, 255, 0.44), transparent 62%);
}

.poster-accent-violet::after {
  background: radial-gradient(circle, rgba(124, 60, 255, 0.5), transparent 62%);
}

.poster-brand,
.poster-ai-badge {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.poster-ai-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--accent-2);
  background: rgba(9, 10, 30, 0.72);
}

.poster-preview-body p {
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
}

.poster-preview-body h3 {
  max-width: 9ch;
  margin: 10px 0 14px;
  font-size: clamp(3.6rem, 8vw, 6.7rem);
  line-height: 0.9;
}

.poster-preview-body strong {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.poster-preview-footer {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
}

.poster-brief-card {
  padding: 30px;
}

.poster-brief-card h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.poster-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.poster-data-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.poster-data-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.poster-data-grid strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.poster-brief-card textarea {
  min-height: 190px;
}

.poster-status {
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .poster-generator-grid {
    grid-template-columns: 1fr;
  }

  .poster-preview-card {
    min-height: 520px;
  }

  .poster-data-grid {
    grid-template-columns: 1fr;
  }
}

.home-page .hero,
.venue-page .hero,
.artist-page .hero {
  order: 0;
}

.home-page .choice-section {
  order: 20;
}

.home-page #info-complementar {
  order: 30;
}

.home-page .metric-strip {
  order: 10;
}

.home-page #recommendation-router {
  order: 90;
}

.home-page #sign-in {
  order: 40;
}

.home-page .feedback-section {
  order: 50;
}

.venue-page #como-funciona,
.artist-page #como-funciona {
  order: 10;
}

.venue-page #signup,
.artist-page #signup {
  order: 20;
}

.venue-page #sign-in,
.artist-page #sign-in {
  order: 30;
}

.artist-page #perfil {
  order: 40;
}

.venue-page #join,
.artist-page #join {
  order: 50;
}

.venue-page #pilot {
  order: 60;
}

.venue-page #info-complementar,
.artist-page #info-complementar {
  order: 70;
}

.venue-page .metric-strip,
.artist-page .metric-strip {
  order: 80;
}

.venue-page .billing-band {
  order: 85;
}

.venue-page #dashboard-promotor,
.artist-page #dashboard-artista {
  order: 90;
}

.venue-page #confianca,
.artist-page #confianca {
  order: 100;
}

.venue-page #montra {
  order: 110;
}

.venue-page .feedback-section,
.artist-page .feedback-section {
  order: 120;
}

.complementary-heading-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.12), rgba(25, 200, 255, 0.08)), var(--surface);
}

.complementary-heading-section .section-heading {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.split-section.alt {
  background: var(--surface);
}

.flow-slide-section {
  min-height: min(760px, calc(100vh - 70px));
  align-content: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.07), transparent 30%),
    var(--surface);
}

.flow-slide-section .process-flow article {
  min-height: 260px;
}

.audience-hero.venue-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(3, 16, 24, 0.86), rgba(3, 16, 24, 0.34)),
    radial-gradient(circle at 72% 28%, rgba(25, 200, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(25, 200, 255, 0.2), rgba(3, 16, 24, 0.94));
}

.audience-hero.artist-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(18, 7, 25, 0.86), rgba(18, 7, 25, 0.34)),
    radial-gradient(circle at 72% 28%, rgba(240, 93, 255, 0.36), transparent 28%),
    linear-gradient(135deg, rgba(240, 93, 255, 0.2), rgba(18, 7, 25, 0.94));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 198px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.alt .feature-grid article {
  background: var(--surface-soft);
}

.process-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-flow article {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process-flow span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.process-flow h3,
.process-flow p {
  margin-bottom: 0;
}

.process-flow ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.process-flow li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--accent-strong);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.workspace {
  background: radial-gradient(circle at 75% 0%, rgba(25, 200, 255, 0.14), transparent 32%), var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.public-dashboard-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.public-dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.75fr));
  gap: 14px;
}

.public-dashboard-card {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.public-dashboard-card.lead-card {
  grid-row: span 2;
}

.public-dashboard-card.wide {
  grid-column: span 3;
}

.public-dashboard-card > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.public-dashboard-card h3,
.public-dashboard-card p {
  margin-bottom: 0;
}

.public-dashboard-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.public-dashboard-card strong {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.public-dashboard-card .process-status-track {
  grid-template-columns: 1fr;
  margin: 8px 0 0;
}

.public-location-map-card {
  gap: 16px;
}

.public-location-map-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.public-location-map-heading p {
  max-width: 680px;
}

.public-map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.public-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-dot.band {
  background: var(--gold);
}

.legend-dot.venue {
  background: var(--accent-strong);
}

.public-location-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr);
  gap: 14px;
}

.public-location-map {
  min-height: 340px;
}

.public-location-list {
  display: grid;
  align-content: start;
  max-height: 340px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.public-location-list article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.public-location-list article:first-child {
  border-top: 0;
}

.public-location-list strong {
  color: #fff;
  font-size: 0.95rem;
}

.public-location-list span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.embedded-location-map-card {
  gap: 18px;
}

.embedded-location-map-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.embedded-location-map-heading p {
  max-width: 680px;
}

.embedded-map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.embedded-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.embedded-map-actions a:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.embedded-location-map {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
}

.public-task-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-task-list li {
  position: relative;
  min-width: 0;
  padding: 10px 10px 10px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  overflow-wrap: anywhere;
}

.public-task-list li::before {
  position: absolute;
  left: 10px;
  content: "•";
  color: var(--accent-strong);
  font-weight: 900;
}

.trust-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.trust-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(25, 200, 255, 0.14);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-grid h3,
.trust-grid p {
  margin-bottom: 0;
}

.trust-grid p {
  color: var(--muted);
}

.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-field span {
  min-width: 0;
}

.feedback-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.signin-monetization-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.signup-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.signin-monetization-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.65fr);
  gap: 18px;
}

.plans-page .plans-hero {
  padding: 72px 40px 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 10%, rgba(124, 60, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(20, 10, 48, 0.96), rgba(5, 6, 23, 0.98));
}

.plans-page .plans-hero .section-heading {
  max-width: 860px;
}

.plans-page .plans-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.plans-layout {
  display: grid;
  gap: 18px;
}

.signin-only-grid {
  grid-template-columns: minmax(280px, 0.95fr) repeat(2, minmax(240px, 0.7fr));
  align-items: start;
}

.signup-form,
.signin-form,
.password-recovery-form,
.password-change-form,
.signin-context-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.signup-form {
  max-width: 560px;
}

.signup-form h3,
.signup-form p,
.signin-form h3,
.signin-form p,
.password-recovery-form h3,
.password-recovery-form p,
.password-change-form h3,
.password-change-form p,
.signin-context-card h3,
.signin-context-card p {
  margin-bottom: 0;
}

.signup-status,
.signin-status,
.password-recovery-status,
.password-change-status {
  min-height: 1.4em;
  color: var(--accent-soft);
  font-weight: 800;
}

.claim-profile-banner {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 213, 102, 0.45);
  border-radius: 8px;
  background: rgba(255, 213, 102, 0.1);
}

.claim-profile-banner span {
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-profile-banner strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.claim-profile-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.preloaded-profile-section {
  display: grid;
  gap: 18px;
  margin: 22px 0;
  border: 1px solid rgba(255, 213, 102, 0.32);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255, 213, 102, 0.06);
}

.compact-heading {
  margin: 0;
}

.compact-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.preloaded-profile-search {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.preloaded-profile-search span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.preloaded-profile-search input {
  width: 100%;
  border: 1px solid rgba(40, 205, 255, 0.45);
  border-radius: 8px;
  outline: none;
  background: rgba(4, 18, 30, 0.7);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-weight: 800;
}

.preloaded-profile-search input:focus {
  border-color: rgba(40, 205, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(40, 205, 255, 0.16);
}

.preloaded-profile-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.preloaded-profile-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid rgba(255, 213, 102, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(12, 10, 33, 0.5);
}

.preloaded-profile-card.compact-empty-card {
  max-width: 720px;
}

.preloaded-profile-card .compact-button {
  margin-top: 4px;
}

.preloaded-profile-card h3,
.preloaded-profile-card p {
  margin: 0;
}

.preloaded-profile-card h3 {
  color: var(--ink);
}

.account-security-form {
  margin: 24px 0;
  max-width: 760px;
}

.signin-context-card span {
  color: var(--text);
  font-weight: 900;
}

.password-field {
  position: relative;
  display: grid;
}

.password-field input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(167, 220, 255, 0.45);
  border-radius: 999px;
  background: rgba(4, 14, 36, 0.65);
  box-shadow: none;
  transform: translateY(-50%);
}

.password-toggle::before {
  content: "";
  position: absolute;
  inset: 10px 7px;
  border: 2px solid var(--accent);
  border-radius: 60% 40% 60% 40%;
  transform: rotate(45deg);
}

.password-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  transform: translate(-50%, -50%);
}

.password-toggle[aria-pressed="true"]::before {
  border-color: var(--magenta);
}

.password-toggle[aria-pressed="true"]::after {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--magenta);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.compact-recovery-form {
  margin-top: 18px;
}

.compact-recovery-form h2,
.compact-recovery-form p {
  margin-bottom: 0;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.verification-steps article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.verification-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.monetization-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plans-summary-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.monetization-options article {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.monetization-options span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(25, 200, 255, 0.14);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.monetization-options h3,
.monetization-options p {
  margin-bottom: 0;
}

.monetization-options strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.plan-difference {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-difference article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 200, 255, 0.08);
}

.plan-difference span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-difference h3,
.plan-difference p {
  margin-bottom: 0;
}

.plan-difference ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feedback-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feedback-form h3,
.feedback-form p {
  margin-bottom: 0;
}

.feedback-status {
  min-height: 1.4em;
  color: var(--accent-soft);
  font-weight: 800;
}

.tool-surface {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
}

.mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.demo-scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.demo-scenario-grid button {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}

.demo-scenario-grid button:hover {
  border-color: rgba(25, 200, 255, 0.58);
  background: var(--surface-2);
}

.demo-scenario-grid span,
.demo-scenario-grid strong,
.demo-scenario-grid small {
  display: block;
}

.demo-scenario-grid span {
  font-weight: 800;
}

.demo-scenario-grid strong {
  color: var(--accent-soft);
  font-size: 0.9rem;
}

.demo-scenario-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.mode-switch button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.mode-switch button.active {
  border-color: rgba(25, 200, 255, 0.58);
  background: var(--accent);
  color: #fff;
}

.mode-panel[hidden] {
  display: none;
}

.planner,
.lead-form,
.recommendation-output,
.lead-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.planner,
.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.form-section-heading {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.form-section-heading:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.form-section-heading h3,
.form-section-heading p {
  margin: 0;
}

.form-section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.recommendation-output {
  min-height: 100%;
  padding: 22px;
}

.process-status-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  margin: 16px 0 18px;
}

.process-status-step {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-status-step small {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 900;
}

.process-status-step strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.86rem;
}

.process-status-step em {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.35;
}

.process-status-step.done {
  border-color: rgba(65, 217, 124, 0.44);
  background: rgba(65, 217, 124, 0.1);
}

.process-status-step.done small {
  background: rgba(65, 217, 124, 0.22);
  color: #b6ffd0;
}

.process-status-step.active {
  border-color: rgba(25, 200, 255, 0.72);
  background: rgba(25, 200, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(25, 200, 255, 0.18);
}

.process-status-step.active small {
  background: var(--accent);
  color: #fff;
}

.process-status-step.pending {
  opacity: 0.72;
}

.artist-result-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.artist-result-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 22, 67, 0.84);
}

.artist-profile-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.artist-profile-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.artist-profile-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.artist-profile-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.artist-profile-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.artist-profile-head h3,
.artist-profile-head p,
.artist-profile-body p,
.artist-profile-section p {
  margin-bottom: 0;
}

.artist-profile-body blockquote {
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.artist-profile-section {
  display: grid;
  gap: 8px;
}

.artist-profile-section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.recommendation-status {
  width: fit-content;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 900;
}

.recommendation-status.ready {
  border-color: rgba(53, 214, 255, 0.45);
  color: var(--accent-strong);
}

.recommendation-status.missing {
  border-color: rgba(255, 213, 102, 0.45);
  color: var(--warning);
}

.profile-trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.profile-status-pill,
.venue-showcase-card .profile-status-pill {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.profile-status-pill.preloaded,
.profile-status-pill.estimated,
.venue-showcase-card .profile-status-pill.preloaded,
.venue-showcase-card .profile-status-pill.estimated {
  border-color: rgba(255, 213, 102, 0.42);
  background: rgba(255, 213, 102, 0.12);
  color: #ffd566;
}

.profile-status-pill.claimed,
.profile-status-pill.partial,
.venue-showcase-card .profile-status-pill.claimed,
.venue-showcase-card .profile-status-pill.partial {
  border-color: rgba(53, 214, 255, 0.42);
  background: rgba(53, 214, 255, 0.1);
  color: var(--accent-strong);
}

.profile-status-pill.verified,
.venue-showcase-card .profile-status-pill.verified {
  border-color: rgba(76, 224, 155, 0.42);
  background: rgba(76, 224, 155, 0.1);
  color: var(--success);
}

.profile-claim-link,
.venue-showcase-card .profile-claim-link {
  border-bottom: 1px solid rgba(53, 214, 255, 0.45);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.profile-field-note {
  margin: 0;
  border-left: 3px solid rgba(255, 213, 102, 0.65);
  padding-left: 10px;
  color: var(--warning);
  font-size: 0.9rem;
  line-height: 1.45;
}

.artist-onboarding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 18px;
  width: min(1100px, calc(100% - 32px));
}

.artist-onboarding-grid article {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.artist-onboarding-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.artist-onboarding-grid h3,
.artist-onboarding-grid p {
  margin: 0;
}

.artist-profile-editor-grid,
.venue-profile-editor-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.artist-profile-editor-grid .single-form,
.venue-profile-editor-grid .single-form {
  max-width: none;
}

.artist-profile-preview-panel,
.venue-profile-preview-panel {
  min-width: 0;
}

.venue-preview-card .artist-signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venue-preview-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  max-height: 260px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.04);
}

.venue-preview-slideshow img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 520ms ease;
}

.venue-preview-slideshow img.active {
  opacity: 1;
}

.venue-preview-slideshow span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(3, 5, 20, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-sticky {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
}

.preview-sticky h3,
.preview-sticky p {
  margin: 0;
}

.preview-card {
  grid-template-columns: 1fr;
}

.preview-card img {
  max-height: 260px;
  min-height: 220px;
}

.artist-image-upload-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.artist-image-dropzone {
  display: grid;
  gap: 8px;
  min-height: 140px;
  align-content: center;
  justify-items: center;
  border: 1px dashed rgba(25, 200, 255, 0.42);
  border-radius: 8px;
  padding: 18px;
  background: rgba(25, 200, 255, 0.06);
  text-align: center;
}

.artist-image-dropzone.drag-over {
  border-color: rgba(25, 200, 255, 0.86);
  background: rgba(25, 200, 255, 0.14);
}

.artist-image-dropzone input {
  display: none;
}

.artist-image-dropzone span {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.artist-image-dropzone small {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.45;
}

.artist-image-preview-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.artist-image-preview-list figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.artist-image-preview-list img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.artist-image-preview-list figcaption,
.artist-image-preview-list p {
  margin: 0;
  padding: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.availability-calendar-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.availability-calendar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.availability-month {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.availability-month h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  text-transform: capitalize;
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.availability-weekdays span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

.availability-days button,
.availability-days span {
  display: grid;
  width: 100%;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.78rem;
}

.availability-days button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.availability-days button:hover,
.availability-days button.selected {
  border-color: rgba(25, 200, 255, 0.72);
  background: var(--accent);
  color: #fff;
}

.availability-days button.occupied {
  border-color: rgba(255, 107, 139, 0.46);
  background: rgba(255, 107, 139, 0.18);
  color: var(--danger);
  cursor: not-allowed;
  text-decoration: line-through;
}

.availability-days button.occupied:hover {
  border-color: rgba(255, 107, 139, 0.46);
  background: rgba(255, 107, 139, 0.18);
  color: var(--danger);
}

.availability-calendar-summary,
.occupied-calendar-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.occupied-tag {
  border-color: rgba(255, 107, 139, 0.38) !important;
  background: rgba(255, 107, 139, 0.14) !important;
  color: var(--danger) !important;
}

.venue-context {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 14, 42, 0.74);
}

.venue-context h3,
.venue-context p {
  margin-bottom: 0;
}

.comparison-summary {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(25, 200, 255, 0.28);
  border-radius: 8px;
  background: rgba(25, 200, 255, 0.08);
}

.comparison-summary h3 {
  margin-bottom: 0;
}

.artist-result-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.artist-result-head h3,
.artist-result-head p,
.artist-result-card p {
  margin-bottom: 0;
}

.rank-score {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 10px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.availability-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.availability-pill.tentative {
  background: rgba(240, 93, 255, 0.16);
  color: var(--gold);
}

.availability-pill.busy {
  background: rgba(255, 107, 139, 0.16);
  color: var(--danger);
}

.artist-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.artist-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.artist-proof-grid span,
.artist-signal-grid span,
.tag-row span {
  border-radius: 8px;
  background: var(--surface-soft);
}

.artist-proof-grid span {
  display: grid;
  gap: 3px;
  min-height: 70px;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
}

.artist-signal-grid span {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.artist-signal-grid small {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artist-proof-grid strong {
  color: var(--ink);
  font-size: 21px;
}

.artist-signal-grid strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.tag-row,
.artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tag-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.artist-actions {
  justify-content: space-between;
}

.compact-button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.proposal-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: transparent;
  color: #fff;
}

.proposal-button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.search-results {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.search-results article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.search-results article:first-child {
  border-top: 0;
}

.search-results article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.search-results h3 {
  margin-bottom: 4px;
}

.search-results ul {
  margin-top: 8px;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.score-row.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.score-row span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.score-row strong {
  color: var(--ink);
  font-size: 24px;
}

.score-row.compact strong {
  font-size: 20px;
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(25, 200, 255, 0.16);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.risk-pill.medium {
  background: rgba(240, 93, 255, 0.16);
  color: var(--gold);
}

.risk-pill.high {
  background: rgba(255, 107, 139, 0.16);
  color: var(--danger);
}

.join-section {
  background: var(--surface);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.single-form {
  max-width: 760px;
}

.lead-output {
  display: none;
  margin-top: 18px;
  padding: 18px;
}

.lead-output.visible {
  display: block;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.confirmation-grid span {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.confirmation-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.confirmation-grid strong {
  overflow-wrap: anywhere;
}

.lead-output pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 10px 0 0;
  color: var(--muted);
}

ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 18px;
  }

  body:not(.venue-page):not(.artist-page) .site-header::after {
    display: none;
  }

  .audience-badge {
    justify-self: center;
    min-width: 0;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding: 0 0 48px 18px;
  }

  .audience-hero {
    min-height: 78vh;
    padding: 0;
  }

  .audience-hero .hero-content {
    width: min(100% - 28px, 760px);
    padding: 0 0 48px 18px;
  }

  .hero-visual {
    display: none;
  }

  .metric-strip,
  .billing-band,
  .choice-grid,
  .referral-grid,
  .recommendation-entry-form .form-grid,
  .flow-lanes,
  .ops-hero,
  .ops-mini-grid,
  .ops-metrics,
  .split-section,
  .feature-grid,
    .process-flow,
    .tool-surface,
    .demo-scenario-grid,
    .process-status-track,
    .public-dashboard-grid,
    .public-location-map-layout,
    .public-task-list,
    .trust-grid,
    .signin-monetization-grid,
    .signup-grid,
    .verification-steps,
    .monetization-options,
    .plans-summary-grid,
    .plan-difference,
    .feedback-grid,
    .join-grid,
  .today-grid,
  .recommendation-builder,
  .recommendation-form,
  .command-grid,
  .native-status-grid,
    .dashboard-grid,
    .scenario-grid,
    .data-quality-summary,
    .public-lead-summary,
    .geo-summary-grid,
    .geo-map-grid,
    .data-quality-grid,
    .decision-grid,
    .follow-up-grid,
    .intake-grid,
    .ai-score-grid,
    .score-breakdown-grid,
    .monetization-grid,
    .validation-grid,
    .protection-grid,
    .protection-control-list,
    .contact-monitor-grid,
    .relationship-status-grid,
    .execution-list,
    .ops-rules,
    .confirmation-grid,
    .artist-profile-showcase,
    .post-profile-option-grid,
    .post-profile-option-grid.two-options,
    .venue-showcase-grid,
    .promoter-flow-context,
    .promoter-flow-context-meta,
    .proposal-workspace,
    .proposal-form,
    .contract-advantage-list,
    .platform-benefit-list,
    .platform-incentive-list,
    .payment-breakdown,
    .review-sections,
    .pre-event-form,
    .pre-event-form .pre-event-checks,
    .artist-profile-card,
    .artist-profile-head,
    .artist-onboarding-grid,
    .artist-profile-editor-grid,
    .artist-image-preview-list,
    .availability-calendar,
    .chatgpt-test-panel form,
    .payload-controls {
    grid-template-columns: 1fr;
  }

  .pre-event-check-heading {
    flex-direction: column;
  }

  .pre-event-progress {
    white-space: normal;
  }

  .plans-page .plans-hero {
    padding: 56px 24px 44px;
  }

  .chatgpt-test-panel .wide {
    grid-column: 1;
  }

  .public-location-map-heading {
    display: grid;
  }

  .public-map-legend {
    justify-content: flex-start;
  }

  .metric-strip article,
  .ops-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .artist-profile-card img {
    min-height: 260px;
    max-height: 360px;
  }

  .preview-sticky {
    position: static;
  }

  .split-section,
  .choice-section,
  .photo-strip-section,
  .flow-map,
  .workspace,
  .public-dashboard-section,
  .trust-section,
  .signup-section,
  .signin-monetization-section,
  .feedback-section,
  .complementary-heading-section,
  .join-section,
  .ops-hero,
  .ops-section {
    padding: 46px 18px;
  }

  .public-dashboard-card.lead-card,
  .public-dashboard-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .score-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .score-row.compact,
  .artist-signal-grid,
  .artist-proof-grid,
  .artist-result-head {
    grid-template-columns: 1fr;
  }

  .availability-pill {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 39px;
  }

  .hero-actions {
    display: grid;
  }

  .score-row {
    grid-template-columns: 1fr;
  }

  .artist-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 4, 22, 0.92);
  color: var(--muted);
  padding: 24px 20px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(246, 243, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.event-list-panel {
  margin-bottom: 28px;
}

.event-workspace-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.event-workspace-grid .single-form {
  max-width: none;
}

.event-workspace-grid .event-list-panel {
  position: sticky;
  top: 92px;
}

.event-list-header {
  margin-bottom: 16px;
}

.event-list-header h3 {
  margin: 4px 0 6px;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
}

.event-list-header p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list-empty,
.event-list-card {
  background: rgba(16, 18, 50, 0.72);
  border: 1px solid rgba(124, 60, 255, 0.45);
  border-radius: 8px;
  padding: 22px;
}

.event-list-card {
  display: grid;
  gap: 16px;
}

.event-list-card h3,
.event-list-empty h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.event-list-card p,
.event-list-empty p {
  margin: 0;
}

.event-list-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-list-meta span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(47, 203, 255, 0.28);
  border-radius: 8px;
  padding: 12px;
}

.event-list-meta small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}

.event-list-meta strong {
  color: var(--text);
  display: block;
}

.event-checkbox-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.event-checkbox-field legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
}

.event-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-checkbox-grid label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(47, 203, 255, 0.38);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 900;
}

.event-checkbox-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.event-checkbox-grid label:has(input:checked) {
  border-color: rgba(47, 203, 255, 0.72);
  background: rgba(47, 203, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(124, 60, 255, 0.32);
}

.event-selection-summary {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  border: 1px solid rgba(124, 60, 255, 0.36);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5, 4, 22, 0.3);
}

.event-selection-summary p,
.event-selection-summary strong {
  margin: 0;
}

.event-selection-summary strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.selected-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.selected-chip-row span {
  border: 1px solid rgba(47, 203, 255, 0.42);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(47, 203, 255, 0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .event-workspace-grid {
    grid-template-columns: 1fr;
  }

  .event-workspace-grid .event-list-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .event-list-meta {
    grid-template-columns: 1fr;
  }

  .event-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
