* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.14), transparent 22%),
    linear-gradient(180deg, #07070a 0%, #0d0d12 55%, #09090d 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.app-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.ambient {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.ambient-a { top: 80px; right: -60px; width: 280px; height: 280px; background: rgba(139, 92, 246, 0.18); }
.ambient-b { top: 320px; left: -70px; width: 240px; height: 240px; background: rgba(94, 234, 212, 0.10); }
.topbar, .main-frame { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.02em; }
.brand-mark {
  width: 14px; height: 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.7);
}
.topnav { display: inline-flex; gap: 8px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,0.03); }
.topnav-link { padding: 10px 14px; border-radius: 999px; color: var(--text-soft); }
.topnav-link.is-active, .topnav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.topbar-actions { display: inline-flex; align-items: center; gap: 12px; }
.status-pill, .hero-badge, .chip, .mini-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft); font-size: 0.92rem;
}
.status-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 12px rgba(52,211,153,.8); }
.ghost-button, .tab-button, .secondary-button, .primary-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.primary-button {
  background: linear-gradient(135deg, #9b6bff 0%, #7c4dff 55%, #6943ff 100%);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(92, 59, 255, 0.32);
}
.secondary-button:hover, .ghost-button:hover, .tab-button:hover { background: rgba(255,255,255,0.06); }
.main-frame { padding: var(--space-7) 0 var(--space-8); }
.hero-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5);
  margin: 0 0 var(--space-6);
}
.eyebrow { margin: 0 0 12px; color: var(--brand-2); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem; font-weight: 700; }
h1 { margin: 0; font-size: clamp(2.4rem, 4vw, 4.6rem); line-height: 0.96; letter-spacing: -0.05em; }
.hero-copy { max-width: 760px; margin: 16px 0 0; color: var(--text-soft); font-size: 1.06rem; line-height: 1.7; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.grid {
  display: grid; gap: var(--space-5);
}
.grid-two { grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr); align-items: start; }
.panel {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,20,29,0.96) 0%, rgba(13,13,20,0.96) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 32%);
  pointer-events: none;
}
.panel-inner { padding: 28px; }
.section-stack { display: grid; gap: 18px; }
.section-label { margin: 0 0 8px; color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; }
.section-title { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -0.03em; }
.muted { color: var(--text-soft); }
.voice-row, .summary-list, .stats-row, .card-grid { display: grid; gap: 16px; }
.voice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.surface {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.surface.is-strong { background: rgba(255,255,255,0.05); border-color: var(--border-strong); }
.surface-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.surface-title { margin: 0; font-size: 1rem; }
.inline-actions, .chip-row, .tab-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { color: var(--text); background: rgba(139,92,246,0.14); border-color: rgba(139,92,246,0.28); }
.chip.is-soft { background: rgba(255,255,255,0.04); border-color: var(--border); }
.upload-box {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
}
.tab-button.is-active { background: rgba(139,92,246,0.16); border-color: rgba(139,92,246,0.26); }
.range-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.range-value { min-width: 56px; text-align: center; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.slider { width: 100%; accent-color: var(--brand); }
.summary-card { position: sticky; top: 110px; }
.summary-list { margin-top: 20px; }
.summary-item { display: flex; justify-content: space-between; gap: 12px; color: var(--text-soft); }
.summary-item strong { color: var(--text); }
.list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.list li { display: flex; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.mini-title { margin: 0 0 6px; font-size: 0.96rem; }
.kicker { color: var(--text-muted); font-size: 0.88rem; }
.link-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.toggle-button { width: 48px; height: 30px; border-radius: 999px; background: rgba(139,92,246,0.3); position: relative; border: 1px solid rgba(139,92,246,0.35); }
.toggle-button::after { content: ''; position: absolute; top: 3px; left: 21px; width: 22px; height: 22px; border-radius: 999px; background: white; }
.collapsible { margin-top: 14px; display: grid; gap: 12px; }
.footer-note { margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 1080px) {
  .grid-two, .voice-row, .card-grid { grid-template-columns: 1fr; }
  .hero-row, .topbar { flex-direction: column; align-items: stretch; }
  .topbar-actions, .topnav { justify-content: space-between; }
  .summary-card { position: static; }
}
@media (max-width: 720px) {
  .topbar, .main-frame { width: min(calc(100% - 24px), var(--max-width)); }
  .panel-inner { padding: 22px; }
  h1 { font-size: 2.4rem; }
}

body.route-run {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(10, 99, 106, 0.18), transparent 24%),
    radial-gradient(circle at 40% 0%, rgba(16, 215, 228, 0.05), transparent 32%),
    linear-gradient(180deg, #040506 0%, #030405 38%, #020303 100%);
  color: #f6f8fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.route-run,
.route-run * {
  box-sizing: border-box;
}

.route-run a,
.route-run button,
.route-run input {
  font: inherit;
}

.route-run [hidden] {
  display: none !important;
}

.route-run a {
  color: inherit;
  text-decoration: none;
}

.route-run button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.route-run svg {
  display: block;
}

.route-run .run-app-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(16, 215, 228, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.98) 0%, rgba(2, 3, 4, 0.98) 100%);
}

.route-run .run-app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 102, 109, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 18%);
}

