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

:root {
  --font-main:    "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "neue-haas-grotesk-display", "neue-haas-grotesk-text", "Helvetica Neue", Arial, sans-serif;
  --black:      #080808;
  --black-soft: #0f0f0f;
  --surface:    #141414;
  --surface-2:  #1c1c1c;
  --border:     rgba(255,255,255,0.08);
  --border-mid: rgba(255,255,255,0.14);
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.55);
  --muted2:     rgba(255,255,255,0.28);
  --accent:     #6a20e6;
  --accent-dim: rgba(106,32,230,0.10);
  --accent-hover: #8b45ff;
  --nav-h:    72px;
  --player-h: 72px;
}

/* State overrides — solo el acento cambia */
.state-threshold { --accent: #888880; --accent-dim: rgba(136,136,128,0.09); }
.state-sundown   { --accent: #c87941; --accent-dim: rgba(200,121,65,0.09); }
.state-dawn      { --accent: #6a20e6; --accent-dim: rgba(106,32,230,0.09); }
.state-pulse     { --accent: #d4ff00; --accent-dim: rgba(212,255,0,0.07); }

html, body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
body { padding-top: var(--nav-h); padding-bottom: var(--player-h); }

.accent-wash {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-dim, transparent) 0%, transparent 70%);
  transition: background 1.1s ease;
}

/* iframe SC oculto */
#sc-iframe-container {
  position: fixed; width: 1px; height: 1px;
  bottom: calc(var(--player-h) + 8px); right: 0;
  overflow: active; opacity: 0; pointer-events: none; z-index: -1;
}
#sc-iframe-container iframe { width: 400px; height: 166px; }

/* ═══ NAVBAR ═══ */
.radio-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition: background 0.3s, border-color 0.3s;
}
.radio-navbar.scrolled { background: rgba(8,8,8,0.97); border-bottom-color: var(--border-mid); }
.nav-logo img { width: 68px; display: block; transition: opacity 0.2s; }
.nav-logo img:hover { opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.page { position: relative; z-index: 1; }

/* ═══ HERO ═══ */
.radio-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 6% 90px;
  border-bottom: 1px solid var(--border);
}
.radio-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.55s ease;
}
.radio-eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--accent);
  transition: background 0.55s ease;
}
.radio-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.88; letter-spacing: -0.035em;
  margin-bottom: 32px; color: var(--white);
}
.radio-title span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.22); }
.radio-tagline {
  font-size: 15px; font-weight: 400; color: var(--muted);
  max-width: 440px; line-height: 1.75; margin-bottom: 60px;
}
.btn-activate {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); padding: 13px 28px;
  font-family: var(--font-main); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.55s;
}
.btn-activate:hover { background: var(--accent); color: var(--black); }
.btn-activate.active { background: var(--accent); color: var(--black); pointer-events: none; }
.btn-activate .play-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.btn-activate.active .play-dot { animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ═══ STATES ═══ */
.states-section { padding: 100px 6%; border-bottom: 1px solid var(--border); }
.states-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px;
  display: flex; align-items: center; gap: 10px;
}
.states-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--muted2); }
.states-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.state-btn {
  background: var(--black); border: none; padding: 32px 28px;
  text-align: left; cursor: pointer; transition: background 0.3s;
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-main); position: relative;
}
.state-btn::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background 0.4s;
}
.state-btn:hover { background: var(--surface); }
.state-btn.active { background: var(--surface); }
.state-btn.active::after { background: var(--accent); }
.state-number { font-size: 10px; letter-spacing: 0.14em; color: var(--muted); }
.state-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--white); transition: color 0.3s; }
.state-btn.active .state-name { color: var(--accent); }
.state-concept { font-size: 12px; color: var(--muted); line-height: 1.6; }
.state-tag { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); margin-top: 4px; }

.state-info-bar {
  padding: 20px 6%; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px; min-height: 60px;
}
.state-info-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transition: background 0.55s ease; }
.state-info-text { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }
.state-info-name { color: var(--white); font-weight: 500; }

/* ═══════════════════════════════════════
   SECCIÓN TRANSFERENCIA
   ═══════════════════════════════════════ */
