

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 6px 14px;
  background: rgb(from var(--gold) r g b / 0.08);
  border: 1px solid rgb(from var(--gold) r g b / 0.2);
  border-radius: 50px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: eyebrowPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

.hero .hero-h1 {
  font-family: 'Syne', 'Inter', 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  color: var(--text-primary);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-h1-accent {
  background: linear-gradient(110deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentShimmer 3.5s linear infinite;
}

@keyframes accentShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot { animation: none; }
  .hero-h1-accent { animation: none; }
}

.hero-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}

@media (hover: hover) {
  .hero-pill:hover { border-color: rgb(from var(--gold) r g b / 0.3); color: var(--text-primary); }
}

.hero-pill-val {
  color: var(--gold);
  font-weight: 700;
  margin-right: 2px;
}

.hero-pill-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.studio-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.studio-hd {
  text-align: center;
  margin-bottom: 36px;
}

.studio-title {
  font-family: 'Syne', 'Space Grotesk', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 6px 0 0;
}

.studio-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.studio-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.studio-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wf-step + .wf-step { margin-top: 2px; }

.wf-step-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 4px 10px;
}

.wf-num {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 18px;
}

.wf-dot {
  font-size: 13px;
  color: rgb(from var(--gold) r g b / 0.35);
  line-height: 1;
}

.wf-lbl {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wf-card {
  margin-bottom: 6px;
}

.fps-option.engine-card {
  text-align: left;
  padding: 14px 16px 14px;
}

.ec-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ec-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: background .2s ease, border-color .2s ease;
}

.ec-icon-gold {
  background: rgb(from var(--gold) r g b / 0.1);
  border-color: rgb(from var(--gold) r g b / 0.22);
  color: var(--gold);
}

.ec-icon-purple {
  background: rgba(123,97,255,0.1);
  border-color: rgba(123,97,255,0.22);
}

.ec-icon-green {
  background: rgba(0,230,118,0.1);
  border-color: rgba(0,230,118,0.22);
}

.fps-option.engine-card.active .ec-icon {
  background: rgb(from var(--gold) r g b / 0.16);
  border-color: rgb(from var(--gold) r g b / 0.38);
  color: var(--gold);
}

.ec-info {
  flex: 1;
  min-width: 0;
}

.ec-name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ec-tier {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 50px;
  flex-shrink: 0;
  white-space: nowrap;
}

.ec-free {
  background: rgba(0,230,118,0.1);
  color: var(--green);
  border: 1px solid rgba(0,230,118,0.25);
}

.ec-pro {
  background: rgb(from var(--gold) r g b / 0.1);
  color: var(--gold);
  border: 1px solid rgb(from var(--gold) r g b / 0.25);
}

.ec-tid-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.ec-tid-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: rgb(from var(--gold) r g b / 0.1);
  border: 1px solid rgb(from var(--gold) r g b / 0.22);
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.ec-limit-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 2px 8px;
  border-radius: 50px;
}

.render-wf-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.render-status-row {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.render-status-item { flex: 1; padding: 12px 16px; min-width: 0; }

.render-status-div {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.render-status-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.render-status-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.render-file-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.render-status-val.has-file { color: var(--gold); }

.tid-modal { text-align: left; padding: 28px; max-width: 400px; }

.tid-modal-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgb(from var(--gold) r g b / 0.08);
  border: 1px solid rgb(from var(--gold) r g b / 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tid-modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.tid-modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}

.tid-modal-limits {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.tid-limit-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}

.tid-limit-tier {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  border-radius: 50px;
}

.tid-limit-tier.free {
  background: rgba(0,230,118,0.1);
  color: var(--green);
  border: 1px solid rgba(0,230,118,0.25);
}

.tid-limit-tier.pro {
  background: rgb(from var(--gold) r g b / 0.1);
  color: var(--gold);
  border: 1px solid rgb(from var(--gold) r g b / 0.25);
}

.tid-limit-val {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

.tid-modal-actions {
  display: flex;
  gap: 8px;
}

[data-theme="colorful"] .hero-h1-accent {
  background: linear-gradient(100deg, #FF2D87 0%, #7B61FF 48%, #FF6D3B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="colorful"] .studio-main > .wf-step:nth-child(1) .wf-lbl { color: rgba(255,109,59,0.6); }
[data-theme="colorful"] .studio-main > .wf-step:nth-child(2) .wf-lbl { color: rgba(255,45,135,0.6); }
[data-theme="colorful"] .studio-main > .wf-step:nth-child(3) .wf-lbl { color: rgba(0,230,118,0.6); }

@media (max-width: 900px) {
  .studio-section { padding: 28px 20px; }
  .studio-layout { grid-template-columns: 1fr; }
  .studio-title { font-size: 26px; }
  .hero .hero-h1 { font-size: 36px; letter-spacing: -1.2px; }
  .wf-step-hd { padding: 14px 4px 8px; }
}

@media (max-width: 600px) {
  .studio-section { padding: 20px 14px; }
  .hero .hero-h1 { font-size: 28px; letter-spacing: -0.8px; }
  .hero-pills { gap: 5px; }
  .hero-pill { font-size: 11px; padding: 4px 10px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; }
  .studio-title { font-size: 22px; }
  .render-status-row { flex-direction: column; }
  .render-status-div { width: auto; height: 1px; }
  .tid-modal { padding: 22px 18px; }
  .ec-header { gap: 8px; }
}

@media (max-width: 420px) {
  .studio-section { padding: 16px 12px; }
  .hero .hero-h1 { font-size: 24px; letter-spacing: -0.5px; }
  .hero-eyebrow { display: none; }
  .engine-grid { gap: 6px; }
  .ec-icon { width: 28px; height: 28px; border-radius: 6px; }
  .ec-name { font-size: 12px; }
}
