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

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

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

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

.hm-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; position: relative; z-index: 1;
}

/* LEFT */
.hm-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--teal-border);
  border-radius: 100px; font-size: 12px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--teal); letter-spacing: 0.03em;
  margin-bottom: 24px; background: var(--teal-dim);
}
.hm-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hm-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 20px;
}

.hm-sub {
  font-size: 17px; line-height: 1.65;
  color: var(--text-dim); max-width: 440px;
  margin-bottom: 32px;
}

/* Magnet box */
.hm-magnet-box {
  background: var(--surface); border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 24px;
}
.hm-magnet-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.hm-magnet-icon { flex-shrink: 0; }
.hm-magnet-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em;
}
.hm-magnet-desc {
  font-size: 15px; color: var(--text-dim); margin-bottom: 16px; line-height: 1.6;
}
.hm-magnet-checklist { display: flex; flex-direction: column; gap: 8px; }
.hm-check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim); font-family: var(--font-display);
  font-weight: 500;
}

/* Form */
.hm-form { max-width: 480px; }
.hm-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
.hm-input {
  width: 100%; padding: 13px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.hm-input::placeholder { color: var(--text-muted); }
.hm-input:focus {
  border-color: var(--teal-border);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
}

.hm-submit {
  width: 100%; padding: 15px 24px;
  background: var(--teal); color: #0a0a0f;
  border: none; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 20px rgba(0,245,255,0.2);
}
.hm-submit:hover:not(:disabled) { opacity: 0.88; }
.hm-submit:active:not(:disabled) { transform: scale(0.99); }
.hm-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.hm-form-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 10px; text-align: center;
}
.hm-form-error {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 14px; color: #fca5a5;
  margin-top: 12px; max-width: 480px;
}

/* RIGHT */
.hm-right { display: flex; flex-direction: column; gap: 16px; }

/* Track card */
.hm-track-card {
  background: var(--surface); border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 0 60px rgba(0,245,255,0.06), 0 20px 60px rgba(0,0,0,0.3);
}
.hm-track-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.hm-track-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
}
.hm-track-tag {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  background: var(--teal-dim); color: var(--teal);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.06em;
  border: 1px solid var(--teal-border);
}
.hm-track-list { display: flex; flex-direction: column; gap: 0; }
.hm-track {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.hm-track-last { border-bottom: none; }
.hm-track-thumb {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
}
.hm-track-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hm-track-thumb-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  border-radius: 6px;
}
.hm-track-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  color: var(--text-muted); min-width: 24px;
}
.hm-track-info { flex: 1; }
.hm-track-name {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
}
.hm-track-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.hm-track-badge {
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  background: var(--teal-dim); color: var(--teal);
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.04em;
  border: 1px solid var(--teal-border);
}
.hm-track-footer {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12px; color: rgba(240,240,240,0.4);
  font-family: var(--font-display); font-weight: 500;
}

/* Benefit card */
.hm-benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.hm-benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.hm-benefit-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hm-benefit-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.hm-benefit-desc { font-size: 12px; color: var(--text-dim); }

/* SOCIAL PROOF */
.social-proof {
  background: var(--bg-alt); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 48px 32px;
}
.sp-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.sp-stat { padding: 0 48px; text-align: center; }
.sp-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--teal); letter-spacing: -0.04em; margin-bottom: 4px;
}
.sp-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
}
.sp-divider { width: 1px; height: 48px; background: var(--border); }

/* FOOTER */
.footer-magnet { padding: 48px 32px; border-top: 1px solid var(--border); }
.fm-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.fm-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.fm-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text); }
.fm-hz { font-size: 12px; color: var(--text-muted); font-family: var(--font-display); }
.fm-socials { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.fm-social-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-family: var(--font-display); font-weight: 600;
  color: var(--text-dim); text-decoration: none;
  transition: color 0.2s;
}
.fm-social-link:hover { color: var(--teal); }
.fm-copy { font-size: 11px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hm-inner { grid-template-columns: 1fr; gap: 48px; }
  .hm-right { display: none; }
}
@media (max-width: 600px) {
  .hero-magnet { padding: 100px 20px 60px; }
  .hm-form-row { grid-template-columns: 1fr; }
  .hm-headline { font-size: 38px; }
  .sp-stat { padding: 0 24px; }
  .sp-divider { display: none; }
}