.transfer-section {
  padding: 100px 6%;
  border-bottom: 1px solid var(--border);
}
.transfer-header { margin-bottom: 64px; }
.transfer-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.55s ease;
}
.transfer-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--accent);
  transition: background 0.55s ease;
}
.transfer-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 20px;
}
.transfer-title span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); }
.transfer-subtitle { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 480px; }

.transfer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border); border: 1px solid var(--border);
}

/* Panel izquierdo */
.transfer-left {
  background: var(--surface);
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 40px;
}
.alias-block { display: flex; flex-direction: column; gap: 10px; }
.alias-label-text { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted2); }
.alias-value {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--white);
  line-height: 1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.alias-copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; background: transparent;
  border: 1px solid var(--border-mid); color: var(--muted);
  font-family: var(--font-main); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s; flex-shrink: 0;
}
.alias-copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.alias-copy-btn.copied { border-color: var(--accent); color: var(--black); background: var(--accent); }
.alias-copy-btn svg { width: 10px; height: 10px; fill: currentColor; }
.alias-meta { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--border); padding-top: 16px; }
.alias-meta-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.alias-meta-key { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted2); }
.alias-meta-val { font-size: 12px; color: var(--white); }

/* Tipo de usuario */
.user-type-block { display: flex; flex-direction: column; gap: 12px; }
.user-type-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted2); }
.user-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.user-type-btn {
  padding: 14px 12px; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--muted);
  font-family: var(--font-main); font-size: 11px; cursor: pointer;
  text-align: left; transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: flex; flex-direction: column; gap: 4px;
}
.user-type-btn:hover { border-color: var(--border-mid); color: var(--white); }
.user-type-btn.active { border-color: var(--accent); color: var(--white); background: var(--accent-dim); }
.user-type-name { font-weight: 600; font-size: 12px; }
.user-type-desc { font-size: 10px; color: var(--muted); letter-spacing: 0.01em; }
.user-type-btn.active .user-type-desc { color: var(--muted); }
.user-type-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 2px 7px; margin-top: 4px; width: fit-content;
  transition: color 0.55s ease, border-color 0.55s ease;
}

/* Montos */
.amount-options { display: flex; flex-direction: column; gap: 12px; }
.amount-label-text { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted2); margin-bottom: 2px; }
.amount-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.amount-pill {
  padding: 9px 18px; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--muted);
  font-family: var(--font-main); font-size: 12px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.amount-pill:hover { border-color: var(--border-mid); color: var(--white); }
.amount-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.amount-custom { display: flex; align-items: center; border: 1px solid var(--border); background: var(--surface-2); transition: border-color 0.2s; }
.amount-custom:focus-within { border-color: var(--border-mid); }
.amount-currency { padding: 10px 12px; font-size: 11px; color: var(--muted); border-right: 1px solid var(--border); font-family: var(--font-main); }
.amount-input { flex: 1; padding: 10px 14px; background: transparent; border: none; outline: none; color: var(--white); font-family: var(--font-main); font-size: 13px; }
.amount-input::placeholder { color: var(--muted2); }

/* Descuento badge */
.discount-info {
  display: none; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--accent-dim); border: 1px solid rgba(106,32,230,0.3);
  font-size: 11px; color: var(--white);
  animation: slideUp 0.3s ease;
}
.discount-info.visible { display: flex; }
.discount-info svg { width: 14px; height: 14px; fill: none; stroke: var(--accent); stroke-width: 2; flex-shrink: 0; transition: stroke 0.55s ease; }
.discount-pct { color: var(--accent); font-weight: 600; transition: color 0.55s ease; }