.route-run .run-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 348px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.98) 0%, rgba(2, 3, 4, 0.96) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 24px 0 64px rgba(0, 0, 0, 0.24);
}

.route-run .run-sidebar-brand {
  padding: 22px 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.route-run .run-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-run .run-brand-mark,
.route-run .run-account-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #11d9e7;
  background: linear-gradient(180deg, rgba(17, 217, 231, 0.14) 0%, rgba(4, 54, 58, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.16);
}

.route-run .run-brand-link strong,
.route-run .run-account-card strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.route-run .run-brand-link span span,
.route-run .run-account-card span span {
  display: block;
  margin-top: 4px;
  color: #9b9fad;
  font-size: 0.86rem;
}

.route-run .run-sidebar-nav,
.route-run .run-sidebar-bottom {
  padding: 22px 16px;
}

.route-run .run-sidebar-nav {
  flex: 1 1 auto;
  overflow-y: auto;
}

.route-run .run-nav-group + .run-nav-group {
  margin-top: 10px;
}

.route-run .run-nav-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: #8f938f;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-run .run-nav-chevron {
  width: 18px;
  height: 18px;
  color: #848896;
}

.route-run .run-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #b7bac6;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.route-run .run-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f5f7fb;
  transform: translateX(2px);
}

.route-run .run-nav-link.is-active {
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.98) 0%, rgba(10, 12, 15, 0.98) 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-nav-link.is-active .run-nav-icon {
  color: #10d7e4;
}

.route-run .run-nav-link.is-highlight {
  background: linear-gradient(180deg, rgba(3, 50, 54, 0.88) 0%, rgba(2, 35, 38, 0.9) 100%);
  color: #10d7e4;
}

.route-run .run-nav-icon,
.route-run .run-button-icon,
.route-run .run-inline-icon,
.route-run .run-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.route-run .run-plan-pill,
.route-run .run-mini-badge,
.route-run .run-soon-pill,
.route-run .run-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  border-radius: 999px;
}

.route-run .run-plan-pill {
  margin-left: auto;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10d7e4;
  background: rgba(16, 215, 228, 0.14);
}

.route-run .run-sidebar-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-run .run-account-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 13, 17, 0.78) 0%, rgba(7, 8, 11, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-account-avatar {
  border-radius: 999px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  color: #7e838f;
  box-shadow: none;
}

.route-run .run-main {
  margin-left: 348px;
  min-height: 100vh;
}

.route-run .run-main-inner {
  width: min(100%, 1700px);
  margin: 0;
  padding: 64px 88px 120px 52px;
}

.route-run .run-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.route-run .run-hero-stack {
  display: grid;
  gap: 28px;
}

.route-run .run-hero-card {
  padding: 40px;
}

.route-run .run-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 36px;
}

.route-run .run-page-copy {
  max-width: 760px;
}

