/* studio-poster.css */

.studio-poster {
  min-height: calc(100svh - var(--zoth-header-h, 54px));
  display: grid;
  grid-template-columns: minmax(18rem, 38rem) minmax(0, 1fr);
  align-items: stretch;
  background: var(--bg);
}

.studio-poster-copy {
  padding: 4rem clamp(16px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.studio-poster-atmosphere {
  position: relative;
  overflow: hidden;
  background: #000;
}

.studio-poster-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-poster-kicker {
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, var(--gold, #e8c872));
  margin-bottom: 1rem;
}

.studio-poster h1 {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary, #fff);
  margin-bottom: 1.5rem;
}

.studio-poster-lede {
  font-size: 1.125rem;
  color: var(--mute, #94a3b8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.studio-poster-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none;
  font-family: var(--font-mono, monospace); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.04em; border-radius: 999px; padding: 10px 20px;
  min-height: 44px; box-sizing: border-box;
  transition: all 0.2s ease; cursor: pointer;
}
.btn-gold { background: var(--gold, #e8c872); color: #050508; font-weight: 700; border: 1px solid var(--gold, #e8c872); }
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.1); }
.btn-outline {
  border: 1px solid var(--line, rgba(255,255,255,0.2)); background: transparent; color: var(--text-primary, #fff);
}
.btn-outline:hover {
  border-color: var(--gold, #e8c872); color: var(--gold, #e8c872);
}

.studio-poster-azoth {
  display: none;
}

/* Later stages (Grid) */
.studio-filter-section {
  position: sticky;
  top: var(--zoth-header-h, 54px);
  z-index: 35;
  background: var(--surface, rgba(5, 5, 8, 0.94));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line, rgba(255,255,255,0.1));
  padding: 13px clamp(16px, 4vw, 48px);
}
.studio-filter-wrap {
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 13px;
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line, rgba(255,255,255,0.1));
  color: var(--mute, #94a3b8);
  padding: 10px 16px; border-radius: 9999px;
  font-family: var(--font-mono, monospace); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
}
.filter-chip:hover, .filter-chip.active {
  background: rgba(232, 200, 114, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}
|.search-box-wrap { position: relative; min-width: 0; flex: 0 1 280px; }
|.search-box-wrap input { width: 100%; box-sizing: border-box; }
.search-box-wrap input {
  width: 100%; background: rgba(12, 16, 28, 0.9);
  border: 1px solid var(--line, rgba(255,255,255,0.1)); border-radius: 9999px;
  padding: 10px 16px 10px 38px; min-height: 44px;
  color: var(--text-primary, #fff); font-family: var(--font-mono, monospace); font-size: 0.85rem; outline: none;
}
.search-box-wrap input:focus { border-color: var(--cyan, #00f0ff); box-shadow: 0 0 14px rgba(0, 240, 255, 0.25); }
.search-box-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; fill: var(--mute, #94a3b8); pointer-events: none; }

.studio-main { max-width: 1440px; margin: 0 auto; padding: 34px clamp(16px, 4vw, 48px) 89px; }
.section-heading { margin-bottom: 55px; display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.section-heading h2 { font-family: var(--font-display, sans-serif); font-size: 21px; font-weight: 700; color: var(--text-primary, #fff); }
.section-heading span { font-family: var(--font-mono, monospace); font-size: 13px; color: var(--mute, #94a3b8); }

.workstations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 13px; margin-bottom: 55px; }
.ws-card {
  background: var(--surface, rgba(10,14,26,0.85)); border: 1px solid var(--line, rgba(255,255,255,0.1)); border-radius: 13px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.22s, border-color 0.22s; text-decoration: none; color: inherit;
}
.ws-card:hover { transform: translateY(-2px); border-color: var(--gold, #e8c872); }
.ws-thumb { width: 100%; height: 160px; position: relative; overflow: hidden; background: #080c16; }
.ws-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ws-card:hover .ws-thumb img { transform: scale(1.05); }
.ws-badge-cat { position: absolute; top: 13px; left: 13px; z-index: 2; background: rgba(5,5,8,0.85); backdrop-filter: blur(8px); border: 1px solid var(--line, rgba(255,255,255,0.1)); border-radius: 5px; padding: 3px 8px; font-family: var(--font-mono, monospace); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--gold, #e8c872); }

.ws-body { padding: 21px; display: flex; flex-direction: column; flex: 1; gap: 13px; }
.ws-title { font-family: var(--font-display, sans-serif); font-size: 21px; font-weight: 700; color: var(--text-primary, #fff); margin-bottom: 8px; }
.ws-desc { font-size: 13px; color: var(--mute, #94a3b8); line-height: 1.6; flex: 1; }
.ws-footer { border-top: 1px solid var(--line, rgba(255,255,255,0.1)); padding-top: 13px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono, monospace); font-size: 13px; font-weight: 600; min-height: 44px; }
.ws-link-launch { color: var(--gold, #e8c872); }
.ws-link-docs { color: #cbd5e1; }

.quick-jump-bar {
  background: var(--surface, rgba(10,14,26,0.95));
  border: 1px solid var(--line, rgba(255,255,255,0.1));
  border-radius: 14px;
  padding: 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick-jump-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-jump-title {
  font-family: var(--font-display, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary, #fff);
  letter-spacing: -0.01em;
}
.quick-jump-sub {
  font-size: 0.82rem;
  color: var(--mute, #94a3b8);
  font-family: var(--font-theme-mono, monospace);
}
.quick-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-jump-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  color: var(--text, #f7f4ee);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-jump-pill .qj-icon {
  font-size: 0.95rem;
}
.quick-jump-pill:hover {
  background: rgba(232, 200, 114, 0.1);
  border-color: var(--gold, #e8c872);
  color: var(--gold, #e8c872);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

@media (max-width: 880px) {
  .studio-poster {
    grid-template-columns: 1fr;
  }
  .studio-poster-atmosphere {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: 1;
  }
  .studio-poster-copy {
    padding: 6rem clamp(16px, 4vw, 48px) 4rem;
  }
}

/* Light Theme Overrides */
html[data-theme="light"] .studio-poster-copy { background: transparent; }
html[data-theme="light"] .studio-poster { background: var(--bg); }
html[data-theme="light"] .ws-card { background: #ffffff; border-color: #e2e8f0; }
html[data-theme="light"] .ws-card:hover { border-color: var(--gold, #d97706); }
html[data-theme="light"] .studio-filter-section { background: rgba(247, 249, 252, 0.94); border-bottom-color: #e2e8f0; }
html[data-theme="light"] .search-box-wrap input { background: #ffffff; border-color: #cbd5e1; color: #111827; }
html[data-theme="light"] .filter-chip { background: #ffffff; border-color: #cbd5e1; color: #475569; }
html[data-theme="light"] .filter-chip:hover, html[data-theme="light"] .filter-chip.active { background: rgba(232, 200, 114, 0.12); color: #b45309; border-color: var(--gold, #d97706); }
html[data-theme="light"] .quick-jump-bar { background: #ffffff; border-color: #e2e8f0; }
html[data-theme="light"] .ws-footer { border-top-color: #e2e8f0; }
html[data-theme="light"] .ws-title { color: #111827; }
html[data-theme="light"] .ws-desc { color: #475569; }
html[data-theme="light"] .ws-link-docs { color: #64748b; }
html[data-theme="light"] .quick-jump-pill { background: #f8fafc; border-color: #cbd5e1; color: #334155; }
html[data-theme="light"] .btn-ghost, html[data-theme="light"] .btn-outline { color: #111827; border-color: #cbd5e1; }
html[data-theme="light"] .btn-ghost:hover, html[data-theme="light"] .btn-outline:hover { color: #b45309; border-color: #d97706; }
html[data-theme="light"] .section-heading h2 { color: #111827; }
html[data-theme="light"] .quick-jump-title { color: #111827; }

/* Matrix Theme Overrides */
html[data-theme="matrix"] .ws-card { border-color: #166534; }
html[data-theme="matrix"] .ws-card:hover { border-color: #22c55e; box-shadow: 0 0 15px rgba(34, 197, 94, 0.2); }
html[data-theme="matrix"] .filter-chip:hover, html[data-theme="matrix"] .filter-chip.active { color: #22c55e; border-color: #22c55e; background: rgba(34, 197, 94, 0.1); }
html[data-theme="matrix"] .btn-gold { background: #22c55e; color: #000; border-color: #22c55e; }
html[data-theme="matrix"] .studio-poster-kicker { color: #22c55e; }

/* Gold Theme Overrides */
html[data-theme="gold"] .ws-card { border-color: #b45309; }
html[data-theme="gold"] .ws-card:hover { border-color: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); }
html[data-theme="light"] .studio-poster-atmosphere { opacity: 0.15; }