/* Panel derecho — pasos */
.transfer-right {
  background: var(--black-soft);
  padding: 48px 44px;
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 440px; position: relative;
}
.step-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.step-cta-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted2);
  display: flex; align-items: center; gap: 8px;
}
.step-cta-label::before { content: ''; width: 14px; height: 1px; background: var(--muted2); display: inline-block; }
.btn-buy {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; background: var(--accent); color: var(--black);
  border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-buy:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-buy svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.step-cta-hint { font-size: 11px; color: var(--muted2); line-height: 1.7; max-width: 280px; }

/* Pasos */
.form-steps-wrap { display: none; flex-direction: column; gap: 32px; width: 100%; }
.form-steps-wrap.active { display: flex; }
.steps-progress { display: flex; align-items: center; }
.step-pip { display: flex; align-items: center; }
.step-pip-inner { display: flex; flex-direction: column; align-items: center; }
.step-pip-dot {
  width: 20px; height: 20px; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--muted2);
  transition: border-color 0.3s, background 0.3s, color 0.3s; flex-shrink: 0;
}
.step-pip.done .step-pip-dot { background: var(--accent); border-color: var(--accent); color: var(--black); }
.step-pip.active .step-pip-dot { border-color: var(--accent); color: var(--accent); }
.step-pip-line { width: 40px; height: 1px; background: var(--border); transition: background 0.4s; }
.step-pip.done .step-pip-line { background: var(--accent); }
.step-pip-label { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted2); margin-top: 5px; display: block; text-align: center; transition: color 0.3s; }
.step-pip.active .step-pip-label, .step-pip.done .step-pip-label { color: var(--accent); }

.form-step { display: none; flex-direction: column; gap: 18px; animation: stepIn 0.35s ease; }
.form-step.active { display: flex; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.step-heading { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.02em; color: var(--white); line-height: 1.1; }

.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); }
.field-input {
  padding: 13px 16px; background: var(--surface); border: 1px solid var(--border);
  color: var(--white); font-family: var(--font-main); font-size: 14px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.field-input::placeholder { color: var(--muted2); font-size: 13px; }
.field-input:focus { border-color: var(--border-mid); }
.field-input.error { border-color: rgba(230,50,50,0.5); }

.btn-step-next {
  width: 100%; padding: 14px; background: var(--accent); color: var(--black);
  border: none; cursor: pointer; font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px;
}
.btn-step-next:hover { background: var(--accent-hover); }
.btn-step-next svg { width: 14px; height: 14px; fill: currentColor; }

.btn-step-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-main); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; transition: color 0.2s; align-self: flex-start;
}
.btn-step-back:hover { color: var(--white); }
.btn-step-back svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 2; }

.upload-zone {
  border: 1px dashed var(--border-mid); padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  cursor: pointer; transition: border-color 0.25s, background 0.25s;
  position: relative; overflow: hidden; text-align: center;
}
.upload-zone:hover { border-color: var(--accent); background: var(--accent-dim); }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-zone-icon { width: 44px; height: 44px; border: 1px solid var(--border-mid); display: flex; align-items: center; justify-content: center; transition: border-color 0.25s; }
.upload-zone:hover .upload-zone-icon { border-color: var(--accent); }
.upload-zone-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.5; transition: stroke 0.25s; }
.upload-zone:hover .upload-zone-icon svg { stroke: var(--accent); }
.upload-zone-text { font-size: 12px; color: var(--muted); line-height: 1.7; }
.upload-zone-text strong { color: var(--white); font-weight: 400; display: block; font-size: 13px; margin-bottom: 2px; }
.upload-zone.has-file { border-color: rgba(106,32,230,0.4); background: var(--accent-dim); }
.upload-zone.has-file .upload-zone-icon { border-color: var(--accent); }
.upload-zone.has-file .upload-zone-icon svg { stroke: var(--accent); }