.route-run .run-page-eyebrow,
.route-run .run-ready-kicker,
.route-run .run-hero-proof-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8fdde4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.route-run .run-page-header h1,
.route-run .run-section-head h2,
.route-run .run-recent-head h2,
.route-run .run-ready-card h2 {
  margin: 0;
  font-size: clamp(3.7rem, 4.8vw, 6rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.route-run .run-page-header h1 {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.route-run .run-page-header h1 span:last-child {
  color: rgba(246, 248, 251, 0.72);
}

.route-run .run-page-header p,
.route-run .run-section-head p,
.route-run .run-recent-head p,
.route-run .run-ready-card p,
.route-run .run-modal-head p {
  margin: 18px 0 0;
  color: #a8afbc;
  font-size: 1.05rem;
  line-height: 1.72;
}

.route-run .run-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.route-run .run-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-run .run-hero-proof-card {
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 18, 22, 0.92) 0%, rgba(10, 11, 14, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.route-run .run-hero-proof-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.route-run .run-hero-proof-card p {
  margin: 10px 0 0;
  color: #8f98a6;
  font-size: 0.94rem;
  line-height: 1.65;
}

.route-run .run-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.route-run .run-action-button,
.route-run .run-link-button,
.route-run .run-primary-button,
.route-run .run-secondary-button,
.route-run .run-icon-button,
.route-run .run-add-variant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.route-run .run-action-button,
.route-run .run-secondary-button,
.route-run .run-add-variant {
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.94) 0%, rgba(10, 12, 16, 0.98) 100%);
}

.route-run .run-link-button {
  min-height: 56px;
  padding-inline: 18px;
  border-radius: 18px;
  color: #f3f5f8;
  background: rgba(11, 13, 16, 0.72);
}

.route-run .run-primary-button {
  min-height: 60px;
  padding-inline: 30px;
  background: linear-gradient(135deg, #6cf4ff 0%, #26d6e5 38%, #11c3d1 100%);
  color: #021114;
  font-weight: 700;
  border-color: rgba(16, 215, 228, 0.45);
  box-shadow:
    0 18px 40px rgba(13, 149, 160, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.route-run .run-primary-button:hover,
.route-run .run-action-button:hover,
.route-run .run-secondary-button:hover,
.route-run .run-add-variant:hover,
.route-run .run-icon-button:hover {
  border-color: rgba(16, 215, 228, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.route-run .run-card,
.route-run .run-job-card,
.route-run .run-modal-dialog {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(16, 215, 228, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(14, 15, 19, 0.98) 0%, rgba(7, 8, 10, 0.99) 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-card::before,
.route-run .run-job-card::before,
.route-run .run-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 28%, transparent 78%, rgba(16, 215, 228, 0.03) 100%);
  pointer-events: none;
}

.route-run .run-card::after,
.route-run .run-job-card::after,
.route-run .run-modal-dialog::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 215, 228, 0.08) 0%, rgba(16, 215, 228, 0) 72%);
  pointer-events: none;
}

.route-run .run-card > *,
.route-run .run-job-card > *,
.route-run .run-modal-dialog > * {
  position: relative;
  z-index: 1;
}

.route-run .run-card {
  padding: 38px;
}

.route-run .run-card + .run-card,
.route-run .run-card + .run-recent {
  margin-top: 38px;
}

.route-run .run-hero-grid + .run-card,
.route-run .run-hero-grid + .run-recent {
  margin-top: 42px;
}

.route-run .run-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.route-run .run-step {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.route-run .run-step-marker {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #656b79;
  background: linear-gradient(180deg, rgba(20, 22, 28, 0.98) 0%, rgba(12, 14, 18, 0.98) 100%);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-step.is-current .run-step-marker {
  border-color: #10d7e4;
  color: #10d7e4;
  background: rgba(16, 215, 228, 0.08);
}

.route-run .run-step.is-complete .run-step-marker {
  border-color: #10d7e4;
  color: #061214;
  background: #10d7e4;
}

.route-run .run-step-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.route-run .run-step-copy strong {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.route-run .run-step-copy span:last-child {
  margin-top: 4px;
  color: #959aa7;
  font-size: 0.98rem;
  line-height: 1.35;
}

.route-run .run-step-divider {
  flex: 0 0 96px;
  height: 1px;
  margin: 0 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.route-run .run-step-divider.is-complete {
  background: rgba(16, 215, 228, 0.8);
}

.route-run .run-section-head,
.route-run .run-recent-head,
.route-run .run-selected-voice-top,
.route-run .run-audio-file-top,
.route-run .run-pitch-head,
.route-run .run-tool-card,
.route-run .run-ready-card,
.route-run .run-collapse-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.route-run .run-section-head h2,
.route-run .run-recent-head h2,
.route-run .run-ready-card h2 {
  font-size: clamp(1.55rem, 1.15rem + 0.9vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.route-run .run-chip-grid,
.route-run .run-selected-voices-list,
.route-run .run-tool-list,
.route-run .run-job-list {
  margin-top: 30px;
}

.route-run .run-brand-mark svg,
.route-run .run-account-avatar svg,
.route-run .run-nav-icon svg,
.route-run .run-nav-chevron svg,
.route-run .run-button-icon svg,
.route-run .run-inline-icon svg,
.route-run .run-chevron svg,
.route-run .run-search > span svg,
.route-run .run-empty-icon svg,
.route-run .run-library-icon svg,
.route-run .run-tool-icon svg,
.route-run .run-audio-file-icon svg,
.route-run .run-modal-check svg,
.route-run .run-step-marker svg {
  width: 100%;
  height: 100%;
}

.route-run .run-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-run .run-voice-chip,
.route-run .run-modal-voice-card,
.route-run .run-library-item,
.route-run .run-selected-voice-card,
.route-run .run-audio-file-card,
.route-run .run-tool-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 15, 19, 0.95) 0%, rgba(10, 11, 15, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.route-run .run-voice-chip,
.route-run .run-library-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
}

.route-run .run-voice-chip-avatar,
.route-run .run-library-icon,
.route-run .run-tool-icon,
.route-run .run-audio-file-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(27, 29, 35, 0.96) 0%, rgba(17, 19, 24, 0.98) 100%);
  color: #f5f7fb;
  font-size: 1.25rem;
  font-weight: 700;
}

.route-run .run-tool-icon,
.route-run .run-audio-file-icon {
  color: #9196a1;
}

.route-run .run-tool-icon.is-upgrade,
.route-run .run-audio-file-icon {
  background: rgba(4, 46, 49, 0.78);
  color: #10d7e4;
}

.route-run .run-voice-chip-copy,
.route-run .run-modal-voice-copy,
.route-run .run-library-copy,
.route-run .run-tool-copy,
.route-run .run-upgrade-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.route-run .run-voice-chip-copy strong,
.route-run .run-library-copy strong,
.route-run .run-tool-copy h3,
.route-run .run-upgrade-copy h3,
.route-run .run-selected-voice-title strong,
.route-run .run-job-copy strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.route-run .run-voice-chip-copy span:last-child,
.route-run .run-library-copy span:last-child,
.route-run .run-tool-copy p,
.route-run .run-upgrade-copy p,
.route-run .run-selected-voice-title span span,
.route-run .run-job-meta,
.route-run .run-job-pitch,
.route-run .run-collapse-copy span:last-child,
.route-run .run-disabled-grid span {
  margin-top: 4px;
  color: #9499a5;
  font-size: 0.9rem;
}

.route-run .run-chip-remove {
  margin-left: auto;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #d8dbe3;
  background: rgba(255, 255, 255, 0.03);
}

.route-run .run-empty-state {
  margin-top: 30px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 50px;
  background:
    radial-gradient(circle at top, rgba(16, 215, 228, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.route-run .run-empty-icon {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #6f7481;
  background: linear-gradient(180deg, rgba(28, 30, 36, 0.96) 0%, rgba(16, 18, 22, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-empty-state h3 {
  margin: 26px 0 0;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.route-run .run-empty-state p {
  width: min(100%, 560px);
  margin: 18px 0 0;
  color: #9da5b1;
  font-size: 1rem;
  line-height: 1.7;
}

.route-run .run-badge-pill {
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(4, 46, 49, 0.58);
  color: #90eef5;
  border: 1px solid rgba(16, 215, 228, 0.18);
}

.route-run .run-badge-pill.is-accent {
  padding-inline: 12px;
}

.route-run .run-selected-voices-list {
  display: grid;
  gap: 16px;
}

.route-run .run-selected-voice-card {
  overflow: hidden;
}

.route-run .run-selected-voice-top {
  padding: 20px 22px;
}

.route-run .run-selected-voice-title {
  display: flex;
  gap: 18px;
}

.route-run .run-selected-voice-title > span:last-child {
  display: flex;
  flex-direction: column;
}

.route-run .run-selected-voice-tools,
.route-run .run-pitch-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-run .run-icon-button {
  width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.route-run .run-small-icon-button {
  width: 28px;
  min-height: 28px;
  font-size: 1rem;
}

.route-run .run-selected-voice-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 22px 22px;
}

.route-run .run-pitch-row + .run-pitch-row {
  margin-top: 22px;
}

.route-run .run-pitch-readout {
  min-width: 74px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.route-run .run-slider-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: #8f94a0;
  font-size: 0.9rem;
}

.route-run .run-slider {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10d7e4 0%, #10d7e4 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 100%);
}

.route-run .run-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f9fbfd;
  box-shadow: 0 0 0 3px rgba(16, 215, 228, 0.16);
}

.route-run .run-add-variant {
  width: 100%;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.route-run .run-dropzone {
  margin-top: 30px;
  min-height: 368px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at top, rgba(16, 215, 228, 0.04), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016) 0%, rgba(255, 255, 255, 0.024) 100%);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.route-run .run-dropzone.is-dragging,
.route-run .run-dropzone:hover {
  border-color: rgba(16, 215, 228, 0.4);
  background: rgba(16, 215, 228, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-dropzone strong {
  margin-top: 14px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.route-run .run-dropzone span,
.route-run .run-dropzone small {
  color: #9499a5;
}

.route-run .run-dropzone span {
  font-size: 1.05rem;
}

.route-run .run-dropzone small {
  font-size: 0.96rem;
}

.route-run .run-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.route-run .run-audio-panel {
  margin-top: 28px;
}

.route-run .run-audio-file-card {
  padding: 20px 22px 22px;
}

.route-run .run-audio-file-copy {
  display: flex;
  gap: 18px;
  min-width: 0;
}

.route-run .run-audio-file-copy > span:last-child {
  display: flex;
  flex-direction: column;
}

.route-run .run-file-waveform,
.route-run .run-wave-strip {
  display: flex;
  align-items: end;
  gap: 4px;
  width: 100%;
  overflow: hidden;
}

.route-run .run-file-waveform {
  height: 94px;
  margin-top: 20px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(11, 16, 16, 0.7);
}

.route-run .run-file-waveform span,
.route-run .run-wave-strip span {
  display: block;
  flex: 1 0 0;
  min-width: 3px;
  border-radius: 999px;
  background: rgba(16, 215, 228, 0.65);
}

.route-run .run-audio-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.route-run .run-secondary-button {
  width: 100%;
  justify-content: center;
}

.route-run .run-secondary-button.is-disabled {
  opacity: 0.38;
}

.route-run .run-convert-button.is-disabled {
  opacity: 1;
  color: rgba(2, 17, 20, 0.76);
  border-color: rgba(140, 211, 216, 0.22);
  background: linear-gradient(135deg, rgba(93, 160, 166, 0.92) 0%, rgba(42, 111, 118, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.route-run .run-soon-pill,
.route-run .run-mini-badge {
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.06);
  color: #9aa0ac;
  font-size: 0.72rem;
  font-weight: 700;
}

.route-run .run-mini-badge {
  color: #10d7e4;
  background: rgba(16, 215, 228, 0.12);
}

.route-run .run-tool-list {
  display: grid;
  gap: 16px;
}

.route-run .run-tool-card {
  align-items: center;
  padding: 22px 24px;
}

.route-run .run-tool-title-row,
.route-run .run-collapse-copy .run-tool-title-row,
.route-run .run-job-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.route-run .run-switch {
  position: relative;
  width: 54px;
  height: 32px;
  flex: 0 0 auto;
}

.route-run .run-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.route-run .run-switch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.route-run .run-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f7f9fb;
  transition: transform 160ms ease;
}

.route-run .run-switch input:checked + span {
  background: rgba(16, 215, 228, 0.4);
}

.route-run .run-switch input:checked + span::after {
  transform: translateX(22px);
}

.route-run .run-switch.is-disabled {
  opacity: 0.72;
}

.route-run .run-upgrade-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 26px;
  padding: 30px 26px;
  border-radius: 26px;
  border: 1px solid rgba(16, 215, 228, 0.24);
  background:
    radial-gradient(circle at top right, rgba(129, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 37, 41, 0.94) 0%, rgba(2, 22, 24, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 42px rgba(0, 0, 0, 0.18);
}

.route-run .run-upgrade-copy .run-primary-button {
  margin-top: 22px;
  min-width: 238px;
}

.route-run .run-collapse-card {
  padding: 0;
  overflow: hidden;
}

.route-run .run-collapse-toggle {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
}

.route-run .run-collapse-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.route-run .run-collapse-copy strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.route-run .run-collapse-body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.56;
}

.route-run .run-disabled-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.route-run .run-disabled-grid strong {
  display: block;
  font-size: 0.95rem;
}

.route-run .run-ready-card {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 26px;
  align-items: stretch;
  padding: 34px 32px 32px;
  border-color: rgba(16, 215, 228, 0.26);
  background:
    radial-gradient(circle at top right, rgba(111, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(6, 43, 47, 0.95) 0%, rgba(2, 22, 24, 0.92) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.route-run .run-ready-head {
  display: grid;
  gap: 0;
}

.route-run .run-ready-head h2 {
  margin-top: 14px;
}

.route-run .run-ready-progress {
  display: grid;
  gap: 12px;
}

.route-run .run-ready-progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.route-run .run-ready-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(130, 255, 255, 0.96) 0%, rgba(16, 215, 228, 0.92) 100%);
  box-shadow: 0 0 24px rgba(16, 215, 228, 0.24);
  transition: width 180ms ease;
}

.route-run .run-ready-progress-label,
.route-run .run-ready-footnote {
  color: #b6dde0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.route-run .run-ready-checklist {
  display: grid;
  gap: 14px;
}

.route-run .run-ready-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(3, 14, 16, 0.34);
}

.route-run .run-ready-item > span:last-child {
  display: grid;
  gap: 4px;
}

.route-run .run-ready-item strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.route-run .run-ready-item span span {
  color: #88a7ab;
  font-size: 0.9rem;
  line-height: 1.55;
}

.route-run .run-ready-item-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.32);
}

.route-run .run-ready-item.is-complete {
  border-color: rgba(16, 215, 228, 0.28);
  background: rgba(6, 56, 60, 0.38);
}

.route-run .run-ready-item.is-complete .run-ready-item-icon,
.route-run .run-ready-item.is-static .run-ready-item-icon {
  color: #9df4f9;
}

.route-run .run-convert-button {
  width: 100%;
  min-width: 0;
  min-height: 66px;
  justify-content: center;
  font-size: 1.02rem;
}

.route-run .run-ready-footnote {
  margin: -8px 0 0;
}

.route-run .run-recent {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-run .run-recent-head {
  margin-bottom: 22px;
}

.route-run .run-recent-head > span {
  color: #969ba8;
  font-size: 0.95rem;
}

.route-run .run-job-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.route-run .run-job-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-run .run-job-card:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 215, 228, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.route-run .run-job-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.route-run .run-job-play {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(30, 32, 38, 0.94) 0%, rgba(17, 19, 24, 0.98) 100%);
  color: #7f8591;
}

.route-run .run-job-play svg {
  width: 26px;
  height: 26px;
}

.route-run .run-job-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.route-run .run-job-model {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9dde4;
  font-size: 0.78rem;
}

.route-run .run-job-pitch {
  margin-top: 0;
}

.route-run .run-job-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.route-run .run-job-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a7abb8;
}

.route-run .run-job-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10d7e4;
}

.route-run .run-wave-strip {
  height: 62px;
  margin-top: 22px;
  padding-inline: 10px;
}

.route-run .run-wave-strip span {
  background: rgba(16, 215, 228, 0.45);
}

.route-run .run-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.route-run .run-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 3, 0.76);
  backdrop-filter: blur(6px);
}

.route-run .run-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 980px);
  max-height: calc(100vh - 56px);
  margin: 28px auto;
  padding: 28px;
  overflow: auto;
}

.route-run .run-library-dialog {
  width: min(100% - 32px, 620px);
}

.route-run .run-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.route-run .run-modal-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.route-run .run-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 18px;
  min-height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 17, 22, 0.94) 0%, rgba(10, 12, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.route-run .run-search > span,
.route-run .run-modal-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.route-run .run-search input {
  width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  outline: none;
}

.route-run .run-modal-tabs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.route-run .run-modal-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 17, 22, 0.94) 0%, rgba(10, 12, 16, 0.98) 100%);
  color: #aab0bc;
}

.route-run .run-modal-tabs button.is-active,
.route-run .run-modal-voice-card.is-selected {
  border-color: rgba(16, 215, 228, 0.3);
  background: rgba(16, 215, 228, 0.06);
  color: #f6fbfc;
}

.route-run .run-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.route-run .run-modal-voice-card {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.route-run .run-modal-check {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 20px;
  height: 20px;
  color: #10d7e4;
}

.route-run .run-library-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.run-modal-open {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .route-run .run-hero-grid {
    grid-template-columns: 1fr;
  }

  .route-run .run-ready-card {
    position: static;
  }

  .route-run .run-step-divider {
    flex-basis: 40px;
    margin-inline: 14px;
  }

  .route-run .run-job-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .route-run .run-sidebar {
    position: sticky;
    inset: 0 0 auto 0;
    width: auto;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
  }

  .route-run .run-main {
    margin-left: 0;
  }

  .route-run .run-app-shell {
    display: block;
  }

  .route-run .run-sidebar-brand {
    padding: 0;
    border-bottom: 0;
  }

  .route-run .run-sidebar-nav,
  .route-run .run-sidebar-bottom {
    display: none;
  }

  .route-run .run-main-inner {
    padding: 36px 26px 70px;
  }
}

@media (max-width: 900px) {
  .route-run .run-main-inner {
    padding: 28px 20px 56px;
  }

  .route-run .run-page-header,
  .route-run .run-section-head,
  .route-run .run-recent-head,
  .route-run .run-ready-card,
  .route-run .run-collapse-toggle,
  .route-run .run-tool-card {
    flex-direction: column;
    align-items: stretch;
  }

  .route-run .run-hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .route-run .run-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .route-run .run-step-divider {
    width: 1px;
    height: 20px;
    margin: 0 25px;
  }

  .route-run .run-chip-grid,
  .route-run .run-modal-grid,
  .route-run .run-audio-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .route-run .run-card,
  .route-run .run-modal-dialog,
  .route-run .run-job-card {
    padding: 22px;
    border-radius: 24px;
  }

  .route-run .run-hero-card {
    padding: 24px;
  }

  .route-run .run-sidebar {
    padding: 12px 14px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .route-run .run-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .route-run .run-empty-state,
  .route-run .run-dropzone {
    min-height: 288px;
    padding: 24px;
  }

  .route-run .run-job-top,
  .route-run .run-selected-voice-top {
    align-items: flex-start;
  }

  .route-run .run-job-title-row,
  .route-run .run-job-meta {
    gap: 8px;
  }

  .route-run .run-page-header h1 {
    font-size: 2.85rem;
    line-height: 0.92;
  }

  .route-run .run-section-head h2,
  .route-run .run-recent-head h2,
  .route-run .run-ready-card h2 {
    font-size: 1.7rem;
    line-height: 1.02;
  }

  .route-run .run-page-header p,
  .route-run .run-section-head p,
  .route-run .run-recent-head p,
  .route-run .run-ready-card p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .route-run .run-primary-button,
  .route-run .run-secondary-button,
  .route-run .run-action-button,
  .route-run .run-link-button {
    min-height: 56px;
  }

  .route-run .run-upgrade-copy .run-primary-button {
    width: 100%;
    min-width: 0;
  }

  .route-run .run-ready-card {
    gap: 22px;
    padding: 24px;
  }

  .route-run .run-ready-item {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .route-run .run-hero-chips {
    gap: 10px;
  }

  .route-run .run-hero-chips .run-badge-pill {
    width: 100%;
    justify-content: center;
  }
}
