/* ─── LINESMITH PRO STUDIO ─── */

/* The studio is the new full-tool layout: editor + Pro panel */
.studio {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.studio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.studio-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.studio-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}
.studio-title em {
  font-style: italic;
  color: var(--accent);
}

/* Pro status badge */
.pro-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid;
}
.pro-status.locked {
  background: rgba(184, 137, 58, 0.08);
  border-color: rgba(184, 137, 58, 0.4);
  color: var(--gold);
}
.pro-status.locked:hover {
  background: rgba(184, 137, 58, 0.15);
}
.pro-status.unlocked {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}
.pro-status svg {
  width: 12px;
  height: 12px;
}

/* Studio grid - editor and pro panel */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
}

/* Editor card (in studio) */
.studio-editor {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 600px;
}
.studio-editor-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.studio-editor-tab {
  padding: 14px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
  letter-spacing: -0.005em;
}
.studio-editor-tab:hover { color: var(--ink-soft); }
.studio-editor-tab.active { color: var(--ink); background: var(--paper); }
.studio-editor-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--paper);
}
.studio-editor-tab.active::before {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--accent);
}
.studio-editor-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.studio-editor .editor {
  flex: 1;
  min-height: 220px;
}

/* Pro Panel (right side) */
.pro-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 600px;
  max-height: 600px;
  position: relative;
}

.pro-panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
  padding: 0 4px;
}
.pro-panel-tab {
  padding: 14px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
  letter-spacing: -0.005em;
}
.pro-panel-tab:hover {
  color: var(--ink-soft);
}
.pro-panel-tab.active {
  color: var(--ink);
}
.pro-panel-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--accent);
}

/* Tab content */
.pro-panel-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pro-panel-pane {
  display: none;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}
.pro-panel-pane.active {
  display: flex;
}

/* Locked overlay for free users */
.pro-locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 32px;
}
.pro-locked-card {
  text-align: center;
  max-width: 320px;
}
.pro-locked-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(184, 137, 58, 0.12);
  border: 1.5px solid rgba(184, 137, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pro-locked-icon svg {
  width: 22px;
  height: 22px;
}
.pro-locked-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pro-locked-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.pro-locked-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}
.pro-locked-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.pro-locked-price {
  display: block;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

/* ─── PREVIEW TAB ─── */
.pro-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.pro-preview-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pro-preview-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--bg);
}
.pro-preview-card {
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 8px;
  padding: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 100%;
  transition: max-width 0.25s ease;
}
.pro-preview-card.mobile {
  max-width: 320px;
  margin: 0 auto;
}
.pro-preview-empty {
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
  padding: 40px 20px;
  font-style: italic;
}

/* ─── DRAFTS TAB ─── */
.pro-drafts-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}
.pro-drafts-search {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  transition: border-color 0.15s;
}
.pro-drafts-search:focus {
  outline: none;
  border-color: var(--accent);
}
.pro-drafts-search::placeholder {
  color: var(--muted-2);
}
.pro-icon-btn {
  width: 32px;
  height: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pro-icon-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.pro-icon-btn svg {
  width: 14px;
  height: 14px;
}

.pro-drafts-list {
  flex: 1;
  overflow-y: auto;
}
.pro-draft-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.12s;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pro-draft-item:hover {
  background: var(--bg-tint);
}
.pro-draft-item.active {
  background: var(--accent-bg);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.pro-draft-content {
  flex: 1;
  min-width: 0;
}
.pro-draft-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-draft-preview {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  line-height: 1.4;
}
.pro-draft-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}
.pro-draft-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.pro-draft-item:hover .pro-draft-actions {
  opacity: 1;
}
.pro-draft-action-btn {
  width: 26px;
  height: 26px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.12s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pro-draft-action-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.pro-draft-action-btn.danger:hover {
  border-color: var(--warm);
  color: var(--warm);
}
.pro-draft-action-btn svg {
  width: 13px;
  height: 13px;
}

.pro-empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}
.pro-empty-state h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pro-empty-state p {
  font-size: 13px;
  line-height: 1.55;
}

/* ─── SNIPPETS TAB ─── */
.pro-snippets-list {
  flex: 1;
  overflow-y: auto;
}
.pro-snippet-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pro-snippet-content {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.pro-snippet-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.pro-snippet-preview {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-wrap;
}
.pro-snippet-actions {
  display: flex;
  gap: 4px;
}

/* New snippet form */
.pro-snippet-form {
  padding: 16px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
  display: none;
}
.pro-snippet-form.show {
  display: block;
}
.pro-snippet-form input,
.pro-snippet-form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pro-snippet-form input:focus,
.pro-snippet-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.pro-snippet-form textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}
.pro-snippet-form-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.pro-form-btn {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s;
}
.pro-form-btn:hover {
  border-color: var(--ink);
}
.pro-form-btn.primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.pro-form-btn.primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

/* ─── HOOKS TAB ─── */
.pro-hooks-toolbar {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pro-hooks-segment {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
}
.pro-hooks-segment button {
  border: none;
  background: none;
  padding: 5px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 3px;
  font-weight: 500;
}
.pro-hooks-segment button.active {
  background: var(--accent);
  color: var(--bg);
}

.pro-hooks-categories {
  flex: 1;
  overflow-y: auto;
}
.pro-hooks-category {
  border-bottom: 1px solid var(--line);
}
.pro-hooks-category-header {
  width: 100%;
  background: var(--bg-tint);
  border: none;
  padding: 10px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 600;
  transition: background 0.12s;
}
.pro-hooks-category-header:hover {
  background: var(--bg-warm);
}
.pro-hooks-category-count {
  color: var(--muted-2);
  font-weight: 400;
}
.pro-hooks-category-icon {
  transition: transform 0.2s;
  color: var(--muted);
}
.pro-hooks-category.open .pro-hooks-category-icon {
  transform: rotate(90deg);
}
.pro-hooks-category-list {
  display: none;
}
.pro-hooks-category.open .pro-hooks-category-list {
  display: block;
}
.pro-hook-item {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  transition: background 0.12s;
  white-space: pre-wrap;
  position: relative;
}
.pro-hook-item:hover {
  background: var(--accent-bg);
}
.pro-hook-item::before {
  content: '+';
  position: absolute;
  right: 14px;
  top: 12px;
  color: var(--accent);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.15s;
}
.pro-hook-item:hover::before {
  opacity: 1;
}

/* ─── LICENSE KEY MODAL ─── */
.pro-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.pro-modal.show {
  display: flex;
}
.pro-modal-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pro-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bg-tint);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.12s;
}
.pro-modal-close:hover {
  background: var(--line-strong);
  color: var(--ink);
}
.pro-modal h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.pro-modal h3 em {
  font-style: italic;
  color: var(--accent);
}
.pro-modal p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.pro-modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.pro-modal-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.pro-modal-actions {
  display: flex;
  gap: 8px;
}
.pro-modal-actions button {
  flex: 1;
  padding: 11px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}