.btn-submit {
  width: 100%; padding: 14px; background: var(--accent); color: var(--black);
  border: none; cursor: pointer; font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, opacity 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-submit .submit-spinner { width: 14px; height: 14px; border: 2px solid rgba(0,0,0,0.3); border-top-color: var(--black); border-radius: 50%; animation: spin 0.6s linear infinite; display: none; }
.btn-submit.loading .submit-spinner { display: block; }
.btn-submit.loading .submit-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.submit-success {
  display: none; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 28px 32px; background: var(--surface-2);
  border: 1px solid rgba(106,32,230,0.3); border-left: 3px solid var(--accent);
  animation: slideUp 0.4s ease; width: 100%;
}
.submit-success.visible { display: flex; }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.success-icon { width: 36px; height: 36px; border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; }
.success-icon svg { width: 16px; height: 16px; stroke: var(--accent); stroke-width: 2; fill: none; }
.success-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--white); }
.success-sub { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ═══ MINI PLAYER ═══ */
.mini-player {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--player-h); background: #0d0d0d;
  border-top: 1px solid var(--border-mid);
  z-index: 1000; display: flex; align-items: center;
  padding: 0 20px; gap: 16px;
  transition: border-top-color 0.55s ease;
}
.mini-player.has-accent { border-top-color: var(--accent); }
.player-artwork { width: 44px; height: 44px; background: var(--surface-2); flex-shrink: 0; overflow: hidden; }
.player-artwork img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artwork-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.artwork-placeholder svg { opacity: 0.25; }
.player-state-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transition: background 0.55s ease; }
.player-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.player-track { font-size: 13px; font-weight: 400; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-playing-indicator { display: flex; align-items: flex-end; gap: 2px; height: 14px; flex-shrink: 0; }
.playing-bar { width: 2px; background: var(--accent); border-radius: 1px; transition: background 0.55s ease; }
.is-playing .playing-bar:nth-child(1) { animation: playBar 0.8s ease-in-out 0s    infinite alternate; }
.is-playing .playing-bar:nth-child(2) { animation: playBar 0.8s ease-in-out 0.15s infinite alternate; }
.is-playing .playing-bar:nth-child(3) { animation: playBar 0.8s ease-in-out 0.3s  infinite alternate; }
@keyframes playBar { from { height: 3px; } to { height: 14px; } }
.player-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ctrl-btn { width: 36px; height: 36px; background: transparent; border: 1px solid var(--border-mid); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
.ctrl-btn:hover { background: var(--surface-2); }
.ctrl-btn svg { width: 14px; height: 14px; fill: currentColor; }
.ctrl-btn.primary { width: 40px; height: 40px; border-color: var(--accent); color: var(--accent); transition: background 0.55s ease, border-color 0.55s ease, color 0.55s ease; }
.ctrl-btn.primary:hover { background: var(--accent); color: var(--black); }
.player-social { display: flex; align-items: center; gap: 4px; flex-shrink: 0; margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--border); }
.social-btn { background: transparent; border: none; color: var(--muted); cursor: pointer; font-family: var(--font-main); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 10px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; white-space: nowrap; }
.social-btn:hover { color: var(--white); }
.social-btn svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }
.social-btn.liked { color: var(--accent); }

/* ═══ ONBOARDING ═══ */
.onboarding-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,8,0.9); backdrop-filter: blur(14px); display: none; align-items: center; justify-content: center; }
.onboarding-overlay.visible { display: flex; }
.onboarding-card { background: var(--surface); border: 1px solid var(--border-mid); padding: 40px 48px; max-width: 400px; width: 90%; text-align: center; }
.onboarding-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.015em; color: var(--white); margin-bottom: 12px; }
.onboarding-sub { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.btn-onboarding-close { background: var(--accent); border: none; color: var(--black); padding: 12px 32px; width: 100%; font-family: var(--font-main); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.btn-onboarding-close:hover { background: var(--accent-hover); }

/* ═══ FOOTER — más angosto, sin logo ni tagline ═══ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  position: relative; z-index: 1;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 6%; }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.footer-socials { display: flex; align-items: center; gap: 20px; }
.social-link { font-size: 11px; letter-spacing: 0.05em; color: var(--muted); transition: color 0.2s; text-decoration: none; }
.social-link:hover { color: var(--accent); }
.footer-copy { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.15); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) { .transfer-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .states-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); right: -100%;
    width: 72%; height: calc(100vh - var(--nav-h));
    background: rgba(8,8,8,0.97); backdrop-filter: blur(14px);
    flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 0 10%; gap: 28px;
    border-left: 1px solid var(--border);
    transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94); z-index: 899;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .transfer-left, .transfer-right { padding: 32px 24px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .radio-hero { padding: 60px 5% 70px; }
  .states-section { padding: 60px 5%; }
  .transfer-section { padding: 60px 5%; }
  .states-grid { grid-template-columns: 1fr 1fr; }
  .state-btn { padding: 20px 16px; }
  .state-name { font-size: 17px; }
  .player-social { display: none; }
  .mini-player { padding: 0 12px; gap: 10px; }
  .user-type-grid { grid-template-columns: 1fr; }
}
