:root {
  --bg: #060A14;
  --surface: #0B1020;
  --surface-2: #0F1629;
  --border: #1A2035;
  --border-2: #242B45;
  --gold: #F5C842;
  --gold-dim: #C9A32E;
  --text: #EAE6DF;
  --text-muted: #8A91A8;
  --text-dim: #555D78;
  --red: #EF4444;
  --green: #22C55E;
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(6,10,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}
.proof-label { font-size: 12px; color: var(--text-muted); }
.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border-2);
}

/* Artist card */
.artist-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.artist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.artist-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.artist-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A2A4A, #0F1A2E);
  border: 2px solid var(--border-2);
  flex-shrink: 0;
}
.artist-info { flex: 1; min-width: 0; }
.artist-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist-type { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.artist-score {
  text-align: center;
  flex-shrink: 0;
}
.score-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.score-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.artist-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.artist-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.artist-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.booking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--green);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Section labels */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

/* How It Works */
.hiw {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.section-header {
  margin-bottom: 56px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hiw-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hiw-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hiw-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.hiw-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Score section */
.score-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.score-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.score-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.score-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.score-weights { display: flex; flex-direction: column; gap: 14px; }
.weight-row {
  display: grid;
  grid-template-columns: 200px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.weight-label { font-size: 13px; color: var(--text-muted); }
.weight-bar {
  height: 6px;
  background: var(--border-2);
  border-radius: 3px;
  overflow: hidden;
}
.weight-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  border-radius: 3px;
}
.weight-pct {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  text-align: right;
}
.score-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.score-svg { width: 120px; height: 120px; }
.score-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.score-unit {
  font-size: 14px;
  color: var(--text-dim);
}
.score-artist-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.score-artist-meta { font-size: 13px; color: var(--text-muted); }

/* Escrow */
.escrow-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.escrow-inner { max-width: 700px; }
.escrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.escrow-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.escrow-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.escrow-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.flow-icon {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.flow-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.flow-arrow { color: var(--border-2); flex-shrink: 0; }
.escrow-protections {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.protection-tag {
  font-size: 12px;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 5px 11px;
  border-radius: 100px;
}

/* Anedot */
.antedot-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.antedot-inner { max-width: 700px; }
.antedot-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.antedot-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.antedot-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.antedot-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.antedot-card.blocked { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.15); }
.antedot-card.unlocked { background: rgba(34,197,94,0.04); border-color: rgba(34,197,94,0.15); }
.antedot-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.blocked .antedot-status { color: var(--red); }
.unlocked .antedot-status { color: var(--green); }
.antedot-examples { display: flex; flex-direction: column; gap: 8px; }
.redacted-msg {
  font-size: 13px;
  color: var(--text-dim);
  font-family: 'DM Mono', 'Courier New', monospace;
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.unlocked-msg {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'DM Mono', 'Courier New', monospace;
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-2);
}
.antedot-footnote {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Closing */
.closing-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-tag {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-2);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
}
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-note { font-size: 12px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
  .score-inner { grid-template-columns: 1fr; gap: 48px; }
  .score-visual { flex-direction: row; align-items: center; justify-content: flex-start; gap: 32px; }
  .score-circle { width: 80px; height: 80px; }
  .score-svg { width: 80px; height: 80px; }
  .score-big { font-size: 30px; }
  .antedot-cards { grid-template-columns: 1fr; }
  .escrow-flow { flex-direction: column; align-items: flex-start; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .weight-row { grid-template-columns: 1fr 1fr 30px; }
}