.pro-modal-actions .primary {
  background: var(--accent);
  color: var(--bg);
}
.pro-modal-actions .primary:hover {
  background: var(--accent-soft);
}
.pro-modal-actions .secondary {
  background: var(--bg-tint);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.pro-modal-actions .secondary:hover {
  border-color: var(--ink);
}
.pro-modal-error {
  color: var(--warm);
  font-size: 12px;
  margin-bottom: 12px;
  display: none;
}
.pro-modal-error.show {
  display: block;
}
.pro-modal-divider {
  margin: 24px 0 16px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  position: relative;
}
.pro-modal-divider::before,
.pro-modal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: var(--line);
}
.pro-modal-divider::before { left: 0; }
.pro-modal-divider::after { right: 0; }

.pro-modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: 8px;
}
.pro-modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pro-modal-features svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.pro-modal-purchase {
  background: var(--accent-bg);
  border: 1px solid rgba(26, 77, 58, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 4px;
}
.pro-modal-purchase-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pro-modal-purchase-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0;
}
.pro-modal-purchase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.pro-modal-purchase-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.pro-modal-purchase-note {
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .studio {
    padding: 32px 24px 60px;
  }
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pro-panel {
    min-height: 420px;
  }
}

/* ─── LIVE PREVIEW CARD INTERNALS (matches LinkedIn) ─── */
.pp-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.pp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66c2, #378fe9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.pp-name {
  font-weight: 600;
  color: #000000e0;
  font-size: 14px;
  line-height: 1.3;
}
.pp-title {
  color: #00000099;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 1px;
}
.pp-time {
  color: #00000099;
  font-size: 12px;
  margin-top: 1px;
}
.pp-body {
  color: #000000e0;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.pp-more,
.pp-less {
  color: #00000099;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: color 0.15s;
}
.pp-more:hover,
.pp-less:hover {
  color: #0a66c2;
  text-decoration: underline;
}
.pp-less {
  display: inline-block;
  margin-top: 8px;
}
.pp-actions {
  margin-top: 12px;
  padding-top: 4px;
  border-top: 1px solid #e5eaef;
  display: flex;
  justify-content: space-around;
  gap: 4px;
}
.pp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
  flex: 1;
}
.pp-action:hover {
  background: rgba(0, 0, 0, 0.06);
}
.pp-action svg {
  width: 20px;
  height: 20px;
  color: #00000099;
}
.pp-action span {
  font-size: 12px;
  font-weight: 600;
  color: #00000099;
  line-height: 1;
}
.pro-preview-card.mobile .pp-action {
  padding: 6px 2px;
}
.pro-preview-card.mobile .pp-action svg {
  width: 18px;
  height: 18px;
}
.pro-preview-card.mobile .pp-action span {
  font-size: 11px;
}
.pp-globe {
  font-size: 11px;
}

/* Preview toolbar device toggle */
.pro-preview-device {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
}
.pro-preview-device button {
  border: none;
  background: none;
  padding: 5px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 3px;
  font-weight: 500;
}
.pro-preview-device button.active {
  background: var(--accent);
  color: var(--bg);
}


@media (max-width: 600px) {
  .studio-title {
    font-size: 28px;
  }
  .pro-modal-card {
    padding: 24px 20px;
  }
}

/* Pro-only buttons: hidden by default, shown when Pro is active */
.pro-only-btn { display: none; }
body.pro-active .pro-only-btn { display: inline-flex; }
