/* ===========================
   FLOW PUBLISHING — CSS
   =========================== */

/* ── LANDING ── */
.pub-landing { background: var(--black); }

.pub-nav-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,24,31,0.1); border: 1px solid rgba(232,24,31,0.3);
  color: var(--red); padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  margin: 0 auto;
}

.pub-hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 100px; }
.pub-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 65% 50%, rgba(232,24,31,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(232,24,31,0.07) 0%, transparent 60%), #000;
  z-index: 0;
}
.pub-hero__content {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative; z-index: 2; padding: 40px 0 80px;
}
.pub-hero__text { display: flex; flex-direction: column; gap: 0; }

/* MOCKUP CARD */
.pub-card-mockup {
  background: rgba(18,18,18,0.97); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,24,31,0.1);
}
.pcm-header { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.pcm-dot { width: 10px; height: 10px; border-radius: 50%; }
.pcm-dot.red { background: #ff5f57; } .pcm-dot.yellow { background: #febc2e; } .pcm-dot.green { background: #28c840; }
.pcm-title { font-size: 0.8rem; color: var(--muted); margin-left: 8px; font-weight: 600; }
.pcm-track { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 12px 14px; margin-bottom: 20px; }
.pcm-track-icon { width: 36px; height: 36px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; flex-shrink: 0; }
.pcm-track-name { display: block; font-size: 0.85rem; font-weight: 700; }
.pcm-track-sub { display: block; font-size: 0.72rem; color: var(--muted); }
.pcm-progress-section { margin-bottom: 20px; }
.pcm-label { display: block; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pcm-steps { display: flex; gap: 4px; margin-bottom: 10px; }
.pcm-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.62rem; color: var(--muted); text-align: center; }
.pcm-step i { font-size: 0.7rem; }
.pcm-step.done { color: var(--red); }
.pcm-step.active { color: #ffc800; }
.pcm-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.pcm-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), #ff6b6b); border-radius: 4px; }
.pcm-royalties { background: rgba(232,24,31,0.06); border: 1px solid rgba(232,24,31,0.15); border-radius: 12px; padding: 14px 16px; }
.pcm-amount { display: block; font-size: 1.4rem; font-weight: 800; margin-top: 4px; }
.pcm-amount small { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── FEATURES SECTION ── */
.pub-features { padding: 100px 0; background: #050505; }
.pub-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pub-feat-card {
  background: linear-gradient(145deg, #131313, #0e0e0e);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 24px;
  padding: 36px 28px; transition: all 0.3s ease;
}
.pub-feat-card:hover { border-color: rgba(232,24,31,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.pub-feat-card--highlight { background: linear-gradient(145deg, #1a0808, #110505); border-color: rgba(232,24,31,0.2); }
.pub-feat-icon { width: 60px; height: 60px; border: 2px solid rgba(232,24,31,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); background: rgba(232,24,31,0.06); margin-bottom: 20px; }
.pub-feat-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.pub-feat-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── AUTH PAGES ── */
.pub-auth-page { background: var(--black); min-height: 100vh; display: flex; }
.pub-auth-container { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; width: 100%; }
.pub-auth-left {
  background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
  border-right: 1px solid rgba(232,24,31,0.15);
  padding: 60px 48px; display: flex; flex-direction: column; gap: 24px; justify-content: center;
}
.pub-auth-left__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,24,31,0.1); border: 1px solid rgba(232,24,31,0.3); color: var(--red); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; width: fit-content; }
.pub-auth-left h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.2; }
.pub-auth-left p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 380px; }
.pub-auth-features { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.pub-auth-features div { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.pub-auth-features i { color: var(--red); }
.pub-auth-right { display: flex; align-items: center; justify-content: center; padding: 60px 48px; }
.pub-auth-form-wrap { width: 100%; max-width: 480px; }
.pub-auth-form-wrap h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.pub-auth-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 32px; }
.pub-auth-sub a { color: var(--red); font-weight: 600; }
.pub-auth-back { text-align: center; margin-top: 20px; font-size: 0.85rem; }
.pub-auth-back a { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.pub-auth-back a:hover { color: var(--white); }

/* ── FORMS ── */
.pub-form { display: flex; flex-direction: column; gap: 20px; }
.pub-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pub-field { display: flex; flex-direction: column; gap: 6px; }
.pub-field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.pub-field label span { color: var(--red); }
.pub-field--full { grid-column: 1 / -1; }
.pub-input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 0 14px; transition: border-color 0.2s;
}
.pub-input-wrap:focus-within { border-color: rgba(232,24,31,0.5); }
.pub-input-wrap > i { color: var(--muted); font-size: 0.85rem; flex-shrink: 0; }
.pub-input-wrap input,
.pub-input-wrap select,
.pub-input-wrap textarea {
  background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--font); font-size: 0.88rem;
  padding: 12px 0; width: 100%;
}
.pub-input-wrap select option { background: #111; color: #fff; }
.pub-textarea-wrap { align-items: flex-start; padding: 12px 14px; }
.pub-textarea-wrap textarea { resize: vertical; padding: 0; }
.pub-input--error { border-color: var(--red) !important; }
.pub-error { font-size: 0.75rem; color: var(--red); display: none; }
.pub-toggle-pw { background: none; border: none; color: var(--muted); cursor: pointer; padding: 0 4px; font-size: 0.85rem; }
.pub-btn-full { width: 100%; justify-content: center; border-radius: 10px; padding: 14px; font-size: 0.95rem; }
.pub-form-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ALERTS */
.pub-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; font-weight: 500;
}
.pub-alert--success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #00c864; }
.pub-alert--error   { background: rgba(232,24,31,0.1); border: 1px solid rgba(232,24,31,0.3); color: var(--red); }
.pub-alert--info    { background: rgba(0,150,255,0.1); border: 1px solid rgba(0,150,255,0.3); color: #0096ff; }

/* ── APP LAYOUT ── */
.pub-app { display: flex; min-height: 100vh; background: #080808; }

.pub-sidebar {
  width: 240px; background: #0a0a0a; border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
  transition: transform 0.3s ease;
}
.pub-sidebar--admin { border-right-color: rgba(232,24,31,0.15); }
.pub-sidebar__logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 8px; }
.pub-sidebar__module { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 6px; }
.pub-sidebar__module--admin { color: #ffc800; }
.pub-sidebar__nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
.pub-nav-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: 10px; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.2s ease;
}
.pub-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.pub-nav-item.active { background: rgba(232,24,31,0.12); color: var(--white); border-left: 3px solid var(--red); }
.pub-nav-item i { width: 18px; text-align: center; font-size: 0.9rem; flex-shrink: 0; }
.pub-sidebar__footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.pub-logout { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 0.85rem; font-family: var(--font); width: 100%; transition: all 0.2s; }
.pub-logout:hover { background: rgba(232,24,31,0.1); color: var(--red); }

.pub-main { flex: 1; margin-left: 240px; display: flex; flex-direction: column; min-height: 100vh; }

.pub-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px; height: 64px; background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.06); position: sticky; top: 0; z-index: 50;
}
.pub-menu-toggle { background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; display: none; }
.pub-topbar__title { font-weight: 700; font-size: 1rem; color: var(--white); flex: 1; }
.pub-topbar__user { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.pub-user-avatar { width: 32px; height: 32px; background: rgba(232,24,31,0.15); border: 1px solid rgba(232,24,31,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 0.8rem; }
.pub-user-avatar--admin { background: rgba(255,200,0,0.1); border-color: rgba(255,200,0,0.3); color: #ffc800; }

.pub-content { padding: 32px 28px; flex: 1; }
.pub-welcome { margin-bottom: 28px; }
.pub-welcome h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.pub-welcome p { font-size: 0.9rem; color: var(--muted); }

/* STATS GRID */
.pub-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.pub-stat-card { background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 16px; }
.pub-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.pub-stat-num { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.pub-stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* SECTION CARD */
.pub-section-card { background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.pub-section-card__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pub-section-card__header h3 { font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.pub-section-card__header h3 i { color: var(--red); }

/* COMP ROW (dashboard) */
.pub-comp-row { display: flex; align-items: center; gap: 16px; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
.pub-comp-row:hover { background: rgba(255,255,255,0.02); }
.pub-comp-info { flex: 1; }
.pub-comp-title { display: block; font-size: 0.9rem; font-weight: 600; }
.pub-comp-genre { display: block; font-size: 0.75rem; color: var(--muted); }
.pub-comp-link { color: var(--muted); font-size: 0.8rem; }

/* COMP CARD (list) */
.pub-comp-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.2s; }
.pub-comp-card:hover { background: rgba(255,255,255,0.02); }
.pub-comp-card__left { display: flex; align-items: center; gap: 14px; }
.pub-comp-card__icon { width: 42px; height: 42px; background: rgba(232,24,31,0.1); border: 1px solid rgba(232,24,31,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 0.9rem; flex-shrink: 0; }
.pub-comp-card__title { font-size: 0.92rem; font-weight: 700; }
.pub-comp-card__meta { font-size: 0.75rem; color: var(--muted); }
.pub-comp-card__date { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.pub-comp-card__right { display: flex; align-items: center; gap: 12px; }

/* EMPTY STATE */
.pub-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 60px 24px; color: var(--muted); text-align: center; }
.pub-empty i { font-size: 2.5rem; opacity: 0.3; }
.pub-empty p { font-size: 0.88rem; line-height: 1.6; }
.pub-empty a { color: var(--red); font-weight: 600; }

/* STATUS BADGES */
.pub-status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.pub-status-pendiente  { background: rgba(255,200,0,0.12);  color: #ffc800;  border: 1px solid rgba(255,200,0,0.25); }
.pub-status-revision   { background: rgba(0,150,255,0.12);  color: #0096ff;  border: 1px solid rgba(0,150,255,0.25); }
.pub-status-registrada { background: rgba(255,140,0,0.12);  color: #ff8c00;  border: 1px solid rgba(255,140,0,0.25); }
.pub-status-proceso    { background: rgba(150,0,255,0.12);  color: #9600ff;  border: 1px solid rgba(150,0,255,0.25); }
.pub-status-finalizada { background: rgba(0,200,100,0.12);  color: #00c864;  border: 1px solid rgba(0,200,100,0.25); }
.pub-status-pay-pendiente  { background: rgba(255,200,0,0.12);  color: #ffc800;  border: 1px solid rgba(255,200,0,0.25); }
.pub-status-pay-aprobada   { background: rgba(0,150,255,0.12);  color: #0096ff;  border: 1px solid rgba(0,150,255,0.25); }
.pub-status-pay-rechazada  { background: rgba(232,24,31,0.12);   color: var(--red); border: 1px solid rgba(232,24,31,0.25); }
.pub-status-pay-pagada     { background: rgba(0,200,100,0.12);   color: #00c864;  border: 1px solid rgba(0,200,100,0.25); }

/* FORM SECTIONS (new composition) */
.pub-form-page { max-width: 860px; }
.pub-form-section { background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.pub-form-section__header { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.pub-form-section__num { width: 36px; height: 36px; background: var(--red); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.pub-form-section__header h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.pub-form-section__header p { font-size: 0.8rem; color: var(--muted); }
.pub-form-section__header small { font-weight: 400; color: var(--muted); }
.pub-form-body { padding: 24px; }

/* RADIO GROUP */
.pub-radio-group { margin: 4px 0; }
.pub-radio-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
.pub-radio-options { display: flex; gap: 12px; }
.pub-radio-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 10px 18px; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.pub-radio-item:has(input:checked) { border-color: rgba(232,24,31,0.5); background: rgba(232,24,31,0.08); color: var(--white); }
.pub-radio-item input { accent-color: var(--red); width: 16px; height: 16px; }

/* PROGRESS BAR (compositions detail) */
.pub-progress-wrap { margin-bottom: 28px; }
.pub-progress-steps { display: flex; gap: 0; margin-bottom: 12px; position: relative; }
.pub-prog-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--muted); text-align: center; position: relative; }
.pub-prog-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; z-index: 1; }
.pub-prog-step.done .pub-prog-dot { background: var(--red); border-color: var(--red); color: #fff; }
.pub-prog-step.current .pub-prog-dot { background: #ffc800; border-color: #ffc800; color: #000; }
.pub-progress-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.pub-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), #ff6b6b); border-radius: 4px; transition: width 0.5s ease; }

/* DETAIL GRID */
.pub-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pub-detail-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 16px; }
.pub-detail-item label { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pub-detail-item span { font-size: 0.88rem; font-weight: 600; }
.pub-detail-item span a { color: var(--red); }
.pub-detail-item--full { grid-column: 1 / -1; }
.pub-detail-item--note { border-color: rgba(232,24,31,0.2); background: rgba(232,24,31,0.04); }

/* ROYALTIES */
.pub-royalties-summary { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, #1a0808, #111); border: 1px solid rgba(232,24,31,0.2); border-radius: 16px; padding: 28px 32px; margin-bottom: 24px; }
.pub-royalty-total { display: flex; flex-direction: column; }
.pub-royalty-total__label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.pub-royalty-total__amount { font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.pub-royalty-total__currency { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* PROFILE */
.pub-profile-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pub-profile-avatar { font-size: 5rem; color: rgba(232,24,31,0.3); }

/* TABLE */
.pub-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.pub-table th { padding: 12px 20px; text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.06); }
.pub-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.75); }
.pub-table tr:last-child td { border-bottom: none; }
.pub-table tr:hover td { background: rgba(255,255,255,0.02); }
.pub-amount { font-weight: 700; color: var(--white) !important; }
.pub-inline-select { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 0.78rem; padding: 5px 8px; font-family: var(--font); }

/* SEARCH */
.pub-search-wrap { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 0 12px; }
.pub-search-wrap i { color: var(--muted); font-size: 0.8rem; }
.pub-search-wrap input { background: none; border: none; outline: none; color: #fff; font-family: var(--font); font-size: 0.85rem; padding: 8px 0; width: 220px; }

/* MODAL */
.pub-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.pub-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); }
.pub-modal__box { position: relative; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.pub-modal__box--lg { max-width: 720px; }
.pub-modal__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); position: sticky; top: 0; background: #111; z-index: 1; }
.pub-modal__header h3 { font-size: 1rem; font-weight: 700; }
.pub-modal__header button { background: none; border: none; color: var(--muted); font-size: 1rem; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s; }
.pub-modal__header button:hover { background: rgba(255,255,255,0.08); color: #fff; }
.pub-modal__body { padding: 24px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pub-hero__content { grid-template-columns: 1fr; text-align: center; }
  .pub-features__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pub-auth-container { grid-template-columns: 1fr; }
  .pub-auth-left { display: none; }
  .pub-sidebar { transform: translateX(-100%); }
  .pub-sidebar--open { transform: translateX(0); }
  .pub-main { margin-left: 0; }
  .pub-menu-toggle { display: flex !important; }
  .pub-stats-grid { grid-template-columns: 1fr 1fr; }
  .pub-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pub-stats-grid { grid-template-columns: 1fr; }
  .pub-content { padding: 20px 16px; }
  .pub-form-row { grid-template-columns: 1fr; }
  .pub-royalties-summary { flex-direction: column; gap: 16px; text-align: center; }
  .pub-table { font-size: 0.75rem; }
  .pub-table th, .pub-table td { padding: 10px 12px; }
}

/* ── CURSOR FIX para páginas Publishing ── */
.pub-auth-page,
.pub-auth-page *,
.pub-app,
.pub-app *,
.pub-landing,
.pub-landing * {
  cursor: none !important;
}

.cursor__dot,
.cursor__ring {
  cursor: none !important;
  pointer-events: none !important;
